fix: update issue template (#722)
* fix: update issue template add additional information to be provided by user that should help in troubleshooting * fix: move markdownlint config and link it done it so the markdownlint-cli stops shouting about issues * feat: add Matrix link Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
This commit is contained in:
parent
6b4d359737
commit
fa93f4d5e7
4 changed files with 28 additions and 17 deletions
3
.github/ISSUE_TEMPLATE/config.yml
vendored
3
.github/ISSUE_TEMPLATE/config.yml
vendored
|
@ -3,6 +3,9 @@ contact_links:
|
||||||
- name: Ask on Gitter
|
- name: Ask on Gitter
|
||||||
url: https://gitter.im/nektos/act
|
url: https://gitter.im/nektos/act
|
||||||
about: You can ask for help here!
|
about: You can ask for help here!
|
||||||
|
- name: Ask on Gitter (via Matrix)
|
||||||
|
url: https://matrix.to/#/#nektos_act:gitter.im?via=gitter.im&via=matrix.org
|
||||||
|
about: If you prefer Matrix over Gitter
|
||||||
- name: Want to contribute to act?
|
- name: Want to contribute to act?
|
||||||
url: https://github.com/nektos/act/blob/master/CONTRIBUTING.md
|
url: https://github.com/nektos/act/blob/master/CONTRIBUTING.md
|
||||||
about: Be sure to read contributing guidelines!
|
about: Be sure to read contributing guidelines!
|
||||||
|
|
19
.github/ISSUE_TEMPLATE/issue_template.md
vendored
19
.github/ISSUE_TEMPLATE/issue_template.md
vendored
|
@ -12,16 +12,23 @@ assignees: ''
|
||||||
- Refer to [README](https://github.com/nektos/act/blob/master/README.md).
|
- Refer to [README](https://github.com/nektos/act/blob/master/README.md).
|
||||||
-->
|
-->
|
||||||
|
|
||||||
## Act version
|
## System information
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
- Paste output of `act --version` inside the code block below
|
- Operating System: < Windows | Linux | macOS | etc... >
|
||||||
- If you've built `act` yourself, please provide commit hash
|
- Architecture: < x64 (64-bit) | x86 (32-bit) | arm64 (64-bit) | arm (32-bit) | etc... >
|
||||||
|
- Apple M1: < yes | no >
|
||||||
|
- Docker version: < output of `docker system info -f "{{.ServerVersion}}"` >
|
||||||
|
- Docker image used in `act`: < can be omitted if it's included in log >
|
||||||
|
- `act` version: < output of `act --version`, if you've built `act` yourself, please provide commit hash >
|
||||||
-->
|
-->
|
||||||
|
|
||||||
```none
|
- Operating System:
|
||||||
|
- Architecture:
|
||||||
```
|
- Apple M1:
|
||||||
|
- Docker version:
|
||||||
|
- Docker image used in `act`:
|
||||||
|
- `act` version:
|
||||||
|
|
||||||
## Expected behaviour
|
## Expected behaviour
|
||||||
|
|
||||||
|
|
11
.github/linters/.markdown-lint.yml
vendored
11
.github/linters/.markdown-lint.yml
vendored
|
@ -1,11 +0,0 @@
|
||||||
# Default state for all rules
|
|
||||||
default: true
|
|
||||||
|
|
||||||
# MD013/line-length - Line length
|
|
||||||
MD013: false
|
|
||||||
|
|
||||||
# MD033/no-inline-html - Inline HTML
|
|
||||||
MD033: false
|
|
||||||
|
|
||||||
# MD041/first-line-heading/first-line-h1 - First line in a file should be a top-level heading
|
|
||||||
MD041: false
|
|
1
.github/linters/.markdown-lint.yml
vendored
Symbolic link
1
.github/linters/.markdown-lint.yml
vendored
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../../.markdownlint.yml
|
11
.markdownlint.yml
Normal file
11
.markdownlint.yml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
# Default state for all rules
|
||||||
|
default: true
|
||||||
|
|
||||||
|
# MD013/line-length - Line length
|
||||||
|
MD013: false
|
||||||
|
|
||||||
|
# MD033/no-inline-html - Inline HTML
|
||||||
|
MD033: false
|
||||||
|
|
||||||
|
# MD041/first-line-heading/first-line-h1 - First line in a file should be a top-level heading
|
||||||
|
MD041: false
|
Loading…
Reference in a new issue