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
5 changes: 4 additions & 1 deletion .github/workflows/tests-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,10 @@ jobs:
run: pnpm knip

graphql-schema:
if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' }}
# Skip on dependabot PRs (no access to required secrets) and on PRs opened
# from forks (also no access to secrets), but always run on merge_group
# events since merge queue runs from the base repo.
if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' && (github.event_name == 'merge_group' || github.event.pull_request.head.repo.full_name == github.repository) }}
name: 'Check graphql-codegen has been run'
runs-on: macos-latest
timeout-minutes: 30
Expand Down
Loading