Add separate docs workflow (#1491)

This commit is contained in:
Tyera Eulberg 2021-03-23 23:27:48 -06:00 committed by GitHub
parent 75e122061e
commit 6969ad199a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 0 deletions

16
.github/workflows/pull-request-docs.yml vendored Normal file
View File

@ -0,0 +1,16 @@
name: Docs Pull Request
on:
pull_request:
paths:
- 'docs/**'
push:
branches: [master]
paths:
- 'docs/**'
jobs:
all_github_action_checks:
runs-on: ubuntu-latest
steps:
- run: echo "Done"

View File

@ -2,8 +2,12 @@ name: Pull Request
on:
pull_request:
paths-ignore:
- 'docs/**'
push:
branches: [master]
paths-ignore:
- 'docs/**'
jobs:
all_github_action_checks: