1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 06:52:55 +08:00

Revert "Match against individual rulesets"

This reverts commit b8ada31d7d.
This commit is contained in:
smoogipoo 2021-09-03 19:12:55 +09:00
parent 33dcb4915b
commit 54389561aa

View File

@ -1,8 +1,3 @@
# 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:
@ -23,8 +18,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