update: fix flake lock update
This commit is contained in:
parent
3cc8ebd4a4
commit
c1edcc7f77
1 changed files with 9 additions and 1 deletions
10
.github/workflows/lock-update.yaml
vendored
10
.github/workflows/lock-update.yaml
vendored
|
|
@ -30,4 +30,12 @@ jobs:
|
||||||
- name: Update flake.lock
|
- name: Update flake.lock
|
||||||
env:
|
env:
|
||||||
GH_TOKEN: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
|
GH_TOKEN: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
|
||||||
run: nix run .#update-flake-lock-pr ${{ inputs.bisect_future }}
|
BISECT_FUTURE: ${{ inputs.bisect_future }}
|
||||||
|
run: |
|
||||||
|
git config user.email "update-flake-lock-pr@selfhostblocks.com"
|
||||||
|
git config user.name "Update Flake Lock PR"
|
||||||
|
if [ -n "$BISECT_FUTURE" ]; then
|
||||||
|
BISECT_FUTURE=future
|
||||||
|
fi
|
||||||
|
nix run .#update-flake-lock-pr $BISECT_FUTURE
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue