Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CircleCI status check error when skipping circleci jobs #10434

Merged
merged 3 commits into from
Jul 19, 2023
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
14 changes: 14 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -896,6 +896,15 @@ jobs:
name: Add summary of flakey tests to GitHub Checks
command: |
node ./packages/flake-tracker/scripts/summary.js

# Dummy job for not showing CircleCI error: "Error: All Workflows have been filtered from this Pipeline"
# Check https://github.com/CircleCI-Public/circleci-cli/issues/577 for more context
noop:
docker:
- image: cimg/base:current
resource_class: small
steps:
- run: echo "noop"

workflows:
version: 2
Expand Down Expand Up @@ -1042,3 +1051,8 @@ workflows:
- protocol-test-with-code-coverage:
requires:
- lint-checks
# Dummy job for not showing CircleCI error: "Error: All Workflows have been filtered from this Pipeline"
# Check https://github.com/CircleCI-Public/circleci-cli/issues/577 for more context
no-changes:
jobs:
- noop
Loading