Skip to content

Commit

Permalink
Merge pull request #2484 from OffchainLabs/after-next-version-check
Browse files Browse the repository at this point in the history
Add check for after-next-version label to design approved status
  • Loading branch information
joshuacolvin0 authored Jul 12, 2024
2 parents 9ccd934 + 95172b2 commit 9e5f946
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/merge-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
run: |
set -x pipefail
status_state="pending"
if ${{ contains(github.event.*.labels.*.name, 'design-approved') }}; then
if ${{ contains(github.event.pull_request.labels.*.name, 'design-approved') && !contains(github.event.pull_request.labels.*.name, 'after-next-version') }}; then
status_state="success"
else
resp="$(curl -sSL --fail-with-body \
Expand Down

0 comments on commit 9e5f946

Please sign in to comment.