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:
authorDmitrii Selivanov <selivano.d@gmail.com>2022-07-20 00:41:41 +0300
committerGitHub <noreply@github.com>2022-07-20 00:41:41 +0300
commitde9b0d9e0649d0ff13c5f01366ae7f8016b88871 (patch)
tree45ec92fb33b60c510d1a46443440bc41b018729a
parent68aedd45dabf655cdcd2ba53e31d67e4c3b6fd28 (diff)
parent42275399602935b98ca7fca3f48c0c9670aebe52 (diff)
Merge pull request #668 from sy-b/commentCommands_requestIssueImprovement
Comment-commands via workflows -> add command to request issue improvement
-rw-r--r--.github/workflows/commentCommands.yml19
1 files changed, 17 insertions, 2 deletions
diff --git a/.github/workflows/commentCommands.yml b/.github/workflows/commentCommands.yml
index 6344344..fbf4aad 100644
--- a/.github/workflows/commentCommands.yml
+++ b/.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: |