-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (41 loc) · 1.44 KB
/
flake.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
43
44
45
46
47
name: Nimble Agar Flake Steward
on:
schedule:
- cron: '45 7 * * 2'
workflow_dispatch:
jobs:
lockfile:
strategy:
matrix:
repo:
- armanbilge/fs2-dom
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
repository: ${{ matrix.repo }}
- name: Install Nix
uses: cachix/install-nix-action@v17
with:
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- name: Generate token
id: generate-token
uses: tibdex/github-app-token@v1
with:
app_id: 206853
private_key: ${{ secrets.NIMBLE_AGAR_STEWARD_PRIVATE_KEY }}
- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@36f1c474807d62363305dcec6fd9ea9ed642c114
with:
token: ${{ steps.generate-token.outputs.token }}
branch: update/flake-lock-${{ github.run_number }}
git-author-email: 106723251+nimble-agar-steward[bot]@users.noreply.github.com
git-author-name: nimble-agar-steward[bot]
git-committer-email: 106723251+nimble-agar-steward[bot]@users.noreply.github.com
git-committer-name: nimble-agar-steward[bot]
pr-body: |
Automated changes by the [update-flake-lock](https://github.com/DeterminateSystems/update-flake-lock) GitHub Action.
```
{{ env.GIT_COMMIT_MESSAGE }}
```