mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
Be able to skip CI from pull request title (#2593)
GitHub Actions has skipping CI built in, but only checks the commit
message. I removed too much in 26776c86
.
This commit is contained in:
parent
a99331d32e
commit
7446bd2d17
2 changed files with 6 additions and 0 deletions
3
.github/workflows/mri.yml
vendored
3
.github/workflows/mri.yml
vendored
|
@ -11,6 +11,9 @@ jobs:
|
|||
TESTOPTS: -v
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
if: |
|
||||
!( contains(github.event.pull_request.title, '[ci skip]')
|
||||
|| contains(github.event.pull_request.title, '[skip ci]'))
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
|
|
3
.github/workflows/non_mri.yml
vendored
3
.github/workflows/non_mri.yml
vendored
|
@ -11,6 +11,9 @@ jobs:
|
|||
TESTOPTS: -v
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
if: |
|
||||
!( contains(github.event.pull_request.title, '[ci skip]')
|
||||
|| contains(github.event.pull_request.title, '[skip ci]'))
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
|
|
Loading…
Reference in a new issue