Skip to content

Commit fb5f4e3

Browse files
visheshrwlericallam
authored andcommitted
Created Temp for pull req, bugreport & feature req
1 parent 6ccb4fb commit fb5f4e3

File tree

5 files changed

+103
-0
lines changed

5 files changed

+103
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: 🐞 Bug Report
2+
description: Create a bug report to help us improve
3+
title: "bug: "
4+
labels: ["🐞❔ unconfirmed bug"]
5+
body:
6+
- type: textarea
7+
attributes:
8+
label: Provide environment information
9+
description: |
10+
Run this command in your project root and paste the results:
11+
```bash
12+
npx envinfo --system --binaries
13+
```
14+
If the issue is regarding a scaffolded app, please include the version used to scaffold that app which you can find in the `package.json` under `ct3aMetadata.initVersion`.
15+
validations:
16+
required: true
17+
- type: textarea
18+
attributes:
19+
label: Describe the bug
20+
description: A clear and concise description of the bug, as well as what you expected to happen when encountering it.
21+
validations:
22+
required: true
23+
- type: input
24+
attributes:
25+
label: Reproduction repo
26+
description: If applicable, please provide a link to a reproduction repo or a Stackblitz / CodeSandbox project. Your issue may be closed if this is not provided and we are unable to reproduce the issue. If your bug is a documentaion issue, link the appropriate page.
27+
validations:
28+
required: true
29+
- type: textarea
30+
attributes:
31+
label: To reproduce
32+
description: Describe how to reproduce your bug. Steps, code snippets, reproduction repos etc.
33+
validations:
34+
required: true
35+
- type: textarea
36+
attributes:
37+
label: Additional information
38+
description: Add any other information related to the bug here, screenshots if applicable.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
-name: Ask a Question
4+
url: https://github.com/triggerdotdev/trigger.dev/issues
5+
about: Ask questions and discuss with other community members
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Feature Request
2+
description: Suggest an idea for this project
3+
title: "feat: "
4+
labels: ["🌟 enhancement"]
5+
body:
6+
- type: textarea
7+
attributes:
8+
label: Is your feature request related to a problem? Please describe.
9+
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
10+
validations:
11+
required: true
12+
- type: textarea
13+
attributes:
14+
label: Describe the solution you'd like to see
15+
description: A clear and concise description of what you want to happen.
16+
validations:
17+
required: true
18+
- type: textarea
19+
attributes:
20+
label: Describe alternate solutions
21+
description: A clear and concise description of any alternative solutions or features you've considered.
22+
validations:
23+
required: true
24+
- type: textarea
25+
attributes:
26+
label: Additional information
27+
description: Add any other information related to the feature here. If your feature request is related to any issues or discussions, link them here.

.github/labeler.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
"📌 area: cli":
2+
- any: ["cli/**/*"]
3+
4+
"📌 area: t3-app":
5+
- any: ["cli/template/**/*"]
6+
7+
"📚 documentation":
8+
- any: ["www/**/*"]
9+
- any: ["**/*.md"]
10+
11+
"📌 area: ci":
12+
- any: [".github/**/*"]

.github/pull_request_template.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Closes #<issue>
2+
3+
## ✅ Checklist
4+
5+
- [ ] I have followed every step in the [contributing guide](https://github.com/triggerdotdev/trigger.dev/blob/82c5965e8a173f4fc805befa0cb2c8cf3519bc17/CONTRIBUTING.md)
6+
- [ ] The PR title follows the convention.
7+
- [ ] I performed a functional test on my final commit
8+
9+
---
10+
11+
## Changelog
12+
13+
_[Short description of what has changed]_
14+
15+
---
16+
17+
## Screenshots
18+
19+
_[Screenshots]_
20+
21+
💯

0 commit comments

Comments
 (0)