Skip to content

Commit 564a023

Browse files
2xburntclaude
andcommitted
fix(ci): convert trigger-types to workflow_dispatch
trigger-types.yaml calls burnt-labs/xion-types release.yaml as an external reusable workflow, which causes startup_failure. Convert to gh workflow run dispatch like the other downstream triggers. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 0bdc8ea commit 564a023

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/publish-release.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -156,10 +156,13 @@ jobs:
156156
name: Trigger Types
157157
needs: resolve-tag
158158
if: github.repository == 'burnt-labs/xion'
159-
uses: ./.github/workflows/trigger-types.yaml
160-
with:
161-
release_tag: ${{ needs.resolve-tag.outputs.tag }}
162-
secrets: inherit
159+
runs-on: ubuntu-latest
160+
steps:
161+
- name: Trigger xion-types release
162+
env:
163+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
164+
TAG_NAME: ${{ needs.resolve-tag.outputs.tag }}
165+
run: gh workflow run release.yaml --repo burnt-labs/xion-types -f "release_tag=${TAG_NAME}"
163166

164167
update-chain-registry:
165168
name: Update Chain Registry

0 commit comments

Comments
 (0)