Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @StuMason
41 changes: 41 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Bug Report
description: Report something that's broken
labels: ["bug"]
body:
- type: textarea
id: description
attributes:
label: What happened?
validations:
required: true
- type: textarea
id: steps
attributes:
label: Steps to reproduce
validations:
required: true
- type: textarea
id: expected
attributes:
label: Expected behaviour
validations:
required: true
- type: textarea
id: environment
attributes:
label: Environment
description: Include relevant version info
placeholder: |
- Docker version:
- Deployment mode (docker-compose/standalone):
- OS:
- type: textarea
id: logs
attributes:
label: Logs / Error messages
description: Include any relevant logs or error messages
render: shell
- type: textarea
id: context
attributes:
label: Additional context
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: true
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Feature Request
description: Suggest a new feature or enhancement
labels: ["enhancement"]
body:
- type: textarea
id: problem
attributes:
label: Problem or motivation
validations:
required: true
- type: textarea
id: solution
attributes:
label: Proposed solution
validations:
required: true
- type: textarea
id: alternatives
attributes:
label: Alternatives considered
25 changes: 25 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
## Summary


## Related Issues

Closes #

## Changes

-

## Breaking Changes

- [ ] No breaking changes
- [ ] Breaking changes (describe below)

## Test plan

- [ ] Tests added/updated
- [ ] Manually tested locally

## Checklist

- [ ] Code follows project conventions
- [ ] Documentation updated if needed