From aad593b151c01d9677b81e33e695314c3ac7cf62 Mon Sep 17 00:00:00 2001 From: Gautam krishna R Date: Mon, 15 Dec 2025 16:02:31 +0530 Subject: [PATCH] chore(actions): fix failing workflow using outputs --- .github/workflows/add-new-issues-to-project.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/add-new-issues-to-project.yml b/.github/workflows/add-new-issues-to-project.yml index 114f1cce430..ec999f05b1a 100644 --- a/.github/workflows/add-new-issues-to-project.yml +++ b/.github/workflows/add-new-issues-to-project.yml @@ -16,6 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Team Membership Checker + id: teamcheck # You may pin to the exact commit or the version. # uses: TheModdingInquisition/actions-team-membership@a69636a92bc927f32c3910baac06bacc949c984c uses: TheModdingInquisition/actions-team-membership@v1.0 @@ -27,9 +28,10 @@ jobs: # The organization of the team to check for. Defaults to the context organization. organization: 'patternfly' # If the action should exit if the user is not part of the team. - exit: true + exit: false - name: Add label if user is a team member + if: steps.teamcheck.outputs.permitted == 'true' run: | curl -X POST \ -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \