Skip to content

Commit

Permalink
github: issue and pr templates
Browse files Browse the repository at this point in the history
  • Loading branch information
IldenH committed Jan 12, 2025
1 parent 9e83883 commit 8f1ac03
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Bug
description: Noe virker ikke slik det skal
title: ""
labels: ["bug"]
body:
- type: checkboxes
attributes:
label:
description:
options:
- label: Jeg har sett etter lignende issues
required: true
- type: textarea
attributes:
label: Beskriv problemet
description: Hvordan reproduseres feilen?
validations:
required: true
- type: textarea
attributes:
label: Relevante logs
description: Lim inn logs fra konsollen
render: shell
18 changes: 18 additions & 0 deletions .github/ISSUE_TEMPLATE/feature.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Forbedring
description: Forslag til ny funksjonalitet eller forbedrelse
title: ""
labels: ["enhancement"]
body:
- type: checkboxes
attributes:
label:
description:
options:
- label: Jeg har sett etter lignende issues
required: true
- type: textarea
attributes:
label: Beskriv forslaget
description: Gjerne gi forslag til hvordan det kan implementeres
validations:
required: true
10 changes: 10 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!-- Beskriv endringen din -->

## Jeg har:

- [ ] Sjekket andre issues og pull requests
- [ ] Formatert koden med `npm run format`
- [ ] Fikset linting errors fra `npm run lint`
- [ ] Testet koden med `make`
- [ ] Dokumentert endringene i `/docs`
- [ ] Fulgt [retningslinjene for kontribuering](../docs/contribution.md)

0 comments on commit 8f1ac03

Please sign in to comment.