doce(plutono): add note about data sources in dashboards (#290) #15
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: Trigger Hugo Workflow | |
on: | |
workflow_dispatch: {} | |
push: | |
branches: | |
- main | |
paths: | |
- '**/README.md' | |
jobs: | |
trigger: | |
runs-on: [ default ] | |
steps: | |
- name: Trigger Hugo Workflow in Greenhouse Repository | |
run: | | |
repo_name="greenhouse" | |
event_type="trigger-workflow" | |
curl -L \ | |
-X POST \ | |
-H "Accept: application/vnd.github+json" \ | |
-H "Authorization: Bearer ${{ secrets.PAT }}" \ | |
-H "X-GitHub-Api-Version: 2022-11-28" \ | |
https://api.github.com/repos/${{ github.repository_owner }}/$repo_name/dispatches \ | |
-d "{\"event_type\": \"$event_type\"}" |