Skip to content
Snippets Groups Projects
Unverified Commit e4da0998 authored by Michael Kriese's avatar Michael Kriese Committed by GitHub
Browse files

ci: don't fetch GitHub issues on merge queue (#31792)

parent 76311acf
No related branches found
No related tags found
No related merge requests found
...@@ -604,7 +604,7 @@ jobs: ...@@ -604,7 +604,7 @@ jobs:
run: pnpm build:docs run: pnpm build:docs
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 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 - name: Test docs
run: pnpm test:docs run: pnpm test:docs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment