-
-
Notifications
You must be signed in to change notification settings - Fork 7
36 lines (30 loc) · 924 Bytes
/
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
name: Bump Flake Inputs
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
jobs:
update-lockfile:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
with:
logger: pretty
- name: Nix Magic Cache
uses: DeterminateSystems/magic-nix-cache-action@main
- name: Update Lockfile
uses: DeterminateSystems/update-flake-lock@main
id: update
with:
pr-title: "bump: flake inputs"
commit-msg: "bump: flake inputs"
token: ${{ secrets.GITHUB_TOKEN }}
- name: Merge Changes
run: gh pr merge ${{ steps.update.outputs.pull-request-number }} --squash --delete-branch
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}