We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b057832 commit c5686e1Copy full SHA for c5686e1
.github/actions/testing_report_generation/app.rb
@@ -107,6 +107,9 @@ def get_workflows(client, repo_name)
107
end
108
109
workflow_text = "[%s](%s)" % [wf.name, wf.html_url]
110
+ # If the below request 404s, it may be because the repo doesn't own that workflow (e.g.
111
+ # `dependabot-updates`). In these cases, add the workflow to the `EXCLUDED_WORKFLOWS` env
112
+ # var that's set in `.github/workflows/generate_issues.yml`.
113
runs = client.workflow_runs(REPO_NAME_WITH_OWNER, workflow_file, :event => "schedule").workflow_runs
114
runs = runs.sort_by { |run| -run.created_at.to_i }
115
latest_run = runs[0]
0 commit comments