I’ve been using GitHub’s UI to do it. It seems just very slow to open issues in a new tab to analyse and label the issues.

Are there better ways to do this?

  • TofuScramble@beehaw.org
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    1 year ago

    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.

  • PenguinCoder@beehaw.org
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 year ago

    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>.