CMU-Delphi submission 2026-07-08 #21
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: "Send Dispatch For COVID Target Data Update" | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'target-data/*' | |
| jobs: | |
| update-visualization-data: | |
| if: ${{ github.repository_owner == 'CDCgov' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Generate Installation Token" | |
| id: get_token | |
| uses: actions/create-github-app-token@v3 | |
| with: | |
| app-id: ${{ vars.ENT_GH_APP_ID }} | |
| private-key: ${{ secrets.ENT_GH_APP_KEY }} | |
| owner: cdcent | |
| repositories: cfa-forecast-hub-internal-reports | |
| - name: "Repository Dispatch" | |
| uses: peter-evans/repository-dispatch@v4 | |
| with: | |
| token: ${{ steps.get_token.outputs.token }} | |
| repository: cdcent/cfa-forecast-hub-internal-reports | |
| event-type: covid-target-update |