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.
13 update_webhook_branchname.py branchName commitId
18 from github
import Github
21 branchName = sys.argv[1]
22 commitId = sys.argv[2]
26 repoList = [
"atlas",
"saber",
"ioda",
"ufo",
"soca",
"fv3-jedi",
"mpas-jedi"]
28 token = os.getenv(
'GIT_PASS',
'...')
30 ownerList = [
"JCSDA",
"jcsda-internal"]
32 oopsRepo = g.get_repo(
"jcsda-internal/oops")
34 for owner
in ownerList:
35 for repoName
in repoList:
37 repo = g.get_repo(f
"{owner}/{repoName}")
38 branchList = list(repo.get_branches())
40 repo.get_branch(branchName)
46 print(branchName +
' exists in '+owner+
'/'+repoName)
47 stageDescription= branchName+
" exists in "+owner+
'/'+ repoName
48 commitStatus = oopsRepo.get_commit(sha=commitId).create_status(
50 description=stageDescription,
51 context=
"Branch Check-"+owner+
'/'+repoName)
53 print(branchName +
' does not exist in '+owner+
'/'+repoName)