-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.example.yaml
26 lines (26 loc) · 1020 Bytes
/
config.example.yaml
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
slack:
# channel to send build notifications to and allow /slash commands from
channel: '#test'
# message template to use for build status
# see templates/README.md
templates:
default: 'default.json'
working: 'working.json'
failure: 'failure.json'
cancelled: 'failure.json'
webhook:
# (Optional) The maximum Content-Length of webhook from slack in bytes (Defaults to 50kb)
max_content_length: 50000
gcloud:
# GCP Project with CloudBuild
project_id: 'my-project'
# GCS bucket to store slackbuild source in
gcs_bucket_url: 'my-bucket'
# alias of strings to triggerId used for /builds trigger <alias> <branch>
triggers:
# you can find the triggerId by clicking on your trigger here
# https://console.cloud.google.com/cloud-build/triggers/
testrepo: "12345678-9012-3456-7890-123456789012"
# only used to generate links to revisions for message templates
# base url to your account/orgaization where repos with cloudbuilds live
github_url: 'https://github.com/you'