소스 검색

Merge pull request #668 from sy-b/commentCommands_requestIssueImprovement

Comment-commands via workflows -> add command to request issue improvement
Dmitrii Selivanov 2 년 전
부모
커밋
de9b0d9e06
1개의 변경된 파일17개의 추가작업 그리고 2개의 파일을 삭제
  1. 17 2
      .github/workflows/commentCommands.yml

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

@@ -6,7 +6,7 @@ on:
     
 jobs:
 
-  assign-commentor:
+  assign-commenter:
     runs-on: ubuntu-latest
     if: |
       contains(github.event.comment.body, '/assignme') ||
@@ -20,7 +20,22 @@ jobs:
           -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
           https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/assignees \
           -d '{"assignees":["${{ github.event.comment.user.login }}"]}'
-  
+  request-issue-framing-improvement:
+    runs-on: ubuntu-latest
+    if: |
+      contains(github.event.comment.body,'/improve') && (
+      github.event.comment.author_association == 'OWNER' ||
+      github.event.comment.author_association == 'COLLABORATOR' ||
+      github.event.comment.author_association == 'CONTRIBUTOR' )
+    steps:
+      - name: request-issue-framing-improvement
+        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 }}/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: |