Skip to content
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
8 changes: 8 additions & 0 deletions .changeset/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changesets

Hello and welcome! This folder has been created automatically by `@changesets/cli`, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it [in our repository](https://github.com/changesets/changesets)

We have a quick list of common questions to get you started engaging with this project in
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
11 changes: 11 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://unpkg.com/@changesets/config@3.1.1/schema.json",
"changelog": "@changesets/changelog-git",
"commit": false,
"fixed": [],
"linked": [],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}
26 changes: 26 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
## Description

<!-- Describe your changes in detail -->

## Type of Change

<!-- Mark the relevant option with an "x" -->

- [ ] Feature (new functionality)
- [ ] Bug fix
- [ ] Improvement/Refactor
- [ ] Documentation
- [ ] Dependencies update

## Testing

<!-- Describe how you tested your changes -->

## Checklist

- [ ] Code follows project style guidelines
- [ ] Self-review completed
- [ ] Comments added for complex code
- [ ] Documentation updated (if needed)
- [ ] No new warnings generated

31 changes: 31 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Auto-label PRs based on title patterns
# This helps with automatic release notes generation

"type: feature":
- title: ["feat:", "feature:", "add "]
- head: ["feat/", "feature/", "add/"]

"type: bug":
- title: ["fix:", "bug:", "bugfix:", "resolve "]
- head: ["fix/", "bug/", "bugfix/"]

"type: improvement":
- title: ["refactor:", "improve:", "update ", "enhance "]
- head: ["refactor/", "improve/", "update/"]

"type: docs":
- title: ["docs:", "documentation:"]
- head: ["docs/", "documentation/"]

dependencies:
- title: ["deps:", "dependencies:", "bump "]
- head: ["deps/", "dependencies/"]

"type: chore":
- title: ["chore:"]
- head: ["chore/"]

breaking:
- title: ["breaking:", "BREAKING:"]
- head: ["breaking/"]

29 changes: 29 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
changelog:
exclude:
labels:
- ignore-for-release
authors:
- dependabot
- github-actions
categories:
- title: Features
labels:
- "type: feature"
- title: Bugs
labels:
- "type: bug"
- title: Improvements
labels:
- "type: improvement"
- title: Documentation
labels:
- "type: docs"
- docs
- title: Dependencies
labels:
- dependencies
- dependabot
- title: Other Changes
labels:
- "*"

20 changes: 20 additions & 0 deletions .github/workflows/pr-labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: PR Labeler

on:
pull_request:
types: [opened, synchronize]

jobs:
label:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- name: Label PR based on title
uses: actions/labeler@v5
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
configuration-path: .github/labeler.yml
sync-labels: true

Loading
Loading