Skip to content

Commit

Permalink
Add external PR labeler action
Browse files Browse the repository at this point in the history
  • Loading branch information
cbbayburt committed Aug 11, 2023
1 parent dbabcf3 commit bbba433
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/external_pr_labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: External PR labeler

on:
pull_request_target:
# types:
# - opened

jobs:
label_prs:
name: Label external PRs
runs-on: ubuntu-latest
permissions: read-all
steps:
- id: is_member
name: Check if author is an org member
uses: jamessingleton/[email protected]
with:
organization: uyuni-project
username: ${{ github.actor }}
token: ${{ secrets.GITHUB_TOKEN }}
- name: Report
run: |
echo "Actor: ${{ github.actor }}"
echo "Is a member? ${{ steps.is_member.outputs.result }}"
# - uses: tspascoal/get-user-teams-membership@v2
# with:
# username: ${{ github.actor }}
# team: 'uyuni-project'
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit bbba433

Please sign in to comment.