Skip to content

Update flake inputs #21

Update flake inputs

Update flake inputs #21

Workflow file for this run

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 <noreply@github.com>
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
assignees: imincik
reviewers: imincik
token: ${{ secrets.FLAKE_AUTOUPDATE_TOKEN }}