diff options
| author | seth <[email protected]> | 2024-06-10 18:43:30 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2024-06-10 18:43:30 -0400 |
| commit | 3954d76f2f22197a8023b03cda14941c09234e04 (patch) | |
| tree | 6677399537563c6ef98bce11b1d9ef89ee82a57c | |
| parent | 0e445c82fc78347ac624e97c74cc84f6c7221a33 (diff) | |
ci: cleanup update-flake workflow
| -rw-r--r-- | .github/workflows/update-flake.yaml | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/.github/workflows/update-flake.yaml b/.github/workflows/update-flake.yaml index 5893eb5..e1a7112 100644 --- a/.github/workflows/update-flake.yaml +++ b/.github/workflows/update-flake.yaml @@ -2,11 +2,13 @@ name: Update flake.lock on: schedule: + # run every saturday - cron: "0 0 * * 6" workflow_dispatch: jobs: update: + name: Run update runs-on: ubuntu-latest permissions: @@ -14,13 +16,14 @@ jobs: pull-requests: write steps: - - uses: actions/checkout@v4 + - name: Checkout repository + uses: actions/checkout@v4 - name: Install Nix - uses: nixbuild/nix-quick-install-action@v28 + uses: DeterminateSystems/nix-installer-action@v12 - - name: Update lockfile & make PR + - name: Update flake.lock & make PR uses: DeterminateSystems/update-flake-lock@v22 - id: update with: - token: ${{ github.token }} + commit-msg: "nix: update flake.lock" + pr-title: "nix: update flake.lock" |
