release.yml

 1# Configuration for GitHub's automatically generated release notes.
 2# This file controls how PRs are categorized in release notes.
 3# For more info: https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes
 4
 5changelog:
 6  exclude:
 7    labels:
 8      - "skip-changelog"
 9  categories:
10    - title: "New Features"
11      labels:
12        - "enhancement"
13        - "feature"
14    - title: "Bug Fixes"
15      labels:
16        - "bug"
17        - "fix"
18    - title: "Performance Improvements"
19      labels:
20        - "performance"
21    - title: "Documentation"
22      labels:
23        - "documentation"
24    - title: "Dependencies"
25      labels:
26        - "dependencies"
27    - title: "Continuous Integration"
28      labels:
29        - "ci"
30    - title: "Chores"
31      labels:
32        - "chore"
33    - title: "Other Changes"
34      labels:
35        - "*"