OOPS
update_webhook_branchname.py
Go to the documentation of this file.
1 #!/usr/bin/env python3
2 
3 # (C) Copyright 2019 UCAR
4 #
5 # This software is licensed under the terms of the Apache Licence Version 2.0
6 # which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7 
8 """
9 Codebuild Runs this script to check for branches with
10 same names accross dependent repos. Then creates a
11 webhook on PR page to notify users if such a branch exists.
12 Call as:
13 update_webhook_branchname.py branchName commitId
14 """
15 
16 import os
17 import boto3
18 from github import Github
19 import sys
20 
21 branchName = sys.argv[1]
22 commitId = sys.argv[2]
23 
24 
25 # check other repos
26 repoList = ["atlas", "saber", "ioda", "ufo", "soca", "fv3-jedi", "mpas-jedi"]
27 
28 token = os.getenv('GIT_PASS', '...')
29 g = Github(token)
30 ownerList = ["JCSDA", "jcsda-internal"]
31 
32 oopsRepo = g.get_repo("jcsda-internal/oops")
33 
34 for owner in ownerList:
35  for repoName in repoList:
36  branchExists = True
37  repo = g.get_repo(f"{owner}/{repoName}")
38  branchList = list(repo.get_branches())
39  try:
40  repo.get_branch(branchName)
41  except Exception:
42  pass
43  branchExists = False
44 
45  if (branchExists):
46  print(branchName + ' exists in '+owner+'/'+repoName)
47  stageDescription= branchName+" exists in "+owner+'/'+ repoName
48  commitStatus = oopsRepo.get_commit(sha=commitId).create_status(
49  state="pending",
50  description=stageDescription,
51  context="Branch Check-"+owner+'/'+repoName)
52  else:
53  print(branchName + ' does not exist in '+owner+'/'+repoName)