diff options
Diffstat (limited to '.github/workflows/update-flake.yaml')
| -rw-r--r-- | .github/workflows/update-flake.yaml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/update-flake.yaml b/.github/workflows/update-flake.yaml index 8d72f98..075d42b 100644 --- a/.github/workflows/update-flake.yaml +++ b/.github/workflows/update-flake.yaml @@ -8,6 +8,8 @@ on: jobs: update: + name: Run update + runs-on: ubuntu-latest permissions: @@ -15,7 +17,8 @@ jobs: pull-requests: write steps: - - uses: actions/checkout@v4 + - name: Checkout repository + uses: actions/checkout@v4 - name: Install Nix uses: DeterminateSystems/nix-installer-action@v11 @@ -23,3 +26,7 @@ jobs: - name: Update lockfile & make PR uses: DeterminateSystems/update-flake-lock@v21 id: update + with: + commit-msg: "flake: update inputs" + pr-title: "flake: update inputs" + token: ${{ github.token }} |
