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 c06e69c commit 28a5b54Copy full SHA for 28a5b54
.github/workflows/check-sdk-tests.yml
@@ -62,8 +62,16 @@ jobs:
62
- name: Check out repository
63
uses: actions/checkout@v4
64
65
- - name: Get labels from PR
+ - name: Skip label check for manual runs
66
id: get-labels
67
+ if: ${{ github.event_name == 'workflow_dispatch' }}
68
+ run: |
69
+ echo "Manual workflow dispatch detected, skipping PR label check."
70
+ echo "run-sdk-tests=true" >> $GITHUB_OUTPUT
71
+
72
+ - name: Get labels from PR
73
+ id: get-labels-pr
74
+ if: ${{ github.event_name == 'pull_request' }}
75
run: |
76
sleep 5
77
LABELS=$(gh api repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/labels --jq '.[].name')
0 commit comments