Bump package indices #3
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: Bump package indices | |
on: | |
workflow_dispatch: # allows manual triggering | |
schedule: | |
- cron: '0 0 * * 0' # runs weekly on Sunday at 00:00 | |
jobs: | |
lockfile: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@v3 | |
with: | |
extra-conf: | | |
accept-flake-config = true | |
- name: Update flake.lock | |
uses: DeterminateSystems/update-flake-lock@v19 | |
with: | |
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }} | |
inputs: hackage-nix CHaP | |
pr-labels: | | |
dependencies | |
automated | |
- name: Print PR number | |
run: echo Opened pull request ${{ steps.update.outputs.pull-request-number }}. |