Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/auto-trigger-code-samples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,16 @@ jobs:
else
echo "ready=false" >> $GITHUB_OUTPUT
fi
env:
GH_TOKEN: ${{ github.token }}

- name: Trigger generate-code-samples workflow
if: steps.check.outputs.ready == 'true'
run: |
gh workflow run generate-code-samples.yml
echo "✅ Successfully triggered generate-code-samples.yml workflow"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ github.token }}

- name: Log status when not ready
if: steps.check.outputs.ready != 'true'
Expand Down