|
| 1 | +# Remove or comment the line from yml if you don't need that feature |
| 2 | + |
| 3 | +# The name of bot you would like to be mentioned by users. {name} will be replaced by the below name |
| 4 | +name: "issue-assigner" |
| 5 | + |
| 6 | +######################## Issue assignment ######################## |
| 7 | + |
| 8 | +# Prompt entered by user to request assign the issue to him/her |
| 9 | +assign-prompt: "@{name} claim" # For example, @issue-assigner claim |
| 10 | + |
| 11 | +# Comment from bot if the issue got already assigned to the user requesting |
| 12 | +issue-already-assigned: "You have already been assigned to this issue." |
| 13 | + |
| 14 | +# Maximum number of assignees for an issue |
| 15 | +max-assignees: 1 |
| 16 | + |
| 17 | +# Maximum number of assignees reached for the requested issue |
| 18 | +max-assignees-reached: "Sorry, maximum limit for assignees in this issue has reached. Please check other issues or contact a maintainer." |
| 19 | + |
| 20 | +# Maximum number of open issues a user can have assigned at a time in the repo |
| 21 | +max-issues-for-user: 4 |
| 22 | + |
| 23 | +# If all OK, the comment from bot to tell that issue got assigned |
| 24 | +assigned-comment: "This issue has been successfully assigned to you! 🚀" |
| 25 | + |
| 26 | +######################## Issue un-assignment ######################## |
| 27 | + |
| 28 | +# Prompt entered by user to request un-assignment of the issue to him/her |
| 29 | +unassign-prompt: "@{name} abandon" |
| 30 | + |
| 31 | +# If the issue was already not assigned to the user |
| 32 | +issue-was-not-assigned: "You were not assigned to this issue." |
| 33 | + |
| 34 | +# If criteria is matched, the issue will get un-assigned |
| 35 | +unassigned-comment: "You have been unassigned to this issue successfully." |
| 36 | + |
| 37 | +######################## Issue Opened ######################## |
| 38 | + |
| 39 | +# If the user who opened issue is NOT a maintainer of the repo |
| 40 | +issue-opener-not-maintainer: "Thank you for opening this issue. Maintainers will check and approve if seems to be useful." |
| 41 | + |
| 42 | +# If the user who opened issue IS a maintainer of the repo |
| 43 | +issue-opener-is-maintainer: "Comment '@{name} claim' to get this issue assigned or '@{name} abandon' to get this issue unassigned." |
0 commit comments