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
25 changes: 25 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
changelog:
exclude:
labels:
- skip-changelog
authors:
- dependabot
categories:
- title: Breaking Changes 🛠
labels:
- Semver-Major
- breaking-change
- title: New Features ✨
labels:
- Semver-Minor
- enhancement
- title: Bug Fixes 🐛
labels:
- Semver-Patch
- bug
- title: Documentation 📚
labels:
- documentation
- title: Internal Changes 🔧
labels:
- internal
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -391,14 +391,14 @@ In `auto` mode, `craft prepare` will use the following logic:
2. Else if there is an entry named `Unreleased`, rename that to the given
version
3. Else, create a new section for the version and populate it with the changes
since the last version. It uses [GitHub
Milestones](https://docs.github.com/en/issues/using-labels-and-milestones-to-track-work/about-milestones)
to provide a concise and rich changelog. If the PRs are associated with a
milestone, the milestone title and description are used as the changelog
entry alongside a brief list of associated PRs. Any individual commits and
PRs are listed under the "Various improvements & fixes" section at the
bottom. Check out [Craft's own
releases](https://github.com/getsentry/craft/releases/) as example.
since the last version. It uses `.github/release.yml` configuration to
categorize PRs by labels. PRs are matched to categories based on their
labels, and any PRs that don't match a category are listed under the "Other"
section. The system supports custom categories, exclusions (both global and
per-category), and wildcard matching. If `.github/release.yml` doesn't exist
or has no `changelog` section, all PRs are listed under "Other". Check out
[GitHub's release notes documentation](https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes#configuration-options)
for the configuration format.

**Configuration**

Expand Down
3 changes: 3 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@ module.exports = {
testEnvironment: 'node',
testPathIgnorePatterns: ['<rootDir>/dist/', '<rootDir>/node_modules/'],
modulePathIgnorePatterns: ['<rootDir>/dist/'],
transformIgnorePatterns: [
'node_modules/(?!(dot-prop|configstore)/)',
],
};
Loading
Loading