[skip ci] Ignore issue moderator and md changes in PR CI (#15195)
* Ignore some changes in PR builds * Ignore only issue moderator instead of .github
This commit is contained in:
parent
c4cc2d3e8b
commit
91bba235bc
|
@ -4,6 +4,7 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- '**.md'
|
- '**.md'
|
||||||
|
- '.github/workflows/issue_moderator.yml'
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
|
||||||
|
@ -50,6 +51,10 @@ jobs:
|
||||||
isIndividualChanged=1
|
isIndividualChanged=1
|
||||||
elif [[ ${changedFile} == multisrc/* ]]; then
|
elif [[ ${changedFile} == multisrc/* ]]; then
|
||||||
isMultisrcChanged=1
|
isMultisrcChanged=1
|
||||||
|
elif [[ ${changedFile} == .github/workflows/issue_moderator.yml ]]; then
|
||||||
|
true
|
||||||
|
elif [[ ${changedFile} == *.md ]]; then
|
||||||
|
true
|
||||||
else
|
else
|
||||||
isIndividualChanged=1
|
isIndividualChanged=1
|
||||||
isMultisrcChanged=1
|
isMultisrcChanged=1
|
||||||
|
|
Loading…
Reference in New Issue