CARVIEW |
Navigation Menu
Sub-issues Public Preview (Opt In roll out) #139932
-
Feedback wantedThank you for participating in the sub-issues public preview. Please leave your feedback below on what is working well, any bugs you encounter, and what else youβd like to see! To provide your feedback on other experiences released at the same time, please visit:
Sub-issuesSub-issues are designed to help you group and manage your issues with a parent/child relationship into a hierarchy. Adding sub-issuesAny existing issue, where you have write access or above, will now have a 'create sub-issue' option, you can also use the drop down to opt to create an existing issue instead: Alternatively, you will notice a new relationship section on the sidebar, allowing you to add from a child to a parent. Viewing sub-issuesAs you create sub-issues, you will start building a nested hierarchy of issues under your opening comment. Clicking one of these issues now allows you to explore them directly from the main issue page via a slide out panel, making it easy to add a comment or update meta-data without losing context. Working with sub-issues in projectsWe have a couple of new fields in projects, And We will also shortly release a new workflow to keep a all child issues synced with a project which the parent already belongs to. WebhooksSub-issue webhooks can be enabled at the repository or organization level and can be enabled/disabled separately from issue events. Webhook events are now fired for the following actions:
GraphQL APISub-issues can also be managed via the GraphQL API. Note that these requests will need to include the Click to view Fields and MutationsFieldssubIssuesSummarySummary of the state of an issue's sub-issues query summary {
node(id: "I_123") {
... on Issue {
subIssuesSummary {
total
completed
percentCompleted
}
}
}
} parentThe parent entity of the issue. query parent {
node(id: "I_456") {
... on Issue {
parent {
title
}
}
}
} subIssuesA list of sub-issues associated with the Issue. query subIssues {
node(id: "I_123") {
... on Issue {
subIssues(first: 10) {
nodes {
title
}
}
}
}
} MutationsaddSubIssueAdds a sub-issue to a given issue If you'd like to replace the exist parent of a sub-issue, provide mutation addSubIssue {
addSubIssue(input: { issueId: "I_123", subIssueId: "I_456" }) {
issue {
title
}
subIssue {
title
}
}
} removeSubIssueRemoves a sub-issue from a given issue mutation removeSubIssue {
removeSubIssue(input: { issueId: "I_123", subIssueId: "I_456" }) {
issue {
title
}
subIssue {
title
}
}
} reprioritizeSubIssueReprioritizes a sub-issue to a different position in the parent list. mutation reprioritizeSubIssue {
reprioritizeSubIssue(
input: { issueId: "I_123", subIssueId: "I_456", afterId: "I_789" }
) {
issue {
title
}
}
} Sub-issue limitsA couple of limits we have implemented that we would love feedback on:
Next StepsWe would love your feedback on sub-issues and the new issues experience in general as your try it out! Please let us know what you think! π |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 54 -
π 11 -
π 4
Replies: 130 comments · 231 replies
-
Can sub-issues reference issues in other repos, or is it like sub-tasks (tracked issues feature) limited to issues in the same repo? Are sub-issues replacing tasks-lists? Update: We now have the beta enabled and I can confirm that sub-issues can be cross-repo. Actually, clarifying how sub-issues relate (or not) to task-lists would be useful. We have the beta enabled now and I think I'm noticing some changes (for the better) to how task-lists show up, e.g. the sub-tasks in the issue header seems to have gone, but the "tracked by" in the child task is still there. There's also overlap now between parent issues (which you can now group-by and slice-by in project views) and Milestones as a mechanism for grouping issues. The biggest differences being:
|
Beta Was this translation helpful? Give feedback.
All reactions
-
π 2
-
How did you get this to work? When I try to add a parent to an existing issue, only the issues within the same repo are available to me. |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 1
-
Poderia ter na parte de subissues, os status e a coluna que constam cada uma delas |
Beta Was this translation helpful? Give feedback.
All reactions
-
five qubits built in the circuits, but the function of SparsePauliOp is representing IIZZ in the code which just has four qubits |
Beta Was this translation helpful? Give feedback.
All reactions
-
I didn't see an answer to this and am having the same problem. I can't figure out how to add sub-issues that are from another repo. |
Beta Was this translation helpful? Give feedback.
All reactions
-
cross-repo sub-issues within the same organization are supported. by default, the dropdown will show issues from the same repo. if you hit the back button in the header, you'll be taken to a repo picker. the options that appear will be your top repos by a certain criteria, but you can search for others. then proceed with selecting the desired repo and you'll see the issues dropdown for that repo. |
Beta Was this translation helpful? Give feedback.
All reactions
-
The parent issue title is not parsed correctly in table view, as text wrapped in backticks (`) isnβt rendered as code: ![]() |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 2 -
π 1
-
Thanks for reporting! This is a known bug, and we have it in our backlog to fix soon. |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 1
-
One benefit of Tasklists was that you can track one issue in multiple "parent" issues, going back to only allow one parent issue is not great. Would love to see that an issue can have n parent issues. |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 3 -
π 2 -
β€οΈ 2
-
This would be a game changer for us! We use issues to document and keep track of client requests. In all honesty, I'd love a way to create a custom field with multi-select capabilities. |
Beta Was this translation helpful? Give feedback.
All reactions
-
To be honest, I am trying to understand what the difference between a parent or child issue really is for. Does the intent of a parent relationship mean that it is a dependency and needs to be completed first? I feel like can use a sub-issue to mean a dependency as well. |
Beta Was this translation helpful? Give feedback.
All reactions
-
The dependency example was the first use case that came to my mind when I saw we only have one parent here. Having multiple parents could enable advanced features like:
I know we go a little bit in the Jira direction here but that one would enable new features like blocking dependant issues as long as it has unclosed dependencies. Right now we go the lightweight way and define dependencies using a task list on top of the issue description. |
Beta Was this translation helpful? Give feedback.
All reactions
-
To try and give a concrete example. We have a pile of issues that relate to a product orientated decision to improve software - e.g. improve logging, that has a sub-issue that related to centralising and protecting logs. This bit of the tree also relates directly to a compliance need that we learned about after the logging improvement epic started. It's useful to associate the centralised logging with the epic and the compliance issue. Two different sources for the same need. Not all logging improvement are a compliance related thing, and not all compliance tasks are logging. There are two roots to the motivation for a common subtree. |
Beta Was this translation helpful? Give feedback.
All reactions
-
I also find it quite limiting to only be able to associate a single issue with one parent max. I use parent issues mostly to categorize "big" features / products within our repository. But it could also be a huge task list, like "refactoring payment integrations". So a single issue like "Refactor Stripe" might be associated with the parent issue "Payments" (which is the product where we are tracking different payment related features) but at the same time should also be associated with the "Refactoring payment integrations" issue where we would track all payment integrations including this one that need to be refactored. |
Beta Was this translation helpful? Give feedback.
All reactions
-
I'm a little surprised that PRs can't be added as sub-issues. I mean I suppose it's in the name sub-issues, but especially when it comes to project views, it feels like it'd be very fitting for the PRs to be located alongside/as a sub of the issue they're closing. |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 2
-
Thanks for the feedback, @dylanpiera! This is something we're monitoring feedback on during the public preview period. |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 1
-
This debate comes up a lot for us, the ability to put so much detail in PRs means they can end up also tracking work, especially if the PR needs lots of changes. The key difference being that issues happen before work, PR's usually only appear after work is close to ending (in theory). |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 1
-
We frequently get OSS contributions that start as PRs. This does encourage tracking PRs much like issues. |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 2
-
In our team we also think that for light-weight PRs having to create a separate issue just to track it in the parent issue is an unnecessary and distracting overhead. |
Beta Was this translation helpful? Give feedback.
All reactions
-
PRs can already be linked to issues, indeed even cross-repo, via the "Development" section. I suppose a valid question is whether there's a need for two different ways to relate PRs to issues? I'd prefer a more unified version of "Relationships". |
Beta Was this translation helpful? Give feedback.
All reactions
-
It doesn't look like sub-issue creation allows for selecting an issue template/form. Is that something being considered? |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 1 -
π 1
-
I think I saw a select field when creating a new sub-issue, however not sure if that allows to choose from all templates. |
Beta Was this translation helpful? Give feedback.
All reactions
-
When creating a sub-issue, you should be prompted to select the template/form based on the repository selected. Is it possible you're selecting a repository that doesn't have any associated templates or forms? |
Beta Was this translation helpful? Give feedback.
All reactions
-
Yes, I see that now, sorry. I was getting ahead of myself reading the documentation before I actually had a chance to try it out. Fantastic, it's exactly what I was hoping to see. |
Beta Was this translation helpful? Give feedback.
All reactions
-
β€οΈ 1
-
I'd love to be able to see repo names in sub-issue lists. |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 1
-
Noted! We're trying to find the right balance between keeping the sub-issues decluttered and showing metadata, so good to know that repo names is important. I'll keep monitoring to see how strongly others need this as well. |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 3
-
Agree. This looks like a mess without repo names. ![]() |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 1
-
Here's an even better example β it's pretty obvious when you look at it: ![]() |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 2 -
π 2
-
@evi-liu the balance could be: show them if there's more than one, but hide if all are the same repo as the parent issue? |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 10
-
Everything will be good. |
Beta Was this translation helpful? Give feedback.
All reactions
-
I commonly create "roadmap" issues that contain a variety of "issues" which are really sub-issues. It is incredibly productive to use Proposal: provide a mechanism for me to rough out an issues list like so, and then create sub issues from them instead of issues.
|
Beta Was this translation helpful? Give feedback.
All reactions
-
π 2 -
π 1
-
This was one of the nice use cases with the Along with being able to reference PRs noted by https://github.com/orgs/community/discussions/139932#discussioncomment-10821434 |
Beta Was this translation helpful? Give feedback.
All reactions
-
Thanks for the feedback, y'all! This is a common feature request, and we are looking to bring markdown checklist to sub-issues conversion capability! |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 4 -
β€οΈ 16
-
I really like the sub-issue feature but his is my biggest annoyance. Converting a task list item into an issue automatically makes the new issue "tracked by" the parent ticket but doesn't make it a sub-issue of the parent, which seems like an obvious thing it should do. Having to manually then add the new issue as a child is tedious. |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 3
-
I really liked the simplicity of tasklists for this. Creating whole new issues for each item seem like massive overkill. I hope tasklists continue to be a thing (and it would be great to get the add button back or a create tasklist option included in the new sub-issue button/menu) |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 4
-
I think that everything will be good. |
Beta Was this translation helpful? Give feedback.
All reactions
-
β€οΈ 1
-
First of all, THANK YOU. SO awesome. One thing - I love that I can link existing issues to parents/children. That said, it would be awesome if, when I choose link existing, I could just paste in the link to the issue (either full GitHub url or org/repo#xx) and it surfaces that immediately (or just saves). Lots of times I have the link handy from another tab/location and this would make navigating that much easier. |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 1
-
Hi @kressaty, this should already be working, where you're able to copy a URL to add as a sub-issue. Could you send a screenshot or gif of this not working? We can take a look. |
Beta Was this translation helpful? Give feedback.
All reactions
-
It does appear to be working now; initially it wouldn't "search" outside the issue's repo but all is good now! |
Beta Was this translation helpful? Give feedback.
All reactions
-
I'd find it useful to be able to configure the filter for the default issue list and count. I'd like to be able to omit issues with a parent (sub-issues) from the default view. Using sub-issues as a way to build up the tasks for a larger feature is something useful, but it's very noisy to have a lot of sub-issues polluting the default view. At the same time, it's very useful to have them show up in search and have their own issues for implementation discussion. |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 1
-
We've been using two boards for this kind of separation, parents on one higher level planning board, with sub-issues on the "work" board. Related to your comment, being able to manage which project sub-issues are created on (whether same as parent or not) would be useful. |
Beta Was this translation helpful? Give feedback.
All reactions
-
Try |
Beta Was this translation helpful? Give feedback.
All reactions
-
When I am inside a parent issue, and I would like to add sub-issues, I have the option to click |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 1
-
I just found a quicker way of achieving this for now. When opening up a project, you can add the |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 1
-
I would really like to have this option enabled on the Project only issues. The use case is to have a cross repo issue as a parent which should not get converted to the repo issue. Now sub-isssues are only available in the repo issues |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 1
-
We have a dedicated no-code repo that we use to "own" the parent issues. |
Beta Was this translation helpful? Give feedback.
All reactions
-
Please allow migration/conversion of Tasks lists to parent/sub-issues!
It's quite tedious to manually move every single issue to have a parent relationship. Related: https://github.com/orgs/community/discussions/39106#discussioncomment-10831691 |
Beta Was this translation helpful? Give feedback.
All reactions
-
Apologies for the tedious manual conversion. To be super transparent, we've seen tasklists usage steadily decline while sub-issues continues to grow. Consequently, it's looking less and less worth it for us to invest in a tasklists migration path (compared to improving other sub-issues enhancements, such as other top voted requested mentioned above). For now, I'd recommend using the keyboard shortcuts to help speed up the migration process. |
Beta Was this translation helpful? Give feedback.
All reactions
-
Wouldn't https://github.com/orgs/community/discussions/139932#discussioncomment-10835639 this somewhat ease the migration? Just adjust the markdown and be done? |
Beta Was this translation helpful? Give feedback.
All reactions
-
I vote to keep tasklists in addition to sub-issues! They serve different purposes. Tasklists don't need to be issues. I use tasklists for brainstorming when creating a ticket or reminding me what needs to be done - like "make feature flag ticket", "make qa ticket", "get tech lead to fill out technical implementation section", etc. I have also used them to list out which issues are blocking this issue and what issues is this issue blocking. I liked that I didn't need to hit "edit" and find the list in the md each time to add another thing - the WYSIWYG of the tasklist is the part I enjoyed most. Super quick to add a note without having to switch to edit mode. Alternatively having a UI like google docs would also solve this - where you can just type in the rendered description instead of having to switch to an edit mode, search around md code to find the place you are looking for and then save it to see if the md you added looks ok. I know most people using github are coders but as a product owner, I am the one creating the issues and not a coder so having the option of a more user-friendly WYSIWYG would be amazing! |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 2
-
I concur. Task list is very efficient to create because you don't have multiple forms to deal with. I just wish we have "Convert to Sub Issue" in addition to "Convert to Issue". |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 1
-
I like that I can group issues by parent issue on project boards; but is there a way to control which parent issues are allowed to be part of that top-level grouping? Working off of https://github.com/orgs/community/discussions/139932#discussioncomment-10817810 I am a big fan of the idea to use a top-level parent issue as a sort of cross repo milestone. Normally the way I lay out a project I have this sort of hierarchy:
Currently I use milestones as best I can to track a top-level status of projects across my team on a single project board. I was hoping to do the same thing with a top-level project type issue and be able to display a hierarchy of: project issue -> story/bug -> work items. However because the stories and bugs themselves are parent issues I end up with them being top-level groups on the board: I would much rather only see the parent issues grouped by those that are |
Beta Was this translation helpful? Give feedback.
All reactions
-
Really liking the beta! I second CoderNumber1's comment above--while the full hierarchy would be great, expanded |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 1
-
We are doing it the same way: tracking high-level Epics in a Roadmap board and doing the daily work with Issues in a Kanban board. Sub-issues have really transformed the way we can now interconnect these stories nicely, so thanks for all the great work you've put into this! Following up on this thread, we have the same problem: nested sub-issues produce more swimlanes in Group By view than intended, and the important top-level Epics get lost in that view. I might suggest that you could offer "Top level parent issue" in the "Group By" selection, would that be a potential solution? |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 2
-
Loving the feature so far! Was wondering if there's any update on this? |
Beta Was this translation helpful? Give feedback.
All reactions
-
+1, any chance this will ship in Q4? |
Beta Was this translation helpful? Give feedback.
All reactions
-
I am new to the beta, but I love the suggestion from sebastianarnold. I would love to be able to group by "Top level parent issue." I am loving the new functionality. So far, this is the one thing that I would really love to see added/changed. |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 1
-
You can create a sub-issue in a different repository, but you cannot add an existing one from the create sub-issue drop down when viewing an issue. This is a bit limiting. |
Beta Was this translation helpful? Give feedback.
All reactions
-
When selecting ![]() |
Beta Was this translation helpful? Give feedback.
All reactions
-
Thanks. It's not super intuitive, but I can do what I want now. |
Beta Was this translation helpful? Give feedback.
All reactions
-
I run into this every time when linking a PR that fixes an issue. Even though I know that button is there, it feels counter-intuitive. I have the URL on the clipboard, and there's a textfield, I should be able to just paste it, but it doesn't work when the wrong repo is selected. |
Beta Was this translation helpful? Give feedback.
All reactions
-
When clicking the |
Beta Was this translation helpful? Give feedback.
All reactions
-
This is a known bug, and we are looking to resolve it! |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 1
-
Hi. About the sub-issues progress... I wonder if we could choose a status to determine if an issue is done instead of just closed issue being marked as done... on my workflow, a closed issue is only when the issue is in production environment, and sometimes that takes long... I would like to choose a custom status to determine if an subissue is done, such as reaching QA or STAGING environment (which in my case can be inferred by some status). |
Beta Was this translation helpful? Give feedback.
All reactions
-
We're using Project "Status" fields, which by default are also the column indicators in the Board view for this. What is missing from this approach though is a state machine to allow or disallow certain transitions (e.g. there's no enforcement of having to visit a column - QA being a good example.). |
Beta Was this translation helpful? Give feedback.
All reactions
-
@probitcarwyn I couldn't reproduce what you said. I mean, I thought the criteria to consider a sub issue as completed, is the issue being closed as completed (maybe even closed as not planned or just "closed"). If the last "status" is used for this (in my case the equivalent of "Done") it wouldn't be enough because maybe I want a previous status to consider the sub issue as completed, as we mentioned, status "QA" or any other status. Maybe my use case is super specific, but I think an issue can travel through a lot of status before getting closed, and we can't sense the real progress of the sub issues if we don't change the criteria |
Beta Was this translation helpful? Give feedback.
All reactions
-
Managing dailies with Jira Cloud is easy because you see the User Stories and tasks in a single view. With GitHub projects and the board view you don't know what's the status of each task without entering in each US. |
Beta Was this translation helpful? Give feedback.
All reactions
-
Hi, how can we select which properties the sub-issues should inherit? Such as project, version and so on? Thanks |
Beta Was this translation helpful? Give feedback.
All reactions
-
we don't have that functionality yet, but it is in our backlog to support inheriting a parent's metadata by default when creating a sub-issue. |
Beta Was this translation helpful? Give feedback.
All reactions
-
Hi, I recently joined the waitlist for the public beta for my organization ( |
Beta Was this translation helpful? Give feedback.
All reactions
-
Hi. I just encountered a strange behavior: I had a sub-issue which I assigned a Milestone in order to see it in my Project Roadmap. The sub-issue did not show up. Is this intended? I then removed the parent, thinking I was promoting the sub-issue to a "regular" issue and expecting to see it in my roadmap, but it did still not show up. I tried removing and reapplying the Milestone without effect. Edit: Is this desired? In this case it certainly felt weird. |
Beta Was this translation helpful? Give feedback.
All reactions
-
we have an item in our backlog for sub-issues inheriting a parent issue's metadata by default. in the meantime, you could use the automated sub-issues workflow for your project. this does 2 things: first, when enabled, it will automatically import all sub-issues of all parents currently in your project, and second, moving forward, newly added sub-issues of issues in your project will be automatically added to the project as well. |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 1
-
Hi again. Another piece of feedback: I was working on a sub-issue and realized I needed another sub-issue on the same parent - a sibling issue. I intuitively looked under Relationships to see if there might be a shortcut for this. What do you think about having such a shortcut? It's not like it would save me a lot of clicks, but intuitively it felt like it was missing in the context of parent-sub relationships. |
Beta Was this translation helpful? Give feedback.
All reactions
-
to clarify, do you mean you were looking at a sub-issue, and wanted to add another sub-issue to its parent from the context of that sub-issue? and would like to have some sort of shortcut for that rather than navigating to the parent itself and adding the new sub-issue there? |
Beta Was this translation helpful? Give feedback.
All reactions
-
That's correct. |
Beta Was this translation helpful? Give feedback.
All reactions
-
I'm embarking on an attempt to bring a lot of our scattered feature planning into github and would love to test/use sub-issues for the task, any way I can get my access request granted? (haven't received an email yet - "ClassGenius" organization) |
Beta Was this translation helpful? Give feedback.
All reactions
-
@evi-liu Is there an expected release date for this (that is, non-beta)? I do understand that this could be a moving target. |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 3
-
Task lists could be used for issues linked across different organizations/suborganizations. Is there a plan to allow this for sub-issues? Seeing this fail with "A sub-issue must belong to the same organization or user as the parent". |
Beta Was this translation helpful? Give feedback.
All reactions
-
it hasn't been planned or prioritized at the moment, since allowing this does have additional implications, but we do have it flagged in our backlog for consideration. |
Beta Was this translation helpful? Give feedback.
All reactions
-
Question: Why is the |
Beta Was this translation helpful? Give feedback.
All reactions
-
π the id is required because the REST API for adding a sub-issue is specifically for adding an existing issue as a sub-issue. in the UI we support creating a new issue as a sub-issue, but that effectively does the same thing -- creates an issue, and then adds that issue as a sub-issue. |
Beta Was this translation helpful? Give feedback.
All reactions
-
Ah I understand. Thank you! |
Beta Was this translation helpful? Give feedback.
All reactions
-
Could the docs be updated to reflect that? The current doc is similar to the issue API doc and implies that you create a sub-issue the same way you create an issue, which is confusing. |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 1
-
I noticed that when adding sub-issues, other repositories don't appear in the dropdown list until you search for them. This led to a bit of confusion within one of my organizations (we assumed it was a permission issue). I think showing a list of repositories by default would be a good idea (maybe the most frequently updated ones?) |
Beta Was this translation helpful? Give feedback.
All reactions
-
the dropdown will show issues from the parent issue's repository by default, but you can click the back button in the dropdown header to select a different repository to then populate the dropdown with its issues. |
Beta Was this translation helpful? Give feedback.
All reactions
-
I'm trying to say that after clicking the back button, the list of repositories only shows one repository (i.e. the one containing the parent issue), requiring use of the search bar to find other repositories. |
Beta Was this translation helpful? Give feedback.
All reactions
-
ah I see, I misunderstood. we do query for your top repositories to generate that list, but I think the "top" depends on your personal contributions to the repo and/or if you created the repo. I'm not sure how the contributions are measured exactly though, I'm assuming some combination of issue/pull request engagement |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 1
-
I noticed an issue with the "Quote reply" feature when using sub-issues. To reproduce:
Expected behavior:
Actual behavior:
|
Beta Was this translation helpful? Give feedback.
All reactions
-
oh weird, thanks for reporting! |
Beta Was this translation helpful? Give feedback.
All reactions
-
Your issue for issue dependencies was closed with a forwarding issue (eventually ending up here), but I can't find any other reference to this in the issue it links to, or here which is linked therefrom. What happened to that feature? |
Beta Was this translation helpful? Give feedback.
All reactions
-
Thank you all for taking the time to share your feedback in this thread. πββοΈ Weβre excited to announce that we have expanded the roll out and made meaningful updates that we believe will enhance your experience. This is a direct reflection of the conversations weβve had here, and weβre grateful for your role in this process. As part of this rollout, weβve created a new feedback discussion to gather your thoughts on the latest updates and ensure we continue to improve. If youβve already shared your experiences here, weβve taken your feedback on board. However, if you feel there are points worth revisiting or emphasizing, we encourage you to highlight them again in the new discussions to keep the conversation fresh and relevant. We look forward to hearing more of our users exploring the evolution of GitHub issues and sharing their thoughts in the new threads! See you there. π |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 2
-
If I am running github enterprise server how can I get these features? |
Beta Was this translation helpful? Give feedback.
All reactions
-
π 2
-
How can I disable this? |
Beta Was this translation helpful? Give feedback.
Thank you all for taking the time to share your feedback in this thread. πββοΈ Weβre excited to announce that we have expanded the roll out and made meaningful updates that we believe will enhance your experience. This is a direct reflection of the conversations weβve had here, and weβre grateful for your role in this process.
As part of this rollout, weβve created a new feedback discussion to gather your thoughts on the latest updates and ensure we continue to improve. If youβve already shared your experiences here, weβve taken your feedback on board. However, if you feel there are points worth revisiting or emphasizing, we encourage you to highlight them again in the new discussions to kβ¦