-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update readme, templates, and workflows
- Loading branch information
Showing
13 changed files
with
467 additions
and
267 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,76 @@ | ||
--- | ||
# Based on the issue template | ||
name: Bug report | ||
about: Create a report to help us improve | ||
|
||
--- | ||
[linuxserverurl]: https://linuxserver.io | ||
[![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)][linuxserverurl] | ||
|
||
<!--- If you are new to Docker or this application our issue tracker is **ONLY** used for reporting bugs or requesting features. Please use [our discord server](https://discord.gg/YWrKVTn) for general support. ---> | ||
|
||
<!--- Provide a general summary of the bug in the Title above --> | ||
|
||
------------------------------ | ||
|
||
## Expected Behavior | ||
<!--- Tell us what should happen --> | ||
|
||
## Current Behavior | ||
<!--- Tell us what happens instead of the expected behavior --> | ||
|
||
## Steps to Reproduce | ||
<!--- Provide a link to a live example, or an unambiguous set of steps to --> | ||
<!--- reproduce this bug. Include code to reproduce, if relevant --> | ||
1. | ||
2. | ||
3. | ||
4. | ||
|
||
## Environment | ||
**OS:** | ||
**CPU architecture:** x86_64/arm32/arm64 | ||
**How docker service was installed:** | ||
<!--- ie. from the official docker repo, from the distro repo, nas OS provided, etc. --> | ||
<!--- Providing context helps us come up with a solution that is most useful in the real world --> | ||
|
||
## Command used to create docker container (run/create/compose/screenshot) | ||
<!--- Provide your docker create/run command or compose yaml snippet, or a screenshot of settings if using a gui to create the container --> | ||
|
||
## Docker logs | ||
<!--- Provide a full docker log, output of "docker logs readarr" --> | ||
description: Create a report to help us improve | ||
title: "[BUG] <title>" | ||
labels: [Bug] | ||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: Is there an existing issue for this? | ||
description: Please search to see if an issue already exists for the bug you encountered. | ||
options: | ||
- label: I have searched the existing issues | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Current Behavior | ||
description: Tell us what happens instead of the expected behavior. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Expected Behavior | ||
description: Tell us what should happen. | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Steps To Reproduce | ||
description: Steps to reproduce the behavior. | ||
placeholder: | | ||
1. In this environment... | ||
2. With this config... | ||
3. Run '...' | ||
4. See error... | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Environment | ||
description: | | ||
examples: | ||
- **OS**: Ubuntu 20.04 | ||
- **How docker service was installed**: distro's packagemanager | ||
value: | | ||
- OS: | ||
- How docker service was installed: | ||
render: markdown | ||
validations: | ||
required: false | ||
- type: dropdown | ||
attributes: | ||
label: CPU architecture | ||
options: | ||
- x86-64 | ||
- arm64 | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Docker creation | ||
description: | | ||
Command used to create docker container | ||
Provide your docker create/run command or compose yaml snippet, or a screenshot of settings if using a gui to create the container | ||
render: bash | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
description: | | ||
Provide a full docker log, output of "docker logs readarr" | ||
label: Container logs | ||
placeholder: | | ||
Output of `docker logs readarr` | ||
render: bash | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,31 @@ | ||
--- | ||
# Based on the issue template | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
|
||
--- | ||
[linuxserverurl]: https://linuxserver.io | ||
[![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)][linuxserverurl] | ||
|
||
<!--- If you are new to Docker or this application our issue tracker is **ONLY** used for reporting bugs or requesting features. Please use [our discord server](https://discord.gg/YWrKVTn) for general support. ---> | ||
|
||
<!--- If this acts as a feature request please ask yourself if this modification is something the whole userbase will benefit from ---> | ||
<!--- If this is a specific change for corner case functionality or plugins please look at making a Docker Mod or local script https://blog.linuxserver.io/2019/09/14/customizing-our-containers/ --> | ||
|
||
<!--- Provide a general summary of the request in the Title above --> | ||
|
||
------------------------------ | ||
|
||
## Desired Behavior | ||
<!--- Tell us what should happen --> | ||
|
||
## Current Behavior | ||
<!--- Tell us what happens instead of the expected behavior --> | ||
|
||
## Alternatives Considered | ||
<!--- Tell us what other options you have tried or considered --> | ||
description: Suggest an idea for this project | ||
title: "[FEAT] <title>" | ||
labels: [enhancement] | ||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: Is this a new feature request? | ||
description: Please search to see if a feature request already exists. | ||
options: | ||
- label: I have searched the existing issues | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Wanted change | ||
description: Tell us what you want to happen. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Reason for change | ||
description: Justify your request, why do you want it, what is the benefit. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Proposed code change | ||
description: Do you have a potential code change in mind? | ||
validations: | ||
required: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Issue & PR Tracker | ||
|
||
on: | ||
issues: | ||
types: [opened,reopened,labeled,unlabeled,closed] | ||
pull_request_target: | ||
types: [opened,reopened,review_requested,review_request_removed,labeled,unlabeled,closed] | ||
pull_request_review: | ||
types: [submitted,edited,dismissed] | ||
|
||
jobs: | ||
manage-project: | ||
permissions: | ||
issues: write | ||
uses: linuxserver/github-workflows/.github/workflows/issue-pr-tracker.yml@v1 | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: Mark stale issues and pull requests | ||
on: | ||
schedule: | ||
- cron: '58 22 * * *' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
stale: | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
uses: linuxserver/github-workflows/.github/workflows/issues-cron.yml@v1 | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.