We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 098bf00 commit b580267Copy full SHA for b580267
.github/workflows/update-flake-lock.yaml
@@ -0,0 +1,24 @@
1
+name: update-flake-lock
2
+on:
3
+ workflow_dispatch: # allows manual triggering
4
+ schedule:
5
+ - cron: '0 0 * * 0' # runs weekly on Sunday at 00:00
6
+
7
+jobs:
8
+ lockfile:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout repository
12
+ uses: actions/checkout@v4
13
+ - name: Install Nix
14
+ uses: cachix/install-nix-action@v17
15
+ with:
16
+ extra_nix_config: |
17
+ access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
18
+ - name: Update flake.lock
19
+ uses: DeterminateSystems/update-flake-lock@main
20
21
+ pr-title: "Update flake.lock" # Title of PR to be created
22
+ pr-labels: | # Labels to be set on the PR
23
+ automated
24
+ path-to-flake-dir: 'example/'
0 commit comments