From ebb14843284bb223151ba1922620525c4a589bbe Mon Sep 17 00:00:00 2001 From: Zachary Stence Date: Mon, 4 Nov 2024 17:06:39 -0600 Subject: [PATCH] ci: try empty for environment that doesn't require approval --- .github/workflows/external-pr-action-approval.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/external-pr-action-approval.yml b/.github/workflows/external-pr-action-approval.yml index 4921cd5106..5d2419bcd1 100644 --- a/.github/workflows/external-pr-action-approval.yml +++ b/.github/workflows/external-pr-action-approval.yml @@ -5,7 +5,7 @@ jobs: external-pr-action-approval: name: 'External PR Action Approval' # github.event_name == 'pull_request_target' && - environment: ${{ github.event.pull_request.head.repo.full_name != github.repository && 'blah' || 'Approval required to run action on external PR' }} + environment: ${{ github.event.pull_request.head.repo.full_name != github.repository && '' || 'Approval required to run action on external PR' }} runs-on: ubuntu-latest steps: - run: echo "Environment set, waiting for approval if required"