From 787d262f32613057f57314b2126cee81df4f4a49 Mon Sep 17 00:00:00 2001 From: Mike Palmiotto Date: Mon, 3 Jun 2024 13:06:44 -0400 Subject: [PATCH] Drop the hashicorp-submitted constraint --- .github/workflows/do-not-merge-checker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/do-not-merge-checker.yml b/.github/workflows/do-not-merge-checker.yml index 492b7e03a6c3..1956bb433df8 100644 --- a/.github/workflows/do-not-merge-checker.yml +++ b/.github/workflows/do-not-merge-checker.yml @@ -13,7 +13,7 @@ jobs: # checks that a do-not-merge label is not present for a PR do-not-merge-check: # If there is a `do-not-merge` label, or this comes from a fork (community contributor) we ignore this check - if: ${{ (github.repository_owner == 'hashicorp' && contains(github.event.pull_request.labels.*.name, 'do-not-merge')) }} + if: ${{ contains(github.event.pull_request.labels.*.name, 'do-not-merge') }} runs-on: ubuntu-latest steps: - name: Fail if do-not-merge label is applied