
Create new role for copying common scripts, this includes for now only common.sh. Use this for proposal and translation jobs. In the past we duplicated the file, this allows to have one definition only. Change-Id: I72c14341f511fdaa2c67a3758387afc9445869cc
17 lines
428 B
YAML
17 lines
428 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
|
|
- copy-proposal-common-scripts
|
|
- add-sshkey
|
|
- bindep
|
|
- ensure-tox
|