Skip to content

Commit b24af34

Browse files
committed
feat(ci): Trigger update flake lock pipeline on downstream repo
1 parent 4d336e5 commit b24af34

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Trigger Downstream Flake Update on Push to Main
2+
3+
on:
4+
push:
5+
branches:
6+
- main # Or the branch you want to track
7+
8+
jobs:
9+
trigger-repo-b:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Trigger Downstream Pipeline
13+
run: |
14+
curl -L \
15+
-X POST \
16+
-H "Accept: application/vnd.github+json" \
17+
-H "Authorization: token ${{ secrets.NIX_GITHUB_TOKEN }}" \
18+
-H "X-GitHub-Api-Version: 2022-11-28" \
19+
https://api.github.com/repos/metacraft-labs/nix-blockchain-development/dispatches \
20+
-d '{"event_type":"flake-update","client_payload":{"unit":false,"integration":true}}'

0 commit comments

Comments
 (0)