We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa5d529 commit a9b02b1Copy full SHA for a9b02b1
.github/workflows/add-new-issues-to-project.yml
@@ -16,6 +16,7 @@ jobs:
16
runs-on: ubuntu-latest
17
steps:
18
- name: Team Membership Checker
19
+ id: teamcheck
20
# You may pin to the exact commit or the version.
21
# uses: TheModdingInquisition/actions-team-membership@a69636a92bc927f32c3910baac06bacc949c984c
22
uses: TheModdingInquisition/[email protected]
@@ -27,9 +28,10 @@ jobs:
27
28
# The organization of the team to check for. Defaults to the context organization.
29
organization: 'patternfly'
30
# If the action should exit if the user is not part of the team.
- exit: true
31
+ exit: false
32
33
- name: Add label if user is a team member
34
+ if: steps.teamcheck.outputs.permitted == 'true'
35
run: |
36
curl -X POST \
37
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
0 commit comments