Instead of scripting the git configuration, use tasks in pre playbooks for the jobs. We use different settings for tag-releases and propose-constraint-updates. Change-Id: Id3713d89a8b2af821de41a146954be551337cf75 Signed-off-by: Doug Hellmann <doug@doughellmann.com>
18 lines
473 B
YAML
18 lines
473 B
YAML
- hosts: all
|
|
pre_tasks:
|
|
- name: Install git-review
|
|
command: pip install git-review
|
|
become: yes
|
|
roles:
|
|
- role: configure-git
|
|
git_config:
|
|
user.name: OpenStack Proposal Bot
|
|
user.email: openstack-infra@lists.openstack.org
|
|
gitreview.username: proposal-bot
|
|
- legacy-copy-project-config-scripts
|
|
- add-sshkey
|
|
- role: bindep
|
|
bindep_profile: test
|
|
bindep_dir: "{{ zuul.project.src_dir }}"
|
|
- ensure-tox
|