Skip to content

Commit

Permalink
ci: enable ci-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
v1v committed Aug 7, 2023
1 parent 20b2691 commit 66d7872
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
# This workflow sets the "ci" status check to success in case it's a docs only PR and ci.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: ci # The name must be the same as in ci.yml

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

permissions:
contents: read

jobs:
test:
runs-on: ubuntu-latest
steps:
- run: echo "No build required"

0 comments on commit 66d7872

Please sign in to comment.