submit ForwardToNamespace messages to the job manager of the namespac… #1044
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: "Bump External Submodule" | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
trigger-external-action: | |
runs-on: ubuntu-latest | |
timeout-minutes: 1 | |
steps: | |
- name: Trigger webhook event | |
env: | |
URL: ${{ secrets.EXTERNAL_REPO_BUMP_WEBHOOK }} | |
TOKEN: ${{ secrets.EXTERNAL_REPO_BUMP_WEBHOOK_TOKEN }} | |
run: | | |
curl -X POST -H "Accept: application/vnd.github.v3+json" -H "Authorization: token $TOKEN" $URL -d '{"ref":"develop"}' |