Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Quote repo names to ensure valid TOML #580

Merged
merged 1 commit into from Jan 22, 2017
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Quote repo names to ensure valid TOML

Otherwise repos like `download.servo.org`
which contain dots in their name are not parsed correctly;
using quotes ensures the repo name is parsed as a single string.
  • Loading branch information
aneeshusa committed Jan 22, 2017
commit 515a14bc46255e7e0c76f475afcbeabe7587468a
@@ -252,16 +252,16 @@ password = "{{ pillar["homu"]["buildbot-http-pass"] }}"

{% for repo in travis_repos %}

[repo.{{ repo["name"] }}]
[repo."{{ repo["name"] }}"]
owner = "{{ repo.get("owner", "servo") }}"
name = "{{ repo["name"] }}"
reviewers = {{ reviewers + operators + repo.get("extra_reviewers", []) }}
try_users = {{ try }}

[repo.{{ repo["name"] }}.github]
[repo."{{ repo["name"] }}".github]
secret = "{{ pillar["homu"]["gh-webhook-secret"] }}"

[repo.{{ repo["name"] }}.status.travis]
[repo."{{ repo["name"] }}".status.travis]
context = 'continuous-integration/travis-ci/push'

{% endfor %}
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.