-
Notifications
You must be signed in to change notification settings - Fork 1
/
series.example.yaml
33 lines (33 loc) · 1.62 KB
/
series.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
### The series (plural) you want to be tracked
### Each series entry should have a - followed by these parameters:
### title: a string guaranteed to be in every post of the series
### author: the author of the series (has to be the same every post)
### regex (optional): regex to use in the series (look up online what
### a regex is, or look at the examples)
### min (optional): will ignore values below this one
### max (optional): will ignore values above this one
### goal (optional): highest or lowest (default: highest), whether
### the highest score should be taken, or the
### lowest instead
### ignore (optional): usernames of users who will be ignored in the
### while looking for scores
### ignore_in_reddit_standings (optional):
### usernames of users who will not be posted to the reddit
### scoreboard
### ignore_in_sheets_standings (optional):
### usernames of users who will not be posted to google sheets
### message_with_spreadsheet (optional):
### true/false whether owner should be messaged with a spreadsheet
###
###
### Example:
series:
- title: October Streak Stacker
author: olsnes
regex: \d{1,3}00 # will match 100, 200 ... 9800, 9900
- title: November Streak Stacker
author: olsnes
regex: \d{1,5} # will match # 1, 2 ... 99998, 99999
max: 25000 # will then limit the score to 25000 (what the regex can't do)
min: 0
goal: highest # will maximize the score, so that it matches the regex, but stays within min/max