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
1 changed files with 2 additions and 7 deletions

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
on:
issue_comment:
@ -23,8 +18,8 @@ jobs:
if: |
contains(github.event.comment.html_url, '/pull/') &&
contains(github.event.comment.body, '!pp check') &&
${{ github.event.comment.author_association == 'MEMBER' }} &&
contains(github.event.comment.body, ${{ matrix.ruleset.id }})
${{ github.event.comment.author_association == 'MEMBER' }}
strategy:
fail-fast: false