This repository has been archived by the owner on Nov 27, 2024. It is now read-only.
Update flake inputs #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update flake inputs | |
on: | |
schedule: | |
- cron: '0 1 * * 0' | |
workflow_dispatch: | |
env: | |
NIX_CONFIG: "access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}" | |
jobs: | |
test: | |
name: Update and create PR | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install Nix | |
uses: cachix/install-nix-action@v22 | |
- name: Run nix flake update | |
run: > | |
nix flake update | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
add-paths: | | |
flake.lock | |
title: "flake: automatic update of nix flake inputs" | |
body: | | |
Update nix flake inputs to the latest revision. | |
PR auto-generated by [create-pull-request][1]. | |
[1]: https://github.com/peter-evans/create-pull-request | |
branch: flake-update-action-pr | |
delete-branch: true | |
commit-message: "flake: update nix flake inputs to the latest revision" | |
committer: GitHub <[email protected]> | |
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | |
assignees: imincik | |
reviewers: imincik | |
token: ${{ secrets.FLAKE_AUTOUPDATE_TOKEN }} |