Skip to content

Commit 7e06f3f

Browse files
authored
feat: Add an initial changelog config (#5145)
### Description Craft will support generating changelogs from PR labels in getsentry/craft#628. Add an initial config for our repo. #### Issues <!-- * resolves: #1234 * resolves: LIN-1234 --> #### Reminders - Please add tests to validate your changes, and lint your code using `tox -e linters`. - Add GH Issue ID _&_ Linear ID (if applicable) - PR title should use [conventional commit](https://develop.sentry.dev/engineering-practices/commit-messages/#type) style (`feat:`, `fix:`, `ref:`, `meta:`) - For external contributors: [CONTRIBUTING.md](https://github.com/getsentry/sentry-python/blob/master/CONTRIBUTING.md), [Sentry SDK development docs](https://develop.sentry.dev/sdk/), [Discord community](https://discord.gg/Ww9hbqr)
1 parent eb98edf commit 7e06f3f

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/release.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
changelog:
2+
exclude:
3+
labels:
4+
- skip-changelog
5+
authors:
6+
- dependabot
7+
categories:
8+
- title: New Features ✨
9+
labels:
10+
- "Changelog: Feature"
11+
- Feature
12+
- Improvement
13+
- New Integration
14+
- title: Bug Fixes 🐛
15+
labels:
16+
- "Changelog: Bugfix"
17+
- Bug
18+
- title: Documentation 📚
19+
labels:
20+
- "Changelog: Docs"
21+
- Docs
22+
- "Component: Docs"
23+
- title: Internal Changes 🔧
24+
labels:
25+
- "Changelog: Internal"
26+
- Quality Improvement

0 commit comments

Comments
 (0)