Limit Shippable matrix check to ansible repo.

pull/63023/head
Matt Clay 5 years ago
parent f102705c95
commit ada02f1966

@ -25,6 +25,13 @@ except ImportError:
def main(): # type: () -> None
"""Main entry point."""
repo_full_name = os.environ['REPO_FULL_NAME']
required_repo_full_name = 'ansible/ansible'
if repo_full_name != required_repo_full_name:
sys.stderr.write('Skipping matrix check on repo "%s" which is not "%s".\n' % (repo_full_name, required_repo_full_name))
return
with open('shippable.yml', 'rb') as yaml_file:
yaml = yaml_file.read().decode('utf-8').splitlines()

Loading…
Cancel
Save