Skip to content

Commit 4a84a3b

Browse files
authored
Merge pull request #1 from codee-sh/release/v1.0.1
release: v1.0.1
2 parents 0e49454 + 220176c commit 4a84a3b

15 files changed

Lines changed: 1380 additions & 17 deletions

.changeset/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changesets
2+
3+
Hello and welcome! This folder has been created automatically by `@changesets/cli`, a build tool that works
4+
with multi-package repos, or single-package repos to help you version and publish your code. You can
5+
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6+
7+
We have a quick list of common questions to get you started engaging with this project in
8+
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

.changeset/config.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/config@3.1.1/schema.json",
3+
"changelog": "@changesets/changelog-git",
4+
"commit": false,
5+
"fixed": [],
6+
"linked": [],
7+
"access": "public",
8+
"baseBranch": "main",
9+
"updateInternalDependencies": "patch",
10+
"ignore": []
11+
}

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
## Description
2+
3+
<!-- Describe your changes in detail -->
4+
5+
## Type of Change
6+
7+
<!-- Mark the relevant option with an "x" -->
8+
9+
- [ ] Feature (new functionality)
10+
- [ ] Bug fix
11+
- [ ] Improvement/Refactor
12+
- [ ] Documentation
13+
- [ ] Dependencies update
14+
15+
## Testing
16+
17+
<!-- Describe how you tested your changes -->
18+
19+
## Checklist
20+
21+
- [ ] Code follows project style guidelines
22+
- [ ] Self-review completed
23+
- [ ] Comments added for complex code
24+
- [ ] Documentation updated (if needed)
25+
- [ ] No new warnings generated
26+

.github/labeler.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Auto-label PRs based on title patterns
2+
# This helps with automatic release notes generation
3+
4+
"type: feature":
5+
- title: ["feat:", "feature:", "add "]
6+
- head: ["feat/", "feature/", "add/"]
7+
8+
"type: bug":
9+
- title: ["fix:", "bug:", "bugfix:", "resolve "]
10+
- head: ["fix/", "bug/", "bugfix/"]
11+
12+
"type: improvement":
13+
- title: ["refactor:", "improve:", "update ", "enhance "]
14+
- head: ["refactor/", "improve/", "update/"]
15+
16+
"type: docs":
17+
- title: ["docs:", "documentation:"]
18+
- head: ["docs/", "documentation/"]
19+
20+
dependencies:
21+
- title: ["deps:", "dependencies:", "bump "]
22+
- head: ["deps/", "dependencies/"]
23+
24+
"type: chore":
25+
- title: ["chore:"]
26+
- head: ["chore/"]
27+
28+
breaking:
29+
- title: ["breaking:", "BREAKING:"]
30+
- head: ["breaking/"]
31+

.github/release.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
changelog:
2+
exclude:
3+
labels:
4+
- ignore-for-release
5+
authors:
6+
- dependabot
7+
- github-actions
8+
categories:
9+
- title: Features
10+
labels:
11+
- "type: feature"
12+
- title: Bugs
13+
labels:
14+
- "type: bug"
15+
- title: Improvements
16+
labels:
17+
- "type: improvement"
18+
- title: Documentation
19+
labels:
20+
- "type: docs"
21+
- docs
22+
- title: Dependencies
23+
labels:
24+
- dependencies
25+
- dependabot
26+
- title: Other Changes
27+
labels:
28+
- "*"
29+

.github/workflows/pr-labeler.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: PR Labeler
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize]
6+
7+
jobs:
8+
label:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
contents: read
12+
pull-requests: write
13+
steps:
14+
- name: Label PR based on title
15+
uses: actions/labeler@v5
16+
with:
17+
repo-token: "${{ secrets.GITHUB_TOKEN }}"
18+
configuration-path: .github/labeler.yml
19+
sync-labels: true
20+

0 commit comments

Comments
 (0)