File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change 1515access_token = os .environ .get ('GITHUB_TOKEN' )
1616
1717g = Github (access_token )
18- repo = g .get_repo ("vkt1414 /ExtensionsIndex" )
18+ repo = g .get_repo ("Slicer /ExtensionsIndex" )
1919
2020logging .info ("Calling slicer cdash api to get the build info for all extensions" )
2121# API data retrieval and processing
5757else :
5858 logging .error (f"Failed to retrieve data. Status code: { response .status_code } " )
5959
60- # Process the CODEOWNERS file
61- # url = "https://raw.githubusercontent.com/vkt1414/ExtensionsIndex/main/CODEOWNERS"
62- # response = requests.get(url)
63- # lines = [line for line in response.text.split('\n') if line]
6460# Read the existing CODEOWNERS file
6561with open ('CODEOWNERS' , 'r' ) as file :
6662 existing_codeowners = [line .strip () for line in file if line .strip ()]
8682
8783data = []
8884
89- pattern = r"/(.*)\.s4ext @( .*)"
85+ pattern = r"/(.*)\.s4ext (@ .*)"
9086
9187for line in lines :
9288 match = re .search (pattern , line )
You can’t perform that action at this time.
0 commit comments