Merge pull request #3545 from ingef/fix/reintegrate-action-shallow-ch… #1024
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"}' |