Skip to content

Commit

Permalink
chore: collaborator 찾기 에러 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
soi-ha committed Jul 22, 2024
1 parent 20d9762 commit 0ce58cb
Showing 1 changed file with 29 additions and 29 deletions.
58 changes: 29 additions & 29 deletions .github/workflows/assign-reviewer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,54 +15,54 @@ jobs:
- name: Check out repository
uses: actions/checkout@v2

- name: Fetch organization members
id: fetch-members
- name: Fetch repository collaborators
id: fetch-collaborators
run: |
RESPONSE=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
"https://api.github.com/orgs/Wannabe-Woowa-Article/members")
ORG_MEMBERS=$(echo "$RESPONSE" | jq -r '.[].login' | tr '\n' ' ')
echo "ORG_MEMBERS=$ORG_MEMBERS" >> $GITHUB_ENV
"https://api.github.com/repos/${{ github.repository }}/collaborators")
COLLABORATORS=$(echo "$RESPONSE" | jq -r '.[].login' | tr '\n' ' ')
echo "COLLABORATORS=$COLLABORATORS" >> $GITHUB_ENV
- name: Fetch existing PR assignees
id: fetch-pr-assignees
- name: Fetch existing PR reviewers
id: fetch-pr-reviewers
run: |
RESPONSE=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
"https://api.github.com/repos/${{ github.repository }}/pulls")
EXISTING_ASSIGNEES=$(echo "$RESPONSE" | jq -r '.[].assignees[].login' | sort | uniq | tr '\n' ' ')
echo "EXISTING_ASSIGNEES=$EXISTING_ASSIGNEES" >> $GITHUB_ENV
"https://api.github.com/repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}/requested_reviewers")
EXISTING_REVIEWERS=$(echo "$RESPONSE" | jq -r '.users[].login' | sort | uniq | tr '\n' ' ')
echo "EXISTING_REVIEWERS=$EXISTING_REVIEWERS" >> $GITHUB_ENV
- name: Select random member
- name: Select random collaborator
id: select-random
run: |
# Convert organization members to array
ORG_MEMBERS_ARRAY=($ORG_MEMBERS)
# Convert collaborators to array
COLLABORATORS_ARRAY=($COLLABORATORS)
# Convert existing assignees to array
EXISTING_ASSIGNEES_ARRAY=($EXISTING_ASSIGNEES)
# Convert existing reviewers to array
EXISTING_REVIEWERS_ARRAY=($EXISTING_REVIEWERS)
# Remove PR author from organization members
# Remove PR author from collaborators
PR_AUTHOR=${{ github.event.pull_request.user.login }}
FILTERED_MEMBERS=()
for member in "${ORG_MEMBERS_ARRAY[@]}"; do
if [[ "$member" != "$PR_AUTHOR" && ! " ${EXISTING_ASSIGNEES_ARRAY[@]} " =~ " ${member} " ]]; then
FILTERED_MEMBERS+=($member)
FILTERED_COLLABORATORS=()
for collaborator in "${COLLABORATORS_ARRAY[@]}"; do
if [[ "$collaborator" != "$PR_AUTHOR" && ! " ${EXISTING_REVIEWERS_ARRAY[@]} " =~ " ${collaborator} " ]]; then
FILTERED_COLLABORATORS+=($collaborator)
fi
done
# Check if there are any eligible members left
if [ ${#FILTERED_MEMBERS[@]} -eq 0 ]; then
echo "No eligible members to assign"
# Check if there are any eligible collaborators left
if [ ${#FILTERED_COLLABORATORS[@]} -eq 0 ]; then
echo "No eligible collaborators to assign"
exit 1
fi
# Select a random member from filtered members
RANDOM_MEMBER=${FILTERED_MEMBERS[$RANDOM % ${#FILTERED_MEMBERS[@]}]}
echo "SELECTED_MEMBER=$RANDOM_MEMBER" >> $GITHUB_ENV
# Select a random collaborator from filtered collaborators
RANDOM_COLLABORATOR=${FILTERED_COLLABORATORS[$RANDOM % ${#FILTERED_COLLABORATORS[@]}]}
echo "SELECTED_COLLABORATOR=$RANDOM_COLLABORATOR" >> $GITHUB_ENV
- name: Assign PR to selected member
- name: Assign PR to selected reviewer
run: |
curl -X POST \
-H "Accept: application/vnd.github.v3+json" \
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
-d '{"assignees":["${{ env.SELECTED_MEMBER }}"]}' \
"https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/assignees"
-d '{"reviewers":["${{ env.SELECTED_COLLABORATOR }}"]}' \
"https://api.github.com/repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}/requested_reviewers"

0 comments on commit 0ce58cb

Please sign in to comment.