-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support assign command #11
Conversation
Signed-off-by: wq1019 <[email protected]>
@wq1019, you already got 200 points from easy level tasks when all pull requests merged. And you will not get score from this PR. |
Thanks for your pull request. Pick up issue #7 and reopen this PR |
😒 👎 |
@wq1019 Thanks for this PR, don't worry I'm fixing it. 😥 |
@wq1019, you already got 200 points from easy level tasks when all pull requests merged. And you will not get score from this PR. |
Thanks for your contribution. If your PR get merged, you will be rewarded 100 points. |
No, you will get points from this PR, sorry for this accident. |
@@ -37,7 +37,8 @@ func (c *CommandRedeliver) ProcessIssueCommentEvent(event *github.IssueCommentEv | |||
if !strings.Contains(comment, "/run") && | |||
!strings.Contains(comment, "/test") && | |||
!strings.Contains(comment, "/bench") && | |||
!strings.Contains(comment, "/release") { | |||
!strings.Contains(comment, "/release") && | |||
!strings.Contains(comment, "/assign") { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think /assign
does not need to be repeated.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks, I'll fix it.
Signed-off-by: wq1019 <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Congratulations, you get 300 score from easy level tasks in challenge program season-2, and if your PRs in reviewed stage all got merged, the score will be 300, try some medium and hard tasks!(you can not reward from easy and vector tasks now) |
Oh I should remove the limitation in this repo. |
UCP: #6
Signed-off-by: wq1019 [email protected]
What problem does this PR solve?
Support assign issue to contributor.
What is changed and how it works?
Call GitHub API.
Check List
Tests