-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (28 loc) · 1.06 KB
/
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
name: Bump flake.lock
on:
schedule:
- cron: "0 9 * * *"
workflow_dispatch:
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- run: nix flake update
- run: nix flake check --show-trace
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Bump flake.lock
branch: main
commit_options: '--no-verify --signoff'
file_pattern: flake.lock
commit_user_name: Flake Bot # defaults to "GitHub Actions"
#commit_user_email: [email protected] # defaults to "[email protected]"
commit_author: Flake Bot <[email protected]> # defaults to author of the commit that triggered the run
skip_dirty_check: false
skip_fetch: true
- run: git checkout -b auto-update && git reset --hard origin/main && git push origin auto-update -f