I use GitHub nearly every day. In general, it's delightful to use and I've been impressed with the rapid pace of improvements, especially as of late.
That said, there's a handful of features that would have a big impact on my day-to-day experience. I'm cataloging them here with the aim of increasing visibility and prompting further discussion.
Disclaimer: It is not my intention that any visual designs be taken literally – I only hope that they may serve as useful source of inspiration.
When viewing commits in the GitHub UI, there's no direct connection to an associated GitHub Release for a given commit. Locating the release for a commit involves too much context switching.
I think it would be helpful if the commit view had a direct links from each commit to its corresponding GitHub Release page. For example, something like the following:
GitHub recently added the ability to filter by file extension when review changes.
Filtering by extension is a great feature, but I find a more common use case is filtering changes by path prefix or directory, which is rather easy with git diff
but is not currently possible from GitHub's code review UI.
This comes up all the time when working in monorepo of packages and you want to isolate changes related to a specific package.
Merge queues such as bors are useful because they ensure landed code always passes CI, but without the substantial inconvenience of the "Require branches to be up to date before merging" feature of protected branches.
However, GitHub's support for programmatic merge workflows is rather lacking. For example, it is not possible to simply disable the manual merge button completely.
When using enforced merge automation, the normal merge button should not appear in the UI (or more optimally, be co-opted by the merge tool).
GitHub Apps should be able to create inline prompts for users/maintainers in pull requests and issues. The Requested Actions feature via the Check Runs API is pretty close, but doesn't work on issues and is hidden behind too many clicks. Authors of GitHub Apps typically resort to responding to textual commands from user comments, which has the unwanted side effect of extra comment noise.
A more direct mechanism would be greatly appreciated. This might work similarly as Requested Actions, but would be exposed in the PR/issue itself, for example, this mockup of an automated dependency upgrade bot requesting user intervention:
The ability to control permissions for creating or modifying of tags is a heavily-requested feature. Apparently this is being considered, but has not yet been implemented.
Cool, these are really what I want.