mirror of
https://github.com/osukey/osukey.git
synced 2025-06-09 05:19:11 +09:00
Match against individual rulesets
This commit is contained in:
parent
176c414c11
commit
b8ada31d7d
9
.github/workflows/test-diffcalc.yml
vendored
9
.github/workflows/test-diffcalc.yml
vendored
@ -1,3 +1,8 @@
|
|||||||
|
# Listens to new PR comments containing "!pp check", and runs diffcalc across the PR and master to produce a table of differences.
|
||||||
|
# Usage:
|
||||||
|
# !pp check 0 : Runs only the osu! ruleset
|
||||||
|
# !pp check 0 1 : Runs the osu! and taiko rulesets.
|
||||||
|
|
||||||
name: Diffcalc Consistency Checks
|
name: Diffcalc Consistency Checks
|
||||||
on:
|
on:
|
||||||
issue_comment:
|
issue_comment:
|
||||||
@ -18,8 +23,8 @@ jobs:
|
|||||||
if: |
|
if: |
|
||||||
contains(github.event.comment.html_url, '/pull/') &&
|
contains(github.event.comment.html_url, '/pull/') &&
|
||||||
contains(github.event.comment.body, '!pp check') &&
|
contains(github.event.comment.body, '!pp check') &&
|
||||||
${{ github.event.comment.author_association == 'MEMBER' }}
|
${{ github.event.comment.author_association == 'MEMBER' }} &&
|
||||||
|
contains(github.event.comment.body, ${{ matrix.ruleset.id }})
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
Loading…
x
Reference in New Issue
Block a user