-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update gh actions for issue creation
- Loading branch information
1 parent
ab4a3d1
commit 3eb2a5d
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,3 +14,27 @@ jobs: | |
with: | ||
project-url: https://github.com/orgs/patternfly/projects/7 | ||
github-token: ${{ secrets.GH_PROJECTS }} | ||
label-issue: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Team Membership Checker | ||
# You may pin to the exact commit or the version. | ||
# uses: TheModdingInquisition/actions-team-membership@a69636a92bc927f32c3910baac06bacc949c984c | ||
uses: TheModdingInquisition/[email protected] | ||
with: | ||
# Repository token. GitHub Action token is used by default(recommended). But you can also use the other token(e.g. personal access token). | ||
token: ${{ secrets.GH_READ_ORG_TOKEN }} | ||
# The team to check for. | ||
team: 'frequent-flyers' | ||
# 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 | ||
|
||
- name: Add label if user is a team member | ||
run: | | ||
curl -X POST \ | ||
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ | ||
-H "Accept: application/vnd.github.v3+json" \ | ||
https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/labels \ | ||
-d '{"labels":["PF Team"]}' |