summaryrefslogtreecommitdiffstats
path: root/config.example.toml
blob: ad30ab129be872d3829bbedcdfc9de57a0a3674f (plain)
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
# This file contains:
#
# ```
#    base          = ""
#    client_id     = ""
#    client_secret = ""
#    redirect      = ""
#    token         = ""
# ```
#
mastodon_data = "./mastodon-data.toml"

# Path to the repository to update
repository_path = "/tmp/test-repo"

# the name of the master branch
master_branch_name = "master"

# the name of the upstream remote
origin_remote_name = "origin"

# How many hours to go back
hours_to_check = 24

# ISO 639-1 code of the language the post is written in (required for mastodon)
status_language = "en"

# Template.
# Available variables:
#  - commits
#  - merges
#  - nonmerges
#
status_template = ''
    In the last 24 hours, there were {{commits}} on master of TEST REPO,
    of which {{merges}} were merges and {{nonmerges}} were direct (and thus potentially breaking) commits to the master branch.
''