-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (34 loc) · 983 Bytes
/
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
---
name: Synchronize upstream inputs
on:
workflow_dispatch:
inputs:
input:
type: string
description: flake input to be synced
options:
- home-estate
- secrets
- dotfiles
required: true
jobs:
sync-upstream:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
with:
ref: master
submodules: true
token: "${{ secrets.ACCESS_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.input }}
- uses: EndBug/add-and-commit@main
with:
add: flake.lock
commit: --signoff
message: "chore(flake): update flake.lock to sync input.${{ inputs.input }}"