1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-22 03:31:54 +08:00

Single line condition

This commit is contained in:
smoogipoo
2021-09-09 14:42:39 +09:00
committed by Dean Herbert
Unverified
parent e354287804
commit fa374e67e7
+1 -4
View File
@@ -22,10 +22,7 @@ jobs:
runs-on: ubuntu-latest
continue-on-error: true
if: |
github.event.issue.pull_request &&
contains(github.event.comment.body, '!pp check') &&
(github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'OWNER')
if: github.event.issue.pull_request && contains(github.event.comment.body, '!pp check') && (github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'OWNER')
strategy:
fail-fast: false