How to link issues and releases in a project table #60935
Replies: 3 comments 1 reply
-
|
I would like to see such capability as well. I want to see the board items by release and for that I would like to add the release to each of the issues/prs on the board So far my ideas was quite manual, just a custom field with sting values of the release versions, but would be great to have more polished approach for this |
Beta Was this translation helpful? Give feedback.
This comment was marked as off-topic.
This comment was marked as off-topic.
-
|
In practice, most teams approximate this workflow by combining milestones, pull request references, and automation. A common pattern is to align milestones with planned releases. When a pull request that fixes an issue is merged, the issue can automatically close if the PR references it. If that PR is included in a release branch or tag tied to the milestone, the milestone effectively becomes the indicator of the release in which the fix ships. For additional visibility in a project table, many teams add a custom field such as “Release Version” or “Fixed In” and populate it through automation. This can be done with GitHub Actions or scripts that update the field when a PR associated with the issue is merged into a release branch. That way the project view can show status, bug label, and the release version in one place. Workflows like this become even more valuable when stakeholders want to track defects from discovery through validation and release. Pairing issue tracking with structured QA workflows and software test management tools can help ensure bugs are not only fixed in code but also verified and documented before being associated with a specific release. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Select Topic Area
Product Feedback
Feature Area
Projects
Body
How can I automate a bug tracker which includes the release (if any) that fixes the bug?
I would like an extra column in my table view which indicates the release tag / name that includes the bug fix for an issue. How can I achieve this?
I can get "bug" issues by labelling them as such. In addition to the status column (todo, in-progress, done) I'd like to display which release the bug is resolved in (if any).
There is the milestone column which can get added, but it requires manually creating the milestone and managing each issue to include it and isn't directly the equivalent of a release. Is there an easy way to automate this or to get a release-like column without doing it manually?
I've managed to create a new milestone each time I create a release, however its been impossible to track which issues should be linked to the new milestone. Is there a somewhat reasonable way of achieving this?
I'd like to have a project view in which clients can track bugs and the release in which they are fixed (and not just when they're fixed in dev).
Guidelines
Beta Was this translation helpful? Give feedback.
All reactions