-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (34 loc) · 955 Bytes
/
flake_update.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: flake_update
on:
schedule:
- cron: "0 * * * *"
workflow_dispatch:
permissions:
contents: write
pull-requests: write
jobs:
update:
name: update
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v10
- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@v21
with:
pr-title: "Update flake.lock"
pr-labels: |
dependencies
nix-flake
pr-body: |
Automated changes by the [update-flake-lock](https://github.com/DeterminateSystems/update-flake-lock) GitHub Action.
```
{{ env.GIT_COMMIT_MESSAGE }}
```
token: ${{ secrets.GH_PAT }}
sign-commits: true
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
branch: "update"