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
15 changes: 15 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
changelog:
categories:
- title: Breaking changes
labels: [breaking-change]
- title: Features
labels: [feature, enhancement]
- title: Fixes
labels: [fix, bug]
- title: Maintenance
labels: [chore, documentation, dependencies]
- title: Other changes
labels: ['*']
exclude:
labels: [skip-changelog]
authors: [dependabot]
3 changes: 2 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ Releases are tagged from a clean, merged `main` commit:
1. Confirm `pyproject.toml` and `CITATION.cff` contain the intended version.
2. Run the validation commands above and confirm `main` is clean and current.
3. Create an annotated `vX.Y.Z` tag on the merged commit and push the tag.
4. Create a normal GitHub release with notes summarizing the relevant commits.
4. Create the GitHub release; the repository generates categorized notes from
merged pull requests and contributors.
5. Confirm the tag, release, and version metadata agree.

The tag workflow reruns the release checks for every `v*.*.*` tag.
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@ skill-discovery/
│ ├── config.yml # disables blank issues
│ └── feature_request.yml # structured feature request form
├── dependabot.yml # weekly action version updates
├── release.yml # generated release-note categories
├── workflows/
│ ├── ci.yml # validate + monitor jobs
│ ├── dependabot-auto-merge.yml # auto-merge minor/patch dependabot PRs
Expand Down