-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "chore: allow users to create issues (#2522)"
This reverts commit 268a85e.
- Loading branch information
1 parent
268a85e
commit 5bfd8d0
Showing
6 changed files
with
185 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
title: Bug Report | ||
body: | ||
- type: textarea | ||
id: aqua-info | ||
attributes: | ||
label: aqua info | ||
description: | | ||
Please use the latest version. | ||
Please run `aqua info` command and paste the result. | ||
`aqua info` requires `aqua >= v2.10.0`. | ||
If you use `aqua < v2.10.0`, please run `aqua -v` and write OS and CPU architecture instead. | ||
If you checked multiple versions, please write the result too. | ||
e.g. This issue occurs with aqua v2.5.0 too, but doesn't occur with aqua v2.4.0. | ||
value: | | ||
```console | ||
$ aqua info | ||
``` | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: overview | ||
attributes: | ||
label: Overview | ||
value: | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: how-to-reproduce | ||
attributes: | ||
label: How to reproduce | ||
description: | | ||
Please see [the guide](https://github.com/suzuki-shunsuke/oss-contribution-guide#write-good-how-to-reproduce) too. | ||
aqua.yaml should be not partial but complete configuration. | ||
Please remove unneeded configuration to reproduce the issue. | ||
value: | | ||
aqua.yaml | ||
```yaml | ||
``` | ||
Other related code such as local Registry | ||
``` | ||
``` | ||
Executed command and output | ||
```console | ||
$ | ||
``` | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: debug-output | ||
attributes: | ||
label: Debug output | ||
description: Please set the environment variable `AQUA_LOG_LEVEL=debug` and run aqua and tell us the debug output. | ||
value: | | ||
```console | ||
$ | ||
``` | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: expected-behaviour | ||
attributes: | ||
label: Expected behaviour | ||
value: | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: actual-behaviour | ||
attributes: | ||
label: Actual behaviour | ||
value: | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: note | ||
attributes: | ||
label: Note | ||
value: | ||
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,48 @@ | ||
title: Feature Request | ||
body: | ||
- type: textarea | ||
id: feature-overview | ||
attributes: | ||
label: Feature Overview | ||
value: | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: why | ||
attributes: | ||
label: Why is the feature needed? | ||
description: Please explain the problem you want to solve. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: workaround | ||
attributes: | ||
label: Workaround | ||
description: | | ||
If you have any workaround, please explain it and why the workaround isn't enough. | ||
- type: textarea | ||
id: example-code | ||
attributes: | ||
label: Example Code | ||
description: | | ||
Please explain the feature with code. For example, if you want a new subcommand, please explain the usage of the subcommand. | ||
value: | | ||
```console | ||
$ | ||
``` | ||
Configuration | ||
```yaml | ||
``` | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: note | ||
attributes: | ||
label: Note | ||
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
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
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,26 @@ | ||
name: Close issue | ||
|
||
on: | ||
issues: | ||
types: [opened] | ||
|
||
jobs: | ||
close-issue: | ||
runs-on: ubuntu-latest | ||
if: github.triggering_actor != 'suzuki-shunsuke' | ||
permissions: | ||
issues: write | ||
steps: | ||
- uses: suzuki-shunsuke/issue-close-lock-action@231aefd9a92cddfd2eb51e60965e9468f3d592bd # v0.1.0 | ||
with: | ||
issue_number: ${{github.event.issue.number}} | ||
message: | | ||
# Please create a GitHub Discussion instead of this issue | ||
https://github.com/orgs/aquaproj/discussions | ||
Only maintainers can create new Issues. If needed, a maintainer will create an Issue after your Discussion been triaged and confirmed. | ||
This Issue will now be closed and locked. This way we keep Issues actionable, and free of duplicates or wrong bug reports. | ||
Thanks |