From 371de9a481a8cb17c22ffb66142f14b6c1919035 Mon Sep 17 00:00:00 2001 From: jiriks74 Date: Fri, 13 Dec 2024 14:02:34 +0100 Subject: [PATCH] fix: Use custom action for updating `flake.lock` --- .github/workflows/update.yml | 40 ++++++++++++++++++++++++++++-------- 1 file changed, 31 insertions(+), 9 deletions(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index b4796b9..3c83c94 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -16,15 +16,37 @@ jobs: uses: https://github.com/DeterminateSystems/magic-nix-cache-action@main with: fail-mode: true + - 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: - # inputs: dzgui dzgui-testing # We'll see whether I want to limit the updates to dzgui - token: ${{ secrets.FORGEJO_TOKEN_FOR_UPDATES }} - pr-title: "Update flake.lock" - pr-assignees: jiriks74 - pr-labels: | - flake.lock - automated + token: ${{ secrets.FORGEJO_TOKEN_FOR_UPDATES }} + commit-message: Update `flake.lock` + title: Update `flake.lock` + body: | + - The following Nix Flake inputs were updated + + ``` + ${{ 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 - 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 }}.