sbctl icon indicating copy to clipboard operation
sbctl copied to clipboard

Make issue template

Open Foxboron opened this issue 2 years ago • 3 comments

Issues should demand people attach the following outputs:

  • sudo sbctl status
  • sudo hexdump -C /sys/firmware/efi/efivars/PK-8be4df61-93ca-11d2-aa0d-00e098032b8c

And we should preferably implement sudo sbctl debug as a hidden command so we can have some better structured data we can use for debugging.

Foxboron avatar Dec 29 '21 17:12 Foxboron

Hey @Foxboron, could I take on this issue ? How does one goes about creating this issue I just make the template and send it here?

AkechiShiro avatar Jun 21 '22 13:06 AkechiShiro

@AkechiShiro If you want to want to work on this please do :)

Make an issue template as described by github; https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#creating-issue-forms

Foxboron avatar Aug 04 '22 08:08 Foxboron

So having a look at the documentation, I think this is a good start point, but I'm sure you will have more relevant feedback onto what should be added or removed for bug reports, as I've never dealt with any bugs/issue so far, for this project.

name: Bug Report
description: File a bug report
title: "[Bug]:"
labels: ["bug", "triage"]
body:
  - type: markdown
    attributes:
      value: |
        Thanks for taking the time to fill out this bug report!
  - type: textarea
    id: what-happened
    attributes:
      label: What happened?
      description: What did you expect to happen?
      placeholder: Tell us what you see!
      value: ""
    validations:
      required: true
  - type: textarea
    id: version
    attributes:
      label: Version
      description: What version of our software are you running?
    validations:
      required: true
  - type: textarea
    id: logs
    attributes:
      label: Relevant log output
      description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
      render: shell

AkechiShiro avatar Aug 06 '22 20:08 AkechiShiro