forked from open-mpi/ompi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgitdub-config.yml
101 lines (81 loc) · 3.13 KB
/
gitdub-config.yml
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
gitdub:
# The directory where gitdub keeps its per-repository state.
directory: .gitdub
# Bind to all addresses by default.
bind: 0.0.0.0
# The TCP port to listen on.
port: 8888
# SSL options. Relative paths names have to be specified relative to the
# above directory.
ssl:
enable: false
cert: /path/to/gitdub.crt
key: /path/to/gitdub.key
# Only process POST requests from the these IP addresses (optioanl). If empty
# or not set, gitdub processes requests from all addresses.
#
# Github only.
#allowed_sources: [207.97.227.253, 50.57.128.197, 108.171.174.178]
#
allowed_sources: []
# Flag that determines whether the first arriving data results in sending
# emails. If false, gitdub sends out an email for every single commit since
# the repository creation. If true, the first arriving data only marks all
# existing commits as emailed without actually sending a notice.
silent_init: false
# The interval in seconds of how often to check the file for modifications.
# If the modification time of the configuration file is new than the time it
# was read last, gitdub re-reads all configuration values except for bind,
# port, and ssl.
monitor: 0
notifier:
# The email sender. (Can be overriden for each repository.)
from: gitdub
# The list of email receivers. (Can be overriden for each repository.)
# The email subject prefix. (Can be overriden for each repository.)
subject: '[git]'
# The github configuration. Each entry represents either a single repository or
# all repositories for a given user/organization name.
github:
- id: open-mpi/hwloc
protocol: ssh # Allowed protocols: git (default), ssh, https
to: [[email protected]]
subject: 'Git: '
- id: open-mpi/hwloc-debian
protocol: ssh # Allowed protocols: git (default), ssh, https
to: [[email protected]]
subject: 'Git: '
- id: open-mpi/mtt
protocol: ssh # Allowed protocols: git (default), ssh, https
to: [[email protected]]
subject: 'Git: '
- id: open-mpi/ompi-www
protocol: ssh # Allowed protocols: git (default), ssh, https
to: [[email protected]]
subject: 'Git: '
- id: open-mpi/docs
protocol: ssh # Allowed protocols: git (default), ssh, https
to: [[email protected]]
subject: 'Git: '
- id: open-mpi/ompi-tests
protocol: ssh # Allowed protocols: git (default), ssh, https
to: [[email protected]]
subject: 'Git: '
- id: open-mpi/ompi
protocol: ssh # Allowed protocols: git (default), ssh, https
to: [[email protected]]
subject: 'Git: '
- id: open-mpi/ompi-release
protocol: ssh # Allowed protocols: git (default), ssh, https
to: [[email protected]]
subject: 'Git: '
- id: pmix/master
protocol: ssh # Allowed protocols: git (default), ssh, https
to: [[email protected]]
subject: 'Git: '
# A wildcard entry that specifies settings for all repositories of a user or
# organization.
#- id: mavam/.*
# subject: '[foo]'
# to: [[email protected]]