1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-15 20:47:25 +08:00

Match against individual rulesets

This commit is contained in:
smoogipoo 2021-09-03 18:47:15 +09:00
parent 176c414c11
commit b8ada31d7d

View File

@ -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
on:
issue_comment:
@ -18,8 +23,8 @@ jobs:
if: |
contains(github.event.comment.html_url, '/pull/') &&
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:
fail-fast: false