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

action: override git checks when only docs #2185

Merged
merged 5 commits into from
Sep 20, 2023
Merged
Show file tree
Hide file tree
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
33 changes: 33 additions & 0 deletions .github/workflows/test-linux-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# This workflow sets the 'test-linux / pack' and 'test-linux / tests' status check to success in case it's a docs only PR and test-linux.yml is not triggered
# 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
name: test-linux # The name must be the same as in test-linux.yml

on:
pull_request:
paths-ignore: # This expression needs to match the paths ignored on test-linux.yml.
- '**'
- '!**/*.md'
- '!**/*.asciidoc'
- '!docs/**'

permissions:
contents: read

## Concurrency only allowed in the main branch.
## So old builds running for old commits within the same Pull Request are cancelled
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

jobs:
# dummy steps that allow to bypass those mandatory checks for tests
pack:
runs-on: ubuntu-latest
steps:
- run: 'echo "Not required for docs"'

# dummy steps that allow to bypass those mandatory checks for tests
tests:
runs-on: ubuntu-latest
steps:
- run: 'echo "Not required for docs"'
28 changes: 28 additions & 0 deletions .github/workflows/test-windows-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This workflow sets the 'test-windows / tests' status check to success in case it's a docs only PR and test-windows.yml is not triggered
# 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
name: test-windows # The name must be the same as in test-windows.yml

on:
pull_request:
paths-ignore: # This expression needs to match the paths ignored on test-windows.yml.
- '**'
- '!**/*.md'
- '!**/*.asciidoc'
- '!docs/**'

permissions:
contents: read

## Concurrency only allowed in the main branch.
## So old builds running for old commits within the same Pull Request are cancelled
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

jobs:

# dummy steps that allow to bypass those mandatory checks for tests
tests:
runs-on: ubuntu-latest
steps:
- run: 'echo "Not required for docs"'
Loading