-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
18 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# If you change this name also do it in tests.yml and ci_metrics.yml | ||
# We use a separate workflow to skip the tests if the PR contains both code and non-code changes (e.g. release notes). | ||
# Skipping the job unfortunately doesn't work because GitHub will treat these jobs as successful even if they are | ||
# skipped. Hence, we need to revert to a separate workflow. | ||
name: Tes | ||
on: | ||
workflow_call: | ||
|
||
jobs: | ||
catch-all: | ||
# Don't run this check if the PR contains both code and non-code changes (e.g. release notes) | ||
name: Catch-all check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Skip tests | ||
run: echo "Skipped!" |