Nix Flake Inputs Update #58
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: "Nix Flake Inputs Update" | |
on: | |
repository_dispatch: | |
workflow_dispatch: | |
schedule: | |
- cron: '12 0 * * 1' # runs weekly on Monday at 00:12 | |
permissions: | |
pull-requests: write | |
contents: write | |
jobs: | |
createPullRequest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v23 | |
with: | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Update flake.lock | |
uses: DeterminateSystems/update-flake-lock@main | |
with: | |
pr-labels: | | |
merge-queue |