governance: new issue templates (#1048)
Co-authored-by: Björn Brauer <bjoern.brauer@new-work.se> Co-authored-by: ChristopherHX <christopher.homberger@web.de> Co-authored-by: Björn Brauer <bjoern.brauer@new-work.se> Co-authored-by: ChristopherHX <christopher.homberger@web.de> Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
This commit is contained in:
parent
507ae61d1b
commit
7704033ec6
|
@ -0,0 +1,87 @@
|
||||||
|
name: Bug report
|
||||||
|
description: Use this template for reporting bugs/issues.
|
||||||
|
labels:
|
||||||
|
- 'kind/bug'
|
||||||
|
body:
|
||||||
|
- type: markdown
|
||||||
|
attributes:
|
||||||
|
value: |
|
||||||
|
Thanks for taking the time to fill out this bug report!
|
||||||
|
- type: textarea
|
||||||
|
id: act-debug
|
||||||
|
attributes:
|
||||||
|
label: Bug report info
|
||||||
|
description: |
|
||||||
|
Output of `act --bug-report`
|
||||||
|
placeholder: |
|
||||||
|
act --bug-report
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: act-command
|
||||||
|
attributes:
|
||||||
|
label: Command used with act
|
||||||
|
description: |
|
||||||
|
Please paste your whole command
|
||||||
|
placeholder: |
|
||||||
|
act -P ubuntu-latest=node:12 -v -d ...
|
||||||
|
render: sh
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: what-happened
|
||||||
|
attributes:
|
||||||
|
label: Describe issue
|
||||||
|
description: |
|
||||||
|
Also tell us what did you expect to happen?
|
||||||
|
placeholder: |
|
||||||
|
Describe issue
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: input
|
||||||
|
id: repo
|
||||||
|
attributes:
|
||||||
|
label: Link to GitHub repository
|
||||||
|
description: |
|
||||||
|
Provide link to GitHub repository, you can skip it if the repository is private or you don't have it on GitHub, otherwise please provide it as it might help us troubleshoot problem
|
||||||
|
placeholder: |
|
||||||
|
https://github.com/nektos/act
|
||||||
|
validations:
|
||||||
|
required: false
|
||||||
|
- type: textarea
|
||||||
|
id: workflow
|
||||||
|
attributes:
|
||||||
|
label: Workflow content
|
||||||
|
description: |
|
||||||
|
Please paste your **whole** workflow here
|
||||||
|
placeholder: |
|
||||||
|
name: My workflow
|
||||||
|
on: ['push', 'schedule']
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
KEY: VAL
|
||||||
|
[...]
|
||||||
|
render: yml
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: logs
|
||||||
|
attributes:
|
||||||
|
label: Relevant log output
|
||||||
|
description: |
|
||||||
|
Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. Please verify that the log output doesn't contain any sensitive data.
|
||||||
|
render: sh
|
||||||
|
placeholder: |
|
||||||
|
Use `act -v` for verbose output
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: additional-info
|
||||||
|
attributes:
|
||||||
|
label: Additional information
|
||||||
|
placeholder: |
|
||||||
|
Additional information that doesn't fit elsewhere
|
||||||
|
validations:
|
||||||
|
required: false
|
|
@ -1,5 +1,8 @@
|
||||||
blank_issues_enabled: true
|
blank_issues_enabled: true
|
||||||
contact_links:
|
contact_links:
|
||||||
|
- name: Start a discussion
|
||||||
|
url: https://github.com/nektos/act/discussions/new
|
||||||
|
about: You can ask for help here!
|
||||||
- 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!
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
---
|
|
||||||
name: Feature request
|
|
||||||
about: Use this template for requesting a feature/enhancement.
|
|
||||||
title: "Enhancement: "
|
|
||||||
labels: "kind/feature-request"
|
|
||||||
assignees: ""
|
|
||||||
---
|
|
||||||
|
|
||||||
## Describe feature
|
|
|
@ -0,0 +1,28 @@
|
||||||
|
name: Feature request
|
||||||
|
description: Use this template for requesting a feature/enhancement.
|
||||||
|
labels:
|
||||||
|
- 'kind/feature-request'
|
||||||
|
body:
|
||||||
|
- type: markdown
|
||||||
|
attributes:
|
||||||
|
value: |
|
||||||
|
Please note that incompatibility with GitHub Actions should be opened as a bug report, not a new feature.
|
||||||
|
- type: input
|
||||||
|
id: act-version
|
||||||
|
attributes:
|
||||||
|
label: Act version
|
||||||
|
description: |
|
||||||
|
What version of `act` are you using? Version can be obtained via `act --version`
|
||||||
|
If you've built it from source, please provide commit hash
|
||||||
|
placeholder: |
|
||||||
|
act --version
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: feature
|
||||||
|
attributes:
|
||||||
|
label: Feature description
|
||||||
|
description: Describe feature that you would like to see
|
||||||
|
placeholder: ...
|
||||||
|
validations:
|
||||||
|
required: true
|
|
@ -1,88 +0,0 @@
|
||||||
---
|
|
||||||
name: Issue
|
|
||||||
about: Use this template for reporting a bug/issue.
|
|
||||||
title: "Issue: <shortly describe issue>"
|
|
||||||
labels: kind/bug
|
|
||||||
assignees: ""
|
|
||||||
---
|
|
||||||
|
|
||||||
<!--
|
|
||||||
- Make sure you are able to reproduce it on the [latest version](https://github.com/nektos/act/releases)
|
|
||||||
- Search the existing issues.
|
|
||||||
- Refer to [README](https://github.com/nektos/act/blob/master/README.md).
|
|
||||||
-->
|
|
||||||
|
|
||||||
## System information
|
|
||||||
|
|
||||||
<!--
|
|
||||||
- Operating System: < Windows | Linux | macOS | etc... >
|
|
||||||
- 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 >
|
|
||||||
-->
|
|
||||||
|
|
||||||
- Operating System:
|
|
||||||
- Architecture:
|
|
||||||
- Apple M1:
|
|
||||||
- Docker version:
|
|
||||||
- Docker image used in `act`:
|
|
||||||
- `act` version:
|
|
||||||
|
|
||||||
## Expected behaviour
|
|
||||||
|
|
||||||
<!--
|
|
||||||
- Describe how whole process should go and finish
|
|
||||||
-->
|
|
||||||
|
|
||||||
## Actual behaviour
|
|
||||||
|
|
||||||
<!--
|
|
||||||
- Describe the issue
|
|
||||||
-->
|
|
||||||
|
|
||||||
## Workflow and/or repository
|
|
||||||
|
|
||||||
<!--
|
|
||||||
- Provide workflow with which we can reproduce the issue
|
|
||||||
OR
|
|
||||||
- Provide link to your GitHub repository that contains the workflow
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>workflow</summary>
|
|
||||||
|
|
||||||
```none
|
|
||||||
name: example workflow
|
|
||||||
|
|
||||||
on: [push]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
[...]
|
|
||||||
```
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
## Steps to reproduce
|
|
||||||
|
|
||||||
<!--
|
|
||||||
- Make sure to include full command with parameters you used to run `act`, example:
|
|
||||||
1. Clone example repo (https://github.com/cplee/github-actions-demo)
|
|
||||||
2. Enter cloned repo directory
|
|
||||||
3. Run `act -s SUPER_SECRET=im-a-value`
|
|
||||||
-->
|
|
||||||
|
|
||||||
## `act` output
|
|
||||||
|
|
||||||
<!--
|
|
||||||
- Use `act` with `-v`/`--verbose` and paste output from your terminal in code block below
|
|
||||||
-->
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>Log</summary>
|
|
||||||
|
|
||||||
```none
|
|
||||||
PASTE YOUR LOG HERE
|
|
||||||
```
|
|
||||||
|
|
||||||
</details>
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
name: Wiki issue
|
||||||
|
description: Report issue/improvement ragarding documentation (wiki)
|
||||||
|
labels:
|
||||||
|
- 'kind/discussion'
|
||||||
|
- 'area/docs'
|
||||||
|
body:
|
||||||
|
- type: markdown
|
||||||
|
attributes:
|
||||||
|
value: |
|
||||||
|
Thanks for taking the time to fill out this issue!
|
||||||
|
- type: textarea
|
||||||
|
id: details
|
||||||
|
attributes:
|
||||||
|
label: Details
|
||||||
|
description: |
|
||||||
|
Describe issue
|
||||||
|
validations:
|
||||||
|
required: true
|
Loading…
Reference in New Issue