We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac26aa5 commit fb43f3eCopy full SHA for fb43f3e
.github/workflows/main.yml
@@ -1,15 +1,14 @@
1
name: CI
2
3
-on: [push]
+on:
4
+ push:
5
+ workflow_dispatch:
6
7
jobs:
8
build:
9
10
runs-on: ubuntu-latest
11
12
steps:
- - uses: actions/checkout@v1
13
- name: Trigger publish
- run: scripts/trigger
14
- env:
15
- TOKEN: ${{ secrets.TRIGGER_TOKEN }}
+ run: curl -X POST -H "Authorization:token ${{ secrets.TRIGGER_TOKEN }}" -H "Accept:application/vnd.github.v3+json" --data '{"event_type":"publish"}' https://api.github.com/repos/clojure/clojurescript-org-style/dispatches
0 commit comments