-
Notifications
You must be signed in to change notification settings - Fork 11
30 lines (27 loc) · 804 Bytes
/
flake.yml
File metadata and controls
30 lines (27 loc) · 804 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
29
30
---
# inspo: https://github.com/reckenrode/nixos-configs/blob/main/.github/workflows/main.yml
name: Bump flake.lock
on:
schedule:
# 10am UTC is 6am EDT/5am EST
- cron: 0 10 * * *
workflow_dispatch: null
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: cachix/install-nix-action@v31
- run: nix flake update
- uses: stefanzweifel/git-auto-commit-action@v7
with:
commit_message: "chore(deps): bump flake.lock"
commit_user_name: Flake Bot
commit_options: --no-verify --signoff
commit_author: Flake Bot <actions@github.com>
branch: main
file_pattern: flake.lock
skip_dirty_check: false
skip_fetch: true