File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Test Registry Dispatch
2+
3+ # TEMPORARY
4+ on :
5+ push :
6+ branches : [ish/trigger-registry-update]
7+
8+ permissions : {}
9+
10+ jobs :
11+ test-dispatch :
12+ runs-on : ubuntu-latest
13+ permissions : {}
14+ steps :
15+ - name : Generate token scoped to the registry repo
16+ uses : actions/create-github-app-token@v3
17+ id : registry-token
18+ with :
19+ app-id : ${{ secrets.REGISTRY_UPDATER_APP_ID }}
20+ private-key : ${{ secrets.REGISTRY_UPDATER_APP_PRIVATE_KEY }}
21+ owner : ${{ github.repository_owner }}
22+ repositories : registry
23+
24+ - name : Dispatch registry version update
25+ env :
26+ GH_TOKEN : ${{ steps.registry-token.outputs.token }}
27+ run : |
28+ gh workflow run update-versions.yml \
29+ --repo ${{ github.repository_owner }}/registry \
30+ --ref main \
31+ -f apply=false \
32+ -f agents=codex-acp
You can’t perform that action at this time.
0 commit comments