File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed
Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change 1+ # https://github.com/dependabot/dependabot-core/issues/7340
2+
3+ name : Update nix-flake lock
4+ on :
5+ workflow_dispatch : # allows manual triggering
6+ schedule :
7+ - cron : " 0 0 * * 0" # runs weekly on Sunday at 00:00
8+
9+ permissions :
10+ contents : write
11+ pull-requests : write
12+
13+ jobs :
14+ lockfile :
15+ runs-on : ubuntu-latest
16+ steps :
17+ - name : Checkout repository
18+ uses : actions/checkout@v4
19+
20+ - name : Install nix
21+ uses : nixbuild/nix-quick-install-action@v30
22+
23+ - name : Update flake.lock
24+ uses : DeterminateSystems/update-flake-lock@v24
25+ with :
26+ token : ${{ secrets.GH_TOKEN_NIX_FLAKE_UPDATE }}
27+ commit-msg : Update flake.lock
28+ branch : update/nix-flake-lock-action
29+ pr-title : Update flake.lock
30+ pr-labels : |
31+ A-nix
32+ C-dependency
33+ pr-body : |
34+ {{ env.GIT_COMMIT_MESSAGE }}
You can’t perform that action at this time.
0 commit comments