浏览代码

commentCommands - add request-issue-improvement

Signed-off-by: sy-b <94835959+sy-b@users.noreply.github.com>
sy-b 3 年之前
父节点
当前提交
52669b1b6a
共有 2 个文件被更改,包括 40 次插入20 次删除
  1. 0 20
      .github/workflows/assignme.yml
  2. 40 0
      .github/workflows/commentCommands.yml

+ 0 - 20
.github/workflows/assignme.yml

@@ -1,20 +0,0 @@
-name: Assign issue/pull to the commenter
-
-on:
-  issue_comment:
-    types: created
-    
-jobs:
-  assign:
-    runs-on: ubuntu-latest
-    if: |
-      github.event.comment.body == '/assignme'
-    steps:
-      - name: Assigning to commentor
-        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 }}/assignees \
-          -d '{"assignees":["${{ github.event.comment.user.login }}"]}'

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

@@ -0,0 +1,40 @@
+name: Assign issue/pull to the commenter
+
+on:
+  issue_comment:
+    types: created
+    
+jobs:
+
+  assign-commentor:
+    runs-on: ubuntu-latest
+    if: |
+      github.event.comment.body == '/assignme'
+    steps:
+      - name: Assigning to commentor
+        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 }}/assignees \
+          -d '{"assignees":["${{ github.event.comment.user.login }}"]}'
+  
+  request-issue-framing-improvement:
+    runs-on: ubuntu-latest
+    if: |
+      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."}'
+
+