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:51:40 +0300
committerGitHub <noreply@github.com>2022-07-02 21:51:40 +0300
commit1c918cf8181d24fc6b0ea1ff060544113250ab07 (patch)
treed148714bb36b18c7c24cddc8994772de06bfab36 /.github
parent16b1c2ccf0ac7d419ae1df40bdd313234557807f (diff)
Workflow to assign issue/pull to the commenter
resolves Anarios/return-youtube-dislike/issues/354 Signed-off-by: sy-b <94835959+sy-b@users.noreply.github.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/assignme.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/assignme.yml b/.github/workflows/assignme.yml
new file mode 100644
index 0000000..586033d
--- /dev/null
+++ b/.github/workflows/assignme.yml
@@ -0,0 +1,20 @@
+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 }}"]}'