-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit_mail_notifier_config.yml.sample
More file actions
53 lines (39 loc) · 1.6 KB
/
Copy pathgit_mail_notifier_config.yml.sample
File metadata and controls
53 lines (39 loc) · 1.6 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Comma-separated list of recipient email addresses
recipients: ""
# Sender email address (optional, defaults to no-reply@nodomain.com)
from: ""
# Space-separated list of branches to monitor for changes
# If empty, all branches are monitored
include_branches: ""
# Space-separated list of branches to ignore
# This option takes precedence on include_branches
exclude_branches: ""
# Regexp monitored files have to match to be included in the mail
# e.g. include_matches: "csv$" for csv files
include_matches: ""
# Placeholders REPO_NAME and BRANCH_NAME will be substituted with the names of
# the repository and the branch respectively.
# FILE_NAMES will be substituted with the list of files included in the
# archive, each one on a single line.
# This will be sent as the mail body in a standard push.
subject: "New CSV for REPO_NAME"
# This will be sent as the mail body in a push creating a new branch.
subject_new_branch: "New CSV for REPO_NAME"
# This will be sent as the mail body in a standard push.
body: |
One or more CSV files have been updated in the REPO_NAME repository (BRANCH_NAME branch).
They are attached to this mail as a compressed ZIP archive.
These are the modified files:
FILE_NAMES
These are the modifications:
FILE_DIFFS
---
# end of body
# This will be sent as the mail body in a push creating a new branch.
body_new_branch: |
A new branch named BRANCH_NAME has been created on repository REPO_NAME.
The CSV files contained in the branch are attached to this mail as a compressed ZIP archive.
These are the modified files:
FILE_NAMES
---
# end of body_new_branch