Merge pull request #779 from dlyr/fix-comment-ci #1
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: Notify master update to Radium-Releases | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Repository Dispatch | |
uses: peter-evans/repository-dispatch@v1 | |
with: | |
token: ${{ secrets.REPO_DISPATCH_TOKEN }} | |
repository: STORM-IRIT/Radium-Releases | |
event-type: code-update-event | |
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}' | |