Created
September 6, 2014 07:20
-
-
Save smichaelsen/a83fec5fcd271978a756 to your computer and use it in GitHub Desktop.
Gitlab CI application.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defaults: &defaults | |
allowed_gitlab_urls: | |
# Replace with your gitlab server url | |
- 'https://gitlab.app-zap.de/' | |
## Gitlab CI settings | |
gitlab_ci: | |
## Web server settings | |
host: gitlab-ci.app-zap.de | |
port: 443 | |
https: true | |
## Email settings | |
# Email address used in the "From" field in mails sent by GitLab-CI | |
email_from: [email protected] | |
# Email address of your support contact (default: same as email_from) | |
# support_email: support@localhost | |
# Default project notifications settings: | |
# | |
# Send emails only on broken builds (default: true) | |
# all_broken_builds: true | |
# | |
# Add committer to recipients list (default: false) | |
# add_committer: true | |
gravatar: | |
enabled: true | |
plain_url: "http://www.gravatar.com/avatar/%{hash}?s=%{size}&d=mm" | |
ssl_url: "https://secure.gravatar.com/avatar/%{hash}?s=%{size}&d=mm" | |
development: | |
<<: *defaults | |
test: | |
<<: *defaults | |
production: | |
<<: *defaults |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment