docs: add issue templates (#1847)
* docs: add issue templates * ci: skip .github/ dirpull/1848/head
parent
7a88c848ad
commit
5b9f505e6c
|
@ -6,9 +6,9 @@ DIVERGED=$(git merge-base --fork-point origin/master > /dev/null; echo $?)
|
|||
if [[ $DIVERGED == 0 ]]; then
|
||||
if [[ $BUILDKITE_TAG == "" ]]; then
|
||||
if [[ $BUILDKITE_BRANCH == "master" ]]; then
|
||||
CI_BYPASS=$(git diff --name-only HEAD~1 | sed -rn '/^(CONTRIBUTING.md|README.md|SECURITY.md|\.all-contributorsrc|docs\/.*)/!{q1}' && echo true || echo false)
|
||||
CI_BYPASS=$(git diff --name-only HEAD~1 | sed -rn '/^(CONTRIBUTING.md|README.md|SECURITY.md|\.all-contributorsrc|\.github\/.*|docs\/.*)/!{q1}' && echo true || echo false)
|
||||
else
|
||||
CI_BYPASS=$(git diff --name-only `git merge-base --fork-point origin/master` | sed -rn '/^(CONTRIBUTING.md|README.md|SECURITY.md|\.all-contributorsrc|docs\/.*)/!{q1}' && echo true || echo false)
|
||||
CI_BYPASS=$(git diff --name-only `git merge-base --fork-point origin/master` | sed -rn '/^(CONTRIBUTING.md|README.md|SECURITY.md|\.all-contributorsrc|\.github\/.*|docs\/.*)/!{q1}' && echo true || echo false)
|
||||
fi
|
||||
else
|
||||
CI_BYPASS="false"
|
||||
|
|
|
@ -6,9 +6,9 @@ DIVERGED=$(git merge-base --fork-point origin/master > /dev/null; echo $?)
|
|||
if [[ $DIVERGED == 0 ]]; then
|
||||
if [[ $BUILDKITE_TAG == "" ]]; then
|
||||
if [[ $BUILDKITE_BRANCH == "master" ]]; then
|
||||
CI_BYPASS=$(git diff --name-only HEAD~1 | sed -rn '/^(CONTRIBUTING.md|README.md|SECURITY.md|\.all-contributorsrc|docs\/.*)/!{q1}' && echo true || echo false)
|
||||
CI_BYPASS=$(git diff --name-only HEAD~1 | sed -rn '/^(CONTRIBUTING.md|README.md|SECURITY.md|\.all-contributorsrc|\.github\/.*|docs\/.*)/!{q1}' && echo true || echo false)
|
||||
else
|
||||
CI_BYPASS=$(git diff --name-only `git merge-base --fork-point origin/master` | sed -rn '/^(CONTRIBUTING.md|README.md|SECURITY.md|\.all-contributorsrc|docs\/.*)/!{q1}' && echo true || echo false)
|
||||
CI_BYPASS=$(git diff --name-only `git merge-base --fork-point origin/master` | sed -rn '/^(CONTRIBUTING.md|README.md|SECURITY.md|\.all-contributorsrc|\.github\/.*|docs\/.*)/!{q1}' && echo true || echo false)
|
||||
fi
|
||||
|
||||
if [[ $CI_BYPASS == "true" ]]; then
|
||||
|
|
|
@ -0,0 +1,41 @@
|
|||
---
|
||||
name: Bug Report
|
||||
about: Use this template to report bugs other than security vulnerabilities
|
||||
labels: Possible Bug
|
||||
---
|
||||
## Bug Report
|
||||
<!--
|
||||
1. IMPORTANT: Do not report security vulnerabilities via GitHub issues. Please click 'choose a different type' and see
|
||||
the dedicated report a security vulnerability link.
|
||||
2. Remember to customize the title above.
|
||||
3. Replace the below sections (not this section) starting with <!- - and ending with - -> with relevant information,
|
||||
making sure to remove the <!- - and - ->.
|
||||
4. Sections that start with _N/A_ are optional, but if you populate them with values please remove the _N/A_.
|
||||
-->
|
||||
|
||||
### Description
|
||||
|
||||
<!--
|
||||
Describe the bug here.
|
||||
-->
|
||||
|
||||
### Expected Behaviour
|
||||
|
||||
_N/A_
|
||||
<!--
|
||||
Describe the behaviour your expect here.
|
||||
-->
|
||||
|
||||
### Reproduction Steps
|
||||
|
||||
_N/A_
|
||||
<!--
|
||||
1. Replace this step with your first step. Add additional steps below this.
|
||||
-->
|
||||
|
||||
### Additional Information
|
||||
|
||||
_N/A_
|
||||
<!--
|
||||
This section is for relevant additional information like; logs, configurations, environment information, etc.
|
||||
-->
|
|
@ -0,0 +1,11 @@
|
|||
blank_issues_enabled: false
|
||||
contact_links:
|
||||
- name: Documentation
|
||||
url: https://www.authelia.com/docs/
|
||||
about: Read the Documentation
|
||||
- name: Matrix
|
||||
url: https://riot.im/app/#/room/#authelia:matrix.org
|
||||
about: Discuss Authelia with the Developers on Matrix which is the preferred method of contact
|
||||
- name: Discord
|
||||
url: https://discord.authelia.com
|
||||
about: Discuss Authelia with the Developers on Discord which is bridged to Matrix
|
|
@ -0,0 +1,26 @@
|
|||
---
|
||||
name: Feature Request
|
||||
about: Use this template to request features
|
||||
labels: Feature Request
|
||||
---
|
||||
## Feature Request
|
||||
<!--
|
||||
1. IMPORTANT: Do not report security vulnerabilities via GitHub issues. Please click 'choose a different type' and see the dedicated report a security vulnerability link.
|
||||
2. Remember to customize the title above.
|
||||
3. Replace the below sections (not this section) starting with <!- - and ending with - -> with relevant information,
|
||||
making sure to remove the <!- - and - ->.
|
||||
4. Sections that start with _N/A_ are optional, but if you populate them with values please remove the _N/A_.
|
||||
-->
|
||||
|
||||
### Description
|
||||
|
||||
<!--
|
||||
Describe the feature here.
|
||||
-->
|
||||
|
||||
### Use Case
|
||||
|
||||
_N/A_
|
||||
<!--
|
||||
Describe the specific use case if it isn't clear or may not be clear from your feature description here.
|
||||
-->
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
name: Miscellaneous
|
||||
about: Use this template for everything other than feature requests, security vulnerabilities, or bug reports such as questions
|
||||
---
|
||||
<!--
|
||||
IMPORTANT: Do not report security vulnerabilities via GitHub issues. Please click 'choose a different type' and see the dedicated report a security vulnerability link.
|
||||
-->
|
Loading…
Reference in New Issue