@@ -204,7 +204,7 @@ jobs:
204204 - name : Checkout
205205 uses : actions/checkout@v4
206206 with :
207- token : ${{ secrets.GITHUB_TOKEN }}
207+ token : ${{ secrets.IDEE_GH_TOKEN }}
208208
209209 - name : Setup Node.js
210210 uses : actions/setup-node@v4
@@ -226,7 +226,8 @@ jobs:
226226 npx tsx .github/scripts/index.ts ext-version-bumper
227227
228228 - name : Validate GitHub authentication
229- if : inputs.dry-run != 'true' && github.event.inputs.dry-run != 'true'
229+ env :
230+ GITHUB_TOKEN : ${{ secrets.IDEE_GH_TOKEN }}
230231 run : |
231232 # Validate that required tokens are present
232233 if [ -z "$GITHUB_TOKEN" ]; then
@@ -245,7 +246,7 @@ jobs:
245246 - name : Commit version bumps with tags
246247 env :
247248 # Ensure GitHub CLI has proper authentication
248- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
249+ GITHUB_TOKEN : ${{ secrets.IDEE_GH_TOKEN }}
249250 DRY_RUN : ${{ inputs.dry-run || github.event.inputs.dry-run || 'false' }}
250251 run : |
251252 IS_PROMOTION="${{ needs.determine-build-type.outputs.is-promotion }}"
@@ -325,8 +326,6 @@ jobs:
325326 artifact-name : ${{ needs.calculate-artifact-name.outputs.artifact-name }}
326327 dry-run : ${{ inputs.dry-run || github.event.inputs.dry-run || 'false' }}
327328
328-
329-
330329 determine-publish-matrix :
331330 needs : [determine-changes, calculate-artifact-name]
332331 runs-on : ubuntu-latest
@@ -395,7 +394,7 @@ jobs:
395394 - name : Checkout
396395 uses : actions/checkout@v4
397396 with :
398- token : ${{ secrets.GITHUB_TOKEN }}
397+ token : ${{ secrets.IDEE_GH_TOKEN }}
399398 ref : ${{ inputs.branch || github.ref }}
400399
401400 - name : Download VSIX artifacts
@@ -404,7 +403,7 @@ jobs:
404403 name : ${{ needs.calculate-artifact-name.outputs.artifact-name }}
405404 path : ./vsix-artifacts
406405
407- - name : Debug - List downloaded artifacts
406+ - name : List downloaded artifacts
408407 run : |
409408 echo "=== DEBUG: Downloaded Artifacts ==="
410409 echo "Artifact name: ${{ needs.calculate-artifact-name.outputs.artifact-name }}"
@@ -478,7 +477,8 @@ jobs:
478477
479478 slack-notify :
480479 name : Slack Notification
481- needs : [determine-build-type, determine-changes, bump-versions, package, publish]
480+ needs :
481+ [determine-build-type, determine-changes, bump-versions, package, publish]
482482 runs-on : ubuntu-latest
483483 if : always() && needs.publish.result == 'success' && (inputs.dry-run != 'true' && github.event.inputs.dry-run != 'true')
484484 steps :
@@ -584,7 +584,8 @@ jobs:
584584
585585 slack-notify-failure :
586586 name : Slack Failure Notification
587- needs : [determine-build-type, determine-changes, bump-versions, package, publish]
587+ needs :
588+ [determine-build-type, determine-changes, bump-versions, package, publish]
588589 runs-on : ubuntu-latest
589590 if : always() && needs.publish.result == 'failure' && (inputs.dry-run != 'true' && github.event.inputs.dry-run != 'true')
590591 steps :
0 commit comments