Skip to content

Commit

Permalink
ci: don't fetch GitHub issues on merge queue (#31792)
Browse files Browse the repository at this point in the history
  • Loading branch information
viceice authored Oct 4, 2024
1 parent 76311ac commit e4da099
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ jobs:
run: pnpm build:docs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SKIP_GITHUB_ISSUES: ${{ github.event_name == 'pull_request' && 'true' || '' }}
SKIP_GITHUB_ISSUES: ${{ (github.event_name == 'pull_request' || github.event_name == 'merge_group') && 'true' || '' }}

- name: Test docs
run: pnpm test:docs
Expand Down

0 comments on commit e4da099

Please sign in to comment.