-
-
Notifications
You must be signed in to change notification settings - Fork 4
28 lines (27 loc) · 891 Bytes
/
update-flake.yml
File metadata and controls
28 lines (27 loc) · 891 Bytes
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
name: Update flake
on:
workflow_dispatch:
# # runs weekly on Sunday at 00:00
# schedule:
# - cron: '0 0 * * 0'
jobs:
lockfile:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v4
- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@v19
with:
pr-title: "Update flake.lock"
# https://github.com/DeterminateSystems/update-flake-lock#with-a-personal-authentication-token
token: ${{ secrets.API_TOKEN_GITHUB }}
pr-labels: |
dependencies
pr-body: |
Automated changes by the [update-flake-lock](https://github.com/DeterminateSystems/update-flake-lock) GitHub Action.
```
{{ env.GIT_COMMIT_MESSAGE }}
```