fix: Use custom action for updating flake.lock
This commit is contained in:
parent
ed72f266de
commit
371de9a481
1 changed files with 31 additions and 9 deletions
40
.github/workflows/update.yml
vendored
40
.github/workflows/update.yml
vendored
|
@ -16,15 +16,37 @@ jobs:
|
||||||
uses: https://github.com/DeterminateSystems/magic-nix-cache-action@main
|
uses: https://github.com/DeterminateSystems/magic-nix-cache-action@main
|
||||||
with:
|
with:
|
||||||
fail-mode: true
|
fail-mode: true
|
||||||
|
|
||||||
- name: Update flake.lock
|
- name: Update flake.lock
|
||||||
uses: https://github.com/DeterminateSystems/update-flake-lock@main
|
id: update
|
||||||
|
run: |
|
||||||
|
nix flake update 2>&1 | awk '
|
||||||
|
/^• Updated input/ {in_update = 1; print; next}
|
||||||
|
in_update && !/^warning:/ {print}
|
||||||
|
/^$/ {in_update = 0}
|
||||||
|
' > update.log
|
||||||
|
echo "update_log=$(cat update.log)" >> $GITHUB_OUTPUT
|
||||||
|
rm update.log
|
||||||
|
|
||||||
|
- name: Create Pull Request
|
||||||
|
id: create-pull-request
|
||||||
|
uses: peter-evans/create-pull-request@v7
|
||||||
with:
|
with:
|
||||||
# inputs: dzgui dzgui-testing # We'll see whether I want to limit the updates to dzgui
|
token: ${{ secrets.FORGEJO_TOKEN_FOR_UPDATES }}
|
||||||
token: ${{ secrets.FORGEJO_TOKEN_FOR_UPDATES }}
|
commit-message: Update `flake.lock`
|
||||||
pr-title: "Update flake.lock"
|
title: Update `flake.lock`
|
||||||
pr-assignees: jiriks74
|
body: |
|
||||||
pr-labels: |
|
- The following Nix Flake inputs were updated
|
||||||
flake.lock
|
|
||||||
automated
|
```
|
||||||
|
${{ steps.update.outputs.update_log }}
|
||||||
|
```
|
||||||
|
|
||||||
|
Auto-generated by [update.yml][1] with the help of
|
||||||
|
[create-pull-request][2]
|
||||||
|
|
||||||
|
[1]: https://forgejo.stefka.eu/jiriks74/update-flake-lock
|
||||||
|
[2]: https://github.com/peter-evans/create-pull-request
|
||||||
|
branch: update-flake-lock
|
||||||
- name: Print PR number
|
- name: Print PR number
|
||||||
run: echo Pull request number is ${{ steps.update.outputs.pull-request-number }}.
|
run: echo Pull request number is ${{ steps.create-pull-request.outputs.pull-request-number }}.
|
||||||
|
|
Loading…
Reference in a new issue