forked from PetarKirov/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (34 loc) · 1.1 KB
/
update-flake-lock.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
39
40
41
42
name: Update Nix Flake lockfile
on:
# Enable option to manually run the action:
workflow_dispatch:
# Run every Sunday:
schedule:
- cron: 0 0 * * 0
jobs:
main:
if: github.repository == 'PetarKirov/dotfiles'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v23
with:
nix_path: nixpkgs=channel:nixos-unstable
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Run `nix flake update`
id: update-lockfile
run: ./utils/commit_flake_update.bash
- uses: tibdex/github-app-token@v1.8.2
id: generate-token
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
token: ${{ steps.generate-token.outputs.token }}
title: 'Update Nix Flake lockfile'
branch: 'create-pull-request/update-flake-lockfile'
delete-branch: true
branch-suffix: timestamp
add-paths: flake.lock