update-flake-lock #17
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-lock | |
on: | |
workflow_dispatch: # allows manual triggering | |
schedule: | |
- cron: '0 10 * * sat' # every Saturday at 10am | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
lockfile: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@main | |
- name: Update flake.lock | |
id: update | |
uses: DeterminateSystems/update-flake-lock@main | |
with: | |
pr-labels: dependencies | |
pr-assignees: MattSturgeon | |
- name: Print PR number | |
run: echo "Pull request \#${{ steps.update.outputs.pull-request-number }}." |