forked from customink/stoplight
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservers.yml.example
More file actions
39 lines (35 loc) · 1.38 KB
/
Copy pathservers.yml.example
File metadata and controls
39 lines (35 loc) · 1.38 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
# To get started, copy this file to `config.yml` and then use one of
# the configurations below to point it at your build server. You'll
# need to include the line starting with a '-'. That's how the config
# files knows it's a list.
# The `projects` and `ignored_projects` options are optional. By default, Stoplight
# will use all projects returned from the given url. If you want to blacklist,
# use `ignored_projects`. If you want to whitelist, use `projects`.
#
# The `culprits` option is false by default. If enabled, it will provide
# show the gravatars of the user's who broke the builds. However, for most
# providers, this entails making additional HTTP request, which can slow
# Stoplight's performance.
# Example Jenkis configuration
# -
# type: 'jenkins'
# url: http://ci.jenkins.org/cc.xml
# username: my_username
# password: my_password
# culprits: false
# projects:
# - mail # build named "mail"
# - /^test/ # all builds starting with "test"
# ignored_projects:
# - not_me # ignore the project named "not_me"
# Example Travis configuration
# -
# type: 'travis'
# url: http://travis-ci.org/repositories.json
# owner_name: my_projects # usually your github username
# culprits: true
# projects:
# - mail # build named "mail"
# - /^test/ # all builds starting with "test"
# ignored_projects:
# - not_me # ignore the project named "not_me"