Skip to content

Commit b07e226

Browse files
committed
Add issue templates
Signed-off-by: kerthcet <kerthcet@gmail.com>
1 parent 32605ef commit b07e226

9 files changed

Lines changed: 137 additions & 0 deletions

File tree

.github/ISSUE_TEMPLATE/BUG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
name: Bug Report
3+
about: Report a bug encountered while using
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
<!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks!
11+
-->
12+
13+
**What happened**:
14+
15+
**What you expected to happen**:
16+
17+
**How to reproduce it (as minimally and precisely as possible)**:
18+
19+
**Anything else we need to know?**:
20+
21+
**Environment**:

.github/ISSUE_TEMPLATE/CLEANUP.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: Clean Up Request
3+
about: Suggest to clean up code, process or tech debt to the project
4+
title: ''
5+
labels: cleanup
6+
assignees: ''
7+
8+
---
9+
10+
<!-- Please only use this template for submitting clean up requests -->
11+
12+
**What would you like to be cleaned**:
13+
14+
**Why is this needed**:

.github/ISSUE_TEMPLATE/FEATURE.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: Feature Request
3+
about: Suggest a feature to the project
4+
title: ''
5+
labels: feature
6+
assignees: ''
7+
8+
---
9+
10+
<!-- Please only use this template for submitting feature requests -->
11+
12+
**What would you like to be added**:
13+
14+
**Why is this needed**:
15+
16+
**Completion requirements**:
17+
18+
This feature requires the following artifacts:
19+
20+
- [ ] Design doc
21+
- [ ] API change
22+
- [ ] Docs update
23+
24+
The artifacts should be linked in subsequent comments.

.github/ISSUE_TEMPLATE/RELEASE.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
name: New Release
3+
about: Propose a new release
4+
title: Release v0.x.0
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
## Release Checklist
11+
<!--
12+
Please do not remove items from the checklist
13+
-->
14+
- [ ] Verify that the changelog in this issue is up-to-date
15+
- [ ] Bump the version number in `pyproject.toml` to the new version (e.g., v0.x.0)
16+
- [ ] Merge the PR that bumps the version number
17+
- [ ] For major or minor releases (v$MAJ.$MIN.0), create a new release branch.
18+
- [ ] an OWNER creates a vanilla release branch with
19+
`git branch release-$MAJ.$MIN.0 main`
20+
- [ ] An OWNER pushes the new release branch with
21+
`git push --set-upstream upstream release-$MAJ.$MIN.0`
22+
- [ ] An OWNER [prepares a draft release](https://github.com/inftyai/amrs/releases)
23+
- [ ] Write the change log into the draft release.
24+
- [ ] Don't release the draft yet.
25+
- [ ] Publish the release to PyPI
26+
- [ ] run `make build` to build the package
27+
- [ ] run `make publish` to publish the package to PyPI
28+
- [ ] Publish the draft release prepared at the [Github releases page](https://github.com/inftyai/amrs/releases).
29+
- [ ] Close this issue
30+
31+
32+
## Changelog
33+
<!--
34+
Describe changes since the last release here.
35+
-->

.github/ISSUE_TEMPLATE/SUPPORT.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
name: Support Request
3+
about: Support request or question relating to the project
4+
title: ''
5+
labels: support
6+
assignees: ''
7+
8+
---

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#### What this PR does / why we need it
2+
3+
#### Which issue(s) this PR fixes
4+
<!--
5+
*Automatically closes linked issue when PR is merged.
6+
Usage: `Fixes #<issue number>`, or `Fixes (paste link of issue)`.
7+
_If PR is about `failing-tests or flakes`, please post the related issues/tests in a comment and do not use `Fixes`_*
8+
-->
9+
Fixes #
10+
11+
#### Special notes for your reviewer
12+
13+
#### Does this PR introduce a user-facing change?
14+
<!--
15+
If no, just write "NONE" in the release-note block below.
16+
If yes, a release note is required:
17+
Enter your extended release note in the block below. If the PR requires additional action from users switching to the new release, include the string "action required".
18+
-->
19+
```release-note
20+
21+
```

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,8 @@ __pycache__
1212
/temp/
1313

1414
dist/
15+
16+
17+
# Added by cargo
18+
19+
/target

Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[package]
2+
name = "AMRS"
3+
version = "0.1.0"
4+
edition = "2024"
5+
6+
[dependencies]

src/main.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fn main() {
2+
println!("Hello, world!");
3+
}

0 commit comments

Comments
 (0)