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: 3 additions & 2 deletions .circleci/src/pipeline/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -317,9 +317,10 @@ jobs:
- publish-binary
requires:
- node_modules_install
- approve-contributor-pr
- internal-pr-build
- external-pr-build
filters:
branches:
ignore: /^pull\/[0-9]+/
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Workflow Breaks for External Contributor PRs

The create-and-trigger-packaging-artifacts job now filters out external PRs, but downstream jobs like test-npm-module-on-minimum-node-version, test-types-cypress-and-jest, binary-system-tests, and others require get-published-artifacts which depends on this job. These downstream jobs have no filters excluding external PRs, so they'll be blocked waiting for a dependency that never runs, breaking the workflow for external contributor PRs.

Fix in Cursor Fix in Web

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes! that is the point!

- wait-for-binary-publish:
type: approval
requires:
Expand Down
Loading