1
0
Fork 0

allow to run CI from flake lock update

This commit is contained in:
ibizaman 2023-12-25 20:02:53 -08:00 committed by Pierre Penninckx
parent 24c9a07dd0
commit b4ba717e33

View file

@ -1,7 +1,6 @@
name: update-flake-lock
on:
workflow_dispatch: # allows manual triggering
pull_request: # triggers on every Pull Request
workflow_dispatch:
schedule:
- cron: '0 * * * 0' # runs daily at 00:00
@ -17,5 +16,6 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
extra-conf: "system-features = nixos-test benchmark big-parallel kvm"
- name: Update flake.lock
if: ${{ github.event_name != 'pull_request' }}
uses: DeterminateSystems/update-flake-lock@main
with:
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}