-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_config.yaml
35 lines (29 loc) · 1.03 KB
/
example_config.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
# Copy this file and name it "config.yaml"
redmine:
url: ${REDMINE_URL}
version: ${REDMINE_VERSION}
api_key: ${REDMINE_API_KEY}
time_zone: "Europe/Berlin"
issue_closed_status: "Done" # Name of the "closed" status
no_bot_tag: "#nobot" # a tag that signals bot not to handle an issue
actions:
waiting_for_feedback:
start_date: "2021-01-01" # Date from which tickets are to be processed (all tickets from yyyy-mm-dd)
time_range: "14" # Number of days that should be exceeded without updates on the ticket
projects:
- "IT Tickets" # List of redmine projects
status:
- "Waiting for feedback" # List of all issue status you want to treat
close_ticket: true # Should the ticket be closed after the update?
template: "close_ticket" # Template for the update massage
in_revision:
start_date: "2021-01-01"
time_range: "14"
projects:
- "IT Tickets"
status:
- "In revision"
change_status_to: "Waiting for feedback"
template: "nudge_ticket"
logging:
level: "ERROR"