Update README.adoc- Fixed the link to doc #4
This file contains hidden or 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 parent repo | |
| on: | |
| push: | |
| branches: | |
| - main # or whichever branch you want | |
| jobs: | |
| notify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Send dispatch event | |
| run: | | |
| curl -X POST \ | |
| -H "Accept: application/vnd.github+json" \ | |
| -H "Authorization: Bearer ${{ secrets.PARENT_REPO_TOKEN }}" \ | |
| https://api.github.com/repos/cloudera/cloudera-partners/dispatches \ | |
| -d '{"event_type":"update-submodule", "client_payload": {"submodule": "ClouderaSetup"}}' |