This repository has been archived by the owner on Jan 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathexample.yaml
88 lines (57 loc) · 2.3 KB
/
example.yaml
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# The Github access token to use for accessing the Github API
token: someVeryLongToken
# The repository on which to work, in the format <username>/<repositoryname>
repo: myuser/myrepository
# Any issues added since that date will be processed
since: 2014-07-27 12:00:00+00:00
# Phrase to search for
phrase: I love cookies
# Label to add to issue if it's invalid
label: incomplete issue
# Grace period after which to close issues that are still invalid
grace_period: 14
# Labels if issues to ignore
ignored_labels:
- request
- support
- question
- misc
- accepted
# Parts of titles of issues to ignore
ignored_titles:
- '[Request]'
- '[Support]'
- '[Question]'
- '[Misc]'
# Past trigger phrases to still consider valid but for which to post a hint that something changed
past_phrases:
- I love brownies
# Reminder to add to incomplete issues
reminder: 'Hi @{author},
It looks like there is some information missing from your ticket that will be needed
in order to diagnose and fix the problem at hand. Please take a look at the [Contribution
Guidelines](https://github.com/myuser/myrepository/blob/master/CONTRIBUTING.md), which
will tell you **exactly** what your ticket has to contain in order to be processable.
I''m marking this one now as needing some more information. Please understand that
if you do not provide that information within the next two weeks (until {until})
I''ll close this ticket so it doesn''t clutter the bug tracker.
Best regards,
~ Your friendly GitIssueBot
PS: I''m just an automated script, not a human being.
'
# Comment to add when closing an issue
closing: 'Since apparently some of the required information is still missing, I''m
closing this now, sorry. Feel free to reopen this or create a new issue once you
can provide **all** required information.
'
# Comment to add to hint people at new phrase
newphrase: 'Hi @{author},
Just FYI, there have been some changes to the contribution guidelines, you are not completely
up to date with your ticket structure :) I''ll still mark this as valid, but please take a moment
to review the new guidelines. Thank you!
Best regards,
~ Your friendly GitIssueBot
PS: I''m just an automated script, not a human being.
'
# Whether to only perform a dry run, without any writing requests against the API
dryrun: false