Skip to content

Commit

Permalink
Add test-docs workflow to satisfy required workflow actions when only…
Browse files Browse the repository at this point in the history
… doc changes occcur (#366)
  • Loading branch information
Mpdreamz authored Mar 28, 2024
1 parent ebd321d commit 7c93454
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/test-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# This workflow sets the 'test' status check to success in case it's a docs only PR and e2e.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 # The name must be the same as in test.yml

on:
pull_request:
paths-ignore: # This expression needs to match the paths ignored on e2e.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:

test-windows:
runs-on: windows-latest

steps:
- run: 'echo "Not required for docs"'

test-linux:
runs-on: ubuntu-latest

steps:
- run: 'echo "Not required for docs"'

0 comments on commit 7c93454

Please sign in to comment.