Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: issue template forms #737

Merged
merged 1 commit into from
Aug 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/01-feature-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Feature Request
description: File a feature request.
title: ""
labels: ["language feature", "triage"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this feature request!
- type: textarea
id: feature-request
attributes:
label: What kind of features would like to see supported in Tact?
description: Anything, expect floating-point numbers support :)
validations:
required: true
63 changes: 63 additions & 0 deletions .github/ISSUE_TEMPLATE/02-bug-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: Bug Report
description: File a bug report.
title: ""
labels: ["bug", "triage"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: checkboxes
attributes:
label: Are you using the latest released (or pre-released, a.k.a. "next") version?
description: "Please update your setup to the most recent Tact version: <https://github.com/tact-lang/tact/releases>"
options:
- label: I'm using the latest Tact version
required: true
- type: textarea
id: code
attributes:
label: Tact source code
description: Please copy and paste your Tact source code here (or fill out the form below explaining the steps to reproduce the issue). This will be automatically formatted into code, so no need for backticks.
render: tact
- type: textarea
id: logs
attributes:
label: Relevant Tact/build system log output
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
render: shell
- type: textarea
id: actual
attributes:
label: What happened?
description: Current behavior
placeholder: See the error message above
- type: textarea
id: expected
attributes:
label: What did you expect?
description: Expected behavior
placeholder: I expected
validations:
required: true
- type: textarea
id: repro
attributes:
label: Steps to reproduce
description: Instructions other than a minimal Tact source code example to reproduce your issue
placeholder: "Here is the link to a repo with my Tact project: <https://github.com/example/prj>. You can find the build instructions in its `README.md` file."
- type: dropdown
id: build-system
attributes:
label: How do you run Tact?
multiple: true
options:
- Blueprint
- tact-template
- Tact CLI
- Other
- type: textarea
id: other
attributes:
label: Anything else?
description: Any other relevant info you might want to add
16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/03-other.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Other issue
description: Other issue (except security reports, please file those in private!)
anton-trunov marked this conversation as resolved.
Show resolved Hide resolved
title: ""
labels: ["triage"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this form!
- type: textarea
id: other
attributes:
label: What is on your mind?
description: Compiler documentation, CI, testing, API, tooling, etc.
validations:
required: true
Loading