Skip to content

Commit 191ef04

Browse files
authored
Add integration workflow.
1 parent 4e53a81 commit 191ef04

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/integration.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Integration
2+
3+
on:
4+
push:
5+
branches: [master]
6+
paths-ignore: ['**.md']
7+
8+
halogen:
9+
name: Halogen
10+
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Notify of change
15+
run: |
16+
curl -X POST https://api.github.com/repos/nsaunders/purescript-tecton-halogen/dispatches \
17+
-H 'Accept: application/vnd.github.everest-preview+json' \
18+
-u ${{ secrets.GH_ACCESS_TOKEN }} \
19+
--data '{"event_type": "dependency_changed", "client_payload": { "repository": "'"$GITHUB_REPOSITORY"'" }}'

0 commit comments

Comments
 (0)