summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
author_Tradam <[email protected]>2023-05-09 21:20:11 -0400
committerGitHub <[email protected]>2023-05-09 21:20:11 -0400
commit0039b038bcc14d9ff0723ae301952bb96d717dcd (patch)
treed3447967f3187f7984a6e08e86d730373cd5dde3 /.github/workflows
parent0edab992ab6ee804c223e30ae9347b3072a750be (diff)
downloadRodeoKit-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.yml19
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"'" }}'
+