Delete Coil #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Trigger Capstone Sync | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
trigger-dispatch: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger repository_dispatch to capstone repo | |
run: | | |
curl -X POST \ | |
https://api.github.com/repos/epialert/capstone/dispatches \ | |
-H "Authorization: token ${{ secrets.CAPSTONE_TOKEN }}" \ | |
-d '{"event_type": "sync-capstone-repo"}' |