-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample_config.yaml
More file actions
36 lines (33 loc) · 1.12 KB
/
example_config.yaml
File metadata and controls
36 lines (33 loc) · 1.12 KB
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
# settings for what to log to the terminal
logging:
# if this is false, the specific types don't matter as nothing is logged
enabled: true
# what actions to log
type:
cloned: true
updated: true
skipped: true
# path to the directory where the repos will be cloned
# if using docker, this needs to be the same in docker-compose.yml and Dockerfile
# set it to /github/repos to use the default for docker
repo_dir: <directory_name>
# language file to use
language_file: language_en
# settings for github
github:
# auth token needs to have full repo permission so private repos can be retrieved
token: <github_token>
username: <user_name>
# settings for pushover to get a notification when the script is finished
pushover:
# user to send the message to
user: <pushover_user_key>
# api token for the app that will be sending the message
api_token: <pushover_app_api_token>
# max character count for a message is 1024, set this to less if you want truncated messages
message_limit: 1024
# which list of repos to include base on the action
notification_type:
cloned: true
updated: true
skipped: true