-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (39 loc) · 1.21 KB
/
sync-upstream.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
---
name: Synchronize upstream inputs
on:
workflow_dispatch:
inputs:
target:
type: string
description: flake input to be synced
options:
- dotfiles
required: true
jobs:
sync-upstream:
runs-on: ubuntu-latest
steps:
- name: Generate GitHub auth token
# https://github.com/tibdex/github-app-token
id: generate_token
uses: tibdex/[email protected]
with:
app_id: ${{ secrets.GH_APP_ID }}
private_key: ${{ secrets.GH_APP_PRIVATE_KEY }}
- uses: actions/checkout@main
with:
# ref: master
# submodules: true
token: ${{ steps.generate_token.outputs.token }}
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- uses: DeterminateSystems/flake-checker-action@main
- name: update flake upstream input
shell: bash
run: |
nix flake lock --update-input ${{ inputs.target }}
- uses: EndBug/add-and-commit@main
with:
add: flake.lock
commit: --signoff
message: "chore(flake): update flake.lock to sync input.${{ inputs.target }}"