Skip to content

Commit 8d0c3d5

Browse files
committed
First commit
0 parents  commit 8d0c3d5

File tree

15 files changed

+736
-0
lines changed

15 files changed

+736
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
name: Bug Report
3+
about: Report a bug to help us improve
4+
title: "[BUG] "
5+
labels: bug
6+
assignees: ""
7+
---
8+
9+
## Description
10+
<!-- A clear and concise description of the bug -->
11+
12+
## Steps to Reproduce
13+
1.
14+
2.
15+
3.
16+
17+
## Expected Behavior
18+
<!-- What you expected to happen -->
19+
20+
## Actual Behavior
21+
<!-- What actually happened -->
22+
23+
## Environment
24+
- OS:
25+
- Python version:
26+
- Package version:
27+
28+
## Additional Context
29+
<!-- Screenshots, logs, or any other relevant information -->
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: Feature Request
3+
about: Suggest a new idea or improvement
4+
title: "[FEAT] "
5+
labels: enhancement
6+
assignees: ""
7+
---
8+
9+
## Problem
10+
<!-- What problem does this feature solve? -->
11+
12+
## Proposed Solution
13+
<!-- Describe the feature you would like -->
14+
15+
## Alternatives Considered
16+
<!-- Any alternative solutions or features you have considered -->
17+
18+
## Additional Context
19+
<!-- Any other context, mockups, or examples -->

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
## Description
2+
<!-- Briefly describe the changes made -->
3+
4+
## Type of Change
5+
<!-- Mark with [x] the type of change -->
6+
- [ ] Bug fix (fix)
7+
- [ ] New feature (feat)
8+
- [ ] Documentation (docs)
9+
- [ ] Style (style)
10+
- [ ] Refactoring (refactor)
11+
- [ ] Performance improvement (perf)
12+
- [ ] Tests (test)
13+
- [ ] Build/CI (build/ci)
14+
- [ ] Chore (chore)
15+
16+
## Checklist
17+
- [ ] My code follows the project's style guidelines
18+
- [ ] I have performed a self-review of my code
19+
- [ ] I have commented my code, especially in hard-to-understand areas
20+
- [ ] I have updated the documentation if necessary
21+
- [ ] I have added tests that prove my fix/feature works
22+
- [ ] Existing tests pass locally
23+
24+
## Is this a breaking change?
25+
- [ ] Yes, this is a breaking change
26+
<!-- If you marked yes, describe the impact and necessary migration -->
27+
28+
## Additional Information
29+
<!-- Any other relevant information -->
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
6+
permissions:
7+
contents: write
8+
issues: write
9+
pull-requests: write
10+
11+
name: release-please
12+
13+
jobs:
14+
release-please:
15+
name: Release Please
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Run Release Please
19+
uses: googleapis/release-please-action@v4
20+
with:
21+
config-file: release-please-config.json
22+
manifest-file: .release-please-manifest.json

0 commit comments

Comments
 (0)