Update CI config for stable-2.2 branch. (#17880)

This commit is contained in:
Matt Clay 2016-10-03 11:39:01 -07:00 committed by GitHub
parent 44faad0593
commit 52173e7707
2 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
[![PyPI version](https://img.shields.io/pypi/v/ansible.svg)](https://pypi.python.org/pypi/ansible)
[![Build Status](https://api.shippable.com/projects/573f79d02a8192902e20e34b/badge?branch=devel)](https://app.shippable.com/projects/573f79d02a8192902e20e34b)
[![Build Status](https://api.shippable.com/projects/573f79d02a8192902e20e34b/badge?branch=stable-2.2)](https://app.shippable.com/projects/573f79d02a8192902e20e34b)
Ansible

View file

@ -230,12 +230,12 @@ def get_role_tags(playbook_path):
return tags
def get_changed_paths(git_root, branch='devel'):
def get_changed_paths(git_root, branch='stable-2.2'):
"""Get file paths changed in current branch vs given branch.
Args:
git_root: The root of the git clone.
branch: The branch to compare against (default: devel)
branch: The branch to compare against (default: stable-2.2)
Returns: List of file paths changed.
"""