diff options
| author | _Tradam <[email protected]> | 2023-05-09 21:20:11 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-05-09 21:20:11 -0400 |
| commit | 0039b038bcc14d9ff0723ae301952bb96d717dcd (patch) | |
| tree | d3447967f3187f7984a6e08e86d730373cd5dde3 /.github/workflows | |
| parent | 0edab992ab6ee804c223e30ae9347b3072a750be (diff) | |
| download | RodeoKit-0039b038bcc14d9ff0723ae301952bb96d717dcd.tar.gz RodeoKit-0039b038bcc14d9ff0723ae301952bb96d717dcd.zip | |
Create send_autobuild_webdocs_ping.yml
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/send_autobuild_webdocs_ping.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/send_autobuild_webdocs_ping.yml b/.github/workflows/send_autobuild_webdocs_ping.yml new file mode 100644 index 0000000..d392450 --- /dev/null +++ b/.github/workflows/send_autobuild_webdocs_ping.yml @@ -0,0 +1,19 @@ +name: Remote Dispatch Action Initiator + +on: + push: + +jobs: + ping-pong: + runs-on: ubuntu-latest + steps: + - name: PING - Dispatch initiating repository event + if: github.event.action != 'pong' + run: | + curl -X POST https://api.github.com/repos/marcnuri-demo/actions-remote-dispatch-b/dispatches \ + -H 'Accept: application/vnd.github.everest-preview+json' \ + curl -x post https://api.github.com/repos/catgirlsrodeo/dev.catgirls.rodeo/dispatches \ + -h 'accept: application/vnd.github.everest-preview+json' \ + -u ${{ secrets.access_token }} \ + --data '{"event_type": "trigger_build", "client_payload": { "repository": "'"$github_repository"'" }}' + |
