Abacn commented on code in PR #28615:
URL: https://github.com/apache/beam/pull/28615#discussion_r1334429132


##########
.test-infra/metrics/sync/github/sync_workflows.py:
##########
@@ -134,13 +134,11 @@ def fetchWorkflowData():
                 workflows.append(workflowsPage)
         for pageItem in workflows:
             for item in pageItem:
-                path =item['path']
-                isPostCommit = re.search('(.*)postcommit(.*)',path)
-                if isPostCommit:
-                    result = re.search('/(.*).yml', path)
-                    path =(result.group(1)) + ".yml"
-                    workflowObject = Workflow(item['id'],item['name'],path)
-                    WORKFLOWS_OBJECT_LIST.append(workflowObject)
+                path = item['path']
+                result = re.search('/(.*).yml', path)
+                path = (result.group(1)) + ".yml"
+                workflowObject = Workflow(item['id'],item['name'],path)
+                WORKFLOWS_OBJECT_LIST.append(workflowObject)
             url = "https://api.github.com/repos/apache/beam/actions/workflows/";
             queryOptions = { 'branch' : 'master', 'per_page' : 
GH_WORKFLOWS_NUMBER_EXECUTIONS,

Review Comment:
   our phrase trigger implementation also runs the workflow firstly on master - 
then checkout the PR inside the workflow, and might be reported as master. Is 
it able to make the query to event:schedule only?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to