Replies: 64 comments 9 replies
-
|
You can use the run-name element to dynamically set the workflow run name. It is very limited though as it is only able to access the I came here to make a similar request as this, to be able to rename the workflow run from a job step. My use case is we want to include the version number (which is determined dynamically during the build workflow run) in our build and deployment workflow run names. Having to click into every workflow run to find out which version it is for (assuming you output it in one of your workflow steps) is a real pain. +1 to be able to include arbitrary information in the workflow run name from a job step. |
Beta Was this translation helpful? Give feedback.
-
|
Also looking for this feature to add version number to the run name, or other metadata to a run. |
Beta Was this translation helpful? Give feedback.
-
|
It'd be fantastic if we can use values from reusable workflow's job outputs in the |
Beta Was this translation helpful? Give feedback.
-
|
It's a +1 from me too. We can change the build number in Azure DevOps. I hope we can do it the same for run-name in GitHub Actions. |
Beta Was this translation helpful? Give feedback.
-
|
I am really hoping for this too. For my case, I would be able to dynamically change the
But we have neither ability 😞 . One thing that does save me a little bit of digging as far into the results, based on this technique, was this:
This makes the useful information visible in the call graph, because the new job is showing the useful information in its name. |
Beta Was this translation helpful? Give feedback.
-
|
If the run name is immutable for some reason, having some way to add info to the Actions screen (lets say a 3rd line, after the run name and the automatic details 'Some workflow #62: Commit [02db591 pushed by someone' ) would be great |
Beta Was this translation helpful? Give feedback.
-
|
Yes please, want to see the release version that is determined as part of the run in the run list |
Beta Was this translation helpful? Give feedback.
-
|
A multi-line or wrap-around |
Beta Was this translation helpful? Give feedback.
-
|
+1 on this one.. |
Beta Was this translation helpful? Give feedback.
-
|
+1 on this one. Really looking for this since it is possible in Azure DevOps |
Beta Was this translation helpful? Give feedback.
-
|
+1 |
Beta Was this translation helpful? Give feedback.
-
|
+1 in our project we have a convoluted way of determining the version that is then surfaced as a step output variable, and we'd like to surface that version number in the workflow runs overview. |
Beta Was this translation helpful? Give feedback.
-
|
+1, would love to not need to dig into the different runs to work out which run's for which build. Thanks! |
Beta Was this translation helpful? Give feedback.
-
|
Yes please! Missing this from the good ole' Azure Devops days 😂 |
Beta Was this translation helpful? Give feedback.
-
|
Incredible how many people are requesting this feature across different posts and nowhere there's an answer as to if/when this feature will be available. |
Beta Was this translation helpful? Give feedback.
-
|
+1 |
Beta Was this translation helpful? Give feedback.
-
|
+1... |
Beta Was this translation helpful? Give feedback.
-
|
+1 |
Beta Was this translation helpful? Give feedback.
-
|
+1 |
Beta Was this translation helpful? Give feedback.
-
|
+1 |
Beta Was this translation helpful? Give feedback.
-
|
This would really be useful for us as well - our deployment workflow creates a Change Request reference in ServiceNow, and being able to include the CHG number in the workflow run title would be very helpful. |
Beta Was this translation helpful? Give feedback.
-
|
+1 |
Beta Was this translation helpful? Give feedback.
-
|
+1 |
Beta Was this translation helpful? Give feedback.
-
|
+1 This is the main missing feature from github actions compared to be previous CI/CD tools I've used like jenkins and teamcity. This is one of the main things I am considering right now in our choice of CI/CD platform going forward. |
Beta Was this translation helpful? Give feedback.
-
|
frustrating to come here after a migration to github actions and see it's not possible :/ |
Beta Was this translation helpful? Give feedback.
-
Guys, how the hell are we supposed to know which run build which image?! |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
|
💬 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.
-
|
ooh I have never commented here. Solidly on the backlog for this calendar year. Not before April at this point, but lets see where we get to around then <3 But yes, I am watching and listening here 👀 |
Beta Was this translation helpful? Give feedback.
-
|
You’re correct on all points — and this is a real limitation of GitHub Actions today. Current behavior (as designed)
So if the value you want (for example, a semantic version from GitVersion) is only known during a job, you’re out of luck for naming the run itself. You’re not missing an endpoint or a trick — it simply doesn’t exist. Why this is painful (and you’re right) Your GitVersion example is a perfect illustration:
This makes workflow runs harder to reason about at a glance, especially in active repositories. Common workarounds (none are perfect) 1. Put the version in the job name Job names can be dynamic: This helps inside the run, but the workflow run name remains unchanged in the Actions list. 2. Use run-name with best-effort precomputed values If you can approximate or partially compute the version before jobs start (for example via inputs or tags),
But this doesn’t work for tools like GitVersion that need repository state and execution. 3. Emit the version prominently elsewhere Many teams settle for:
Useful, but still not a replacement for renaming the run itself. Bottom line What you’re asking for is both reasonable and broadly useful, and your analysis is accurate:
If GitHub ever allows:
it would be a meaningful DX improvement. Until then, the limitation is real, and your frustration is justified. |
Beta Was this translation helpful? Give feedback.


Uh oh!
There was an error while loading. Please reload this page.
-
Select Topic Area
Product Feedback
Body
There is the "run-name" which allows an input/constant, but once the workflow jobs starts, you cannot change the workflow name, If the name gets resolved as part of a job action, you are out of luck. There is no api endpoint to rename a workflow run name either. This is very useful. Say you are using GitVersion to resolve the build semantic version, imagine you wanted rename the build to this semantic version. Thanks!
Beta Was this translation helpful? Give feedback.
All reactions