Limit Shippable matrix check to ansible repo.
This commit is contained in:
parent
f102705c95
commit
ada02f1966
1 changed files with 7 additions and 0 deletions
|
@ -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…
Reference in a new issue