Return successful status if only MD files changed (because in those cases, no other CI runs).
parent
ee8cfdb21f
commit
485ac00e5e
@ -0,0 +1,17 @@
|
||||
name: PullRequestWithoutCi
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- '**'
|
||||
paths:
|
||||
- '!**'
|
||||
- '**.md'
|
||||
jobs:
|
||||
Status:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: 'Final Status'
|
||||
shell: pwsh
|
||||
run: |
|
||||
echo 'All workflows succeeded.'
|
||||
exit 0
|
||||
Loading…
Reference in New Issue