You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Post a comment, `{{ author }}` is an author placeholder
6
+
comment: hi @{{ author }}
7
+
8
+
wow:
9
+
# Post a comment
10
+
# `{{ args.* }}` is command args placeholder
11
+
# `{{ input }}` is command input placeholder
12
+
comment: wow {{ args.0 }}, and the command args is {{ input }}
13
+
# Reactions to be added to comment
14
+
reactions: ['+1']
15
+
16
+
heated:
17
+
# Lock the thread
18
+
lock: true
19
+
# Set a lock reason, such as `off-topic`, `too heated`, `resolved` or `spam`
20
+
lockReason: too heated
21
+
# Reactions to be added to comment
22
+
reactions: ['eyes', 'heart']
23
+
# Post a comment
24
+
comment: The thread has been temporarily locked.
25
+
26
+
unheated:
27
+
# Unlock the thread
28
+
unlock: true
29
+
30
+
label:
31
+
label:
32
+
# Add custom label
33
+
- static-label
34
+
# Space separated labels
35
+
- 'label-1 label-2'
36
+
# Add labels from args
37
+
- '{{ args.0 }}'
38
+
- '{{ args.1 }}'
39
+
- '{{ args.2 }}'
40
+
41
+
unlabel:
42
+
label:
43
+
# Remove custom label
44
+
- -static-label
45
+
# Remove labels from args
46
+
- '-{{ args.0 }}'
47
+
- '-{{ args.1 }}'
48
+
- '-{{ args.2 }}'
49
+
relabel:
50
+
label:
51
+
# Remove all labels
52
+
- -*
53
+
# add label from args
54
+
- '{{ input }}'
55
+
56
+
handover:
57
+
# handover issues/PRs to the given users
58
+
assign:
59
+
- '-*'# first remove all the old assignees
60
+
- '{{ input }}'
61
+
assign:
62
+
# assign issues/PRs to Jhon and the given users
63
+
assign:
64
+
- Jhon
65
+
- '{{ input }}'
66
+
67
+
# Optionally, specify commands just for issues
68
+
# --------------------------------------------
69
+
issues:
70
+
pin:
71
+
# Pin the issue
72
+
pin: true
73
+
74
+
unpin:
75
+
# UnPin the issue
76
+
unpin: true
77
+
78
+
feature:
79
+
# Close the issue
80
+
close: true
81
+
# Post a comment, `{{ author }}` is an author placeholder
82
+
comment: >
83
+
:wave: @{{ author }}, please use our idea board to request new features.
84
+
85
+
86
+
needs-more-info:
87
+
# Close the issue
88
+
close: true
89
+
# Post a comment, `{{ author }}` is author placeholder
90
+
comment: >
91
+
@{{ author }}
92
+
93
+
In order to communicate effectively, we have a certain format requirement for the issue, your issue is automatically closed because there is no recurring step or reproducible warehouse, and will be REOPEN after the offer.
94
+
95
+
96
+
# Optionally, specify commands just for pull requests
0 commit comments