We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 691d1df commit cdca0b4Copy full SHA for cdca0b4
.github/workflows/build-package-python.yml
@@ -1,7 +1,10 @@
1
name: Build and Package the Python Commons Base package to Dev Registry
2
+
3
on:
4
push:
5
branches: [ main ]
6
+ workflow_dispatch:
7
8
env:
9
DEV_REGISTRY: ghcr.io/noaa-gsl/idss/commons/python
10
jobs:
@@ -92,3 +95,11 @@ jobs:
92
95
- name: Push Image to Dev Registry
93
96
run: |
94
97
docker push ${{env.DEV_REGISTRY}}/${{env.APP_LOWERCASE}}:${{env.BRANCH}}
98
99
+ - name: Trigger Dependent Repository Workflows
100
+ run: |
101
+ curl -X POST -H "Accept: application/vnd.github+json" \
102
+ -H "Authorization: Bearer ${{ secrets.REPO_PAT }}" \
103
+ -H "Content-Type: application/json" \
104
+ --data '{"event_type": "commons-updated"}' \
105
+ https://api.github.com/repos/NOAA-GSL/event-portfolio-manager/dispatches
0 commit comments