Do you have a template for new issues? If so, you could write a GitHub Actions workflow that looks for certain values or info and applies some labels automatically… but probably only basic stuff, to avoid false positives.
Technology
A nice place to discuss rumors, happenings, innovations, and challenges in the technology sphere. We also welcome discussions on the intersections of technology and society. If it’s technological news or discussion of technology, it probably belongs here.
Remember the overriding ethos on Beehaw: Be(e) Nice. Each user you encounter here is a person, and should be treated with kindness (even if they’re wrong, or use a Linux distro you don’t like). Personal attacks will not be tolerated.
Subcommunities on Beehaw:
This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.
Lemmy does have templates though I found nothing that would apply labels automatically in a specific way.
Use the command line :)
I mean that is what I do and how I do it. git clone
the remote repository, make a new branch git checkout -b <name whatever>
, and then triage/work on the suspected bug. Make changes locally as needed. When it's all working as you'd expect, git push -u origin <name whatever matches your local branch>
.
Could always use their cli? Still gotta do the same steps but no need for a mouse.