-
Notifications
You must be signed in to change notification settings - Fork 334
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Skip status check on docs changed (#903)
* ci: Pass status check on docs changed * ci: Remove coverage.yml
- Loading branch information
Showing
3 changed files
with
98 additions
and
70 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,55 @@ | ||
on: | ||
pull_request: | ||
types: [opened, synchronize, reopened, ready_for_review] | ||
paths: | ||
- 'docs/**' | ||
- 'config/**' | ||
- '**.md' | ||
- '.dockerignore' | ||
- 'docker/**' | ||
- '.gitignore' | ||
push: | ||
branches: | ||
- develop | ||
- main | ||
paths: | ||
- 'docs/**' | ||
- 'config/**' | ||
- '**.md' | ||
- '.dockerignore' | ||
- 'docker/**' | ||
- '.gitignore' | ||
workflow_dispatch: | ||
|
||
name: CI | ||
|
||
# To pass the required status check, see: | ||
# https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks | ||
|
||
jobs: | ||
check: | ||
name: Check | ||
if: github.event.pull_request.draft == false | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: 'echo "No action required"' | ||
|
||
fmt: | ||
name: Rustfmt | ||
if: github.event.pull_request.draft == false | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: 'echo "No action required"' | ||
|
||
clippy: | ||
name: Clippy | ||
if: github.event.pull_request.draft == false | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: 'echo "No action required"' | ||
|
||
coverage: | ||
if: github.event.pull_request.draft == false | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: 'echo "No action required"' |