mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-29 23:17:02 +01:00
remove permission check for wikilabel usage (#30588)
This commit is contained in:
@@ -11,19 +11,7 @@ jobs:
|
||||
issues: write
|
||||
pull-requests: write
|
||||
steps:
|
||||
- name: Check commenter authorization
|
||||
id: check-auth
|
||||
run: |
|
||||
IFS=',' read -ra WIKI_MANAGERS <<< "${{ vars.WIKI_MANAGERS }}"
|
||||
COMMENTER_ID="${{ github.event.comment.user.id }}"
|
||||
if [[ " ${WIKI_MANAGERS[@]} " =~ " ${COMMENTER_ID} " ]]; then
|
||||
echo "authorized=true" >> $GITHUB_OUTPUT
|
||||
else
|
||||
echo "authorized=false" >> $GITHUB_OUTPUT
|
||||
fi
|
||||
|
||||
- name: Add thumbs up reaction and Wiki label
|
||||
if: steps.check-auth.outputs.authorized == 'true'
|
||||
run: |
|
||||
# Add thumbs up reaction
|
||||
curl -X POST \
|
||||
@@ -38,12 +26,3 @@ jobs:
|
||||
-H "Accept: application/vnd.github.v3+json" \
|
||||
"https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/labels" \
|
||||
-d '["Requires Wiki Update"]'
|
||||
|
||||
- name: Unauthorized user thumbs down reaction
|
||||
if: steps.check-auth.outputs.authorized == 'false'
|
||||
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/comments/${{ github.event.comment.id }}/reactions" \
|
||||
-d '{"content":"-1"}'
|
||||
|
||||
Reference in New Issue
Block a user