File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 1414 with :
1515 project-url : https://github.com/orgs/patternfly/projects/7
1616 github-token : ${{ secrets.GH_PROJECTS }}
17+ label-issue :
18+ runs-on : ubuntu-latest
19+ steps :
20+ - name : Team Membership Checker
21+ # You may pin to the exact commit or the version.
22+ # uses: TheModdingInquisition/actions-team-membership@a69636a92bc927f32c3910baac06bacc949c984c
23+ uses :
TheModdingInquisition/[email protected] 24+ with :
25+ # Repository token. GitHub Action token is used by default(recommended). But you can also use the other token(e.g. personal access token).
26+ token : ${{ secrets.GH_READ_ORG_TOKEN }}
27+ # The team to check for.
28+ team : ' frequent-flyers'
29+ # The organization of the team to check for. Defaults to the context organization.
30+ organization : ' patternfly'
31+ # If the action should exit if the user is not part of the team.
32+ exit : true
33+
34+ - name : Add label if user is a team member
35+ run : |
36+ curl -X POST \
37+ -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
38+ -H "Accept: application/vnd.github.v3+json" \
39+ https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/labels \
40+ -d '{"labels":["PF Team"]}'
You can’t perform that action at this time.
0 commit comments