Update scouting.md #108
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 Main Repo | |
| on: | |
| push: | |
| branches: | |
| - main # Or the branch you're tracking | |
| jobs: | |
| notify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger Main Repo Workflow | |
| run: | | |
| curl -X POST -H "Authorization: token ${{ secrets.PAT_GITHUB }}" \ | |
| -H "Accept: application/vnd.github.v3+json" \ | |
| https://api.github.com/repos/tibrag/website/dispatches \ | |
| -d '{"event_type": "update-gomodules"}' |