I would like to list all Workflow Runs in a Repo for only Develop branch.
I am using the below script. It lists workflows in all the branches under a repo. Could you please help modifying it to list only the specific Branch??
for org_repo in REPOS:
repo = g.get_repo(f"{ORG_NAME}/{org_repo}")
workflow_runs = repo.get_workflow_runs()