Feature Request: Search GitHub Actions Runs by Workflow Run Name #202191
Replies: 2 comments 1 reply
-
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
Beta Was this translation helpful? Give feedback.
-
|
+1 on this, dynamic While you wait on the UI feature, there's a workaround that already works today because the API does expose the resolved run name. The list-runs endpoint returns # find runs whose resolved run-name contains "billing-service"
gh api "repos/OWNER/REPO/actions/runs?per_page=100" \
--jq '.workflow_runs[] | select(.display_title | test("billing-service")) | {id, display_title, status, conclusion, html_url}'Swap the Not a replacement for proper search in the Actions tab, but it should unblock the "I need to find that one deploy run right now" case until the real filter lands. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
🏷️ Discussion Type
Product Feedback
💬 Feature/Topic Area
Workflow Deployment
Discussion Details
Problem
GitHub Actions run history can currently be filtered by actor, branch, status, and event. However, there is no way to search workflow runs by their displayed run title (run-name).
Many organizations use dynamic run names to embed deployment metadata such as environment, component, version, branch, region, or release identifier. In repositories with large deployment volumes, locating a specific run requires manually paging through workflow history, which slows down troubleshooting and deployment tracking.
For example:
Resulting run titles might look like:
Currently, there is no way to search for:
directly from the Actions run history.
Proposed Solution
Add support for searching and filtering workflow runs using the resolved run-name value.
Examples:
Or simply include run-name content in the existing Actions search functionality.
Benefits
Beta Was this translation helpful? Give feedback.
All reactions