소스 검색

add job -> add-label-duplicate

GitHub-Bot adds "duplicate" label when owners, collaborators or contributors comment - /duplicate

Signed-off-by: sy-b <94835959+sy-b@users.noreply.github.com>
sy-b 3 년 전
부모
커밋
029ca28e51
1개의 변경된 파일17개의 추가작업 그리고 0개의 파일을 삭제
  1. 17 0
      .github/workflows/commentCommands.yml

+ 17 - 0
.github/workflows/commentCommands.yml

@@ -37,4 +37,21 @@ jobs:
           https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/comments \
           -d '{"body":"This issue is put on hold due to low quality. No reviews or fixes will be performed at this time. Eventually, it will be closed. While we appreciate your effort writing, we are not able to further investigate it. Please improve it by writing a better title or providing more details, and you may re-open it."}'
 
+  add-label-duplicate:
+    runs-on: ubuntu-latest
+    if: |
+      startsWith(github.event.comment.body, "/duplicate") == '/add' && (
+      github.event.comment.author_association == 'OWNER' ||
+      github.event.comment.author_association == 'COLLABORATOR' ||
+      github.event.comment.author_association == 'CONTRIBUTOR' )
+    steps:
+      - name: add-label-duplicate
+        run: |
+          curl \
+              -X POST \
+              -H "Accept: application/vnd.github+json" \
+              -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
+              https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/label \
+              -d '{"labels":["duplicate"]}'
+