forked from scikit-learn/scikit-learn
-
Notifications
You must be signed in to change notification settings - Fork 0
27 lines (24 loc) · 860 Bytes
/
assign.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: Assign
on:
issue_comment:
types: created
# Restrict the permissions granted to the use of secrets.GITHUB_TOKEN in this
# github actions workflow:
# https://docs.github.com/en/actions/security-guides/automatic-token-authentication
permissions:
issues: write
jobs:
one:
runs-on: ubuntu-latest
# Note that string comparisons is not case sensitive.
if: >-
startsWith(github.event.comment.body, '/take')
&& !github.event.issue.assignee
steps:
- run: |
echo "Assigning issue ${{ github.event.issue.number }} to ${{ github.event.comment.user.login }}"
gh issue edit $ISSUE --add-assignee ${{ github.event.comment.user.login }}
gh issue edit $ISSUE --remove-label "help wanted"
env:
GH_TOKEN: ${{ github.token }}
ISSUE: ${{ github.event.issue.html_url }}