Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsy-b <94835959+sy-b@users.noreply.github.com>2022-07-02 21:58:11 +0300
committerGitHub <noreply@github.com>2022-07-02 21:58:11 +0300
commit52669b1b6a746de0d8c1101af33510817a0e8d19 (patch)
treeb2ad0d2fd8a6bf0cb274a671e1629a3b9a814277 /.github
parent1c918cf8181d24fc6b0ea1ff060544113250ab07 (diff)
commentCommands - add request-issue-improvement
Signed-off-by: sy-b <94835959+sy-b@users.noreply.github.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/assignme.yml20
-rw-r--r--.github/workflows/commentCommands.yml40
2 files changed, 40 insertions, 20 deletions
diff --git a/.github/workflows/assignme.yml b/.github/workflows/assignme.yml
deleted file mode 100644
index 586033d..0000000
--- a/.github/workflows/assignme.yml
+++ /dev/null
@@ -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 }}"]}'
diff --git a/.github/workflows/commentCommands.yml b/.github/workflows/commentCommands.yml
new file mode 100644
index 0000000..5eeff3d
--- /dev/null
+++ b/.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."}'
+
+