-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
investigate release notes automation #962
base: develop
Are you sure you want to change the base?
Changes from 28 commits
32feeb7
c1ddf5d
fa38bad
8a928ed
eabbf1e
4d28c00
837d58d
957a9db
762eac8
cae0c18
2538569
5d43e97
e565801
a8dfeca
282792c
2ac5683
214ec87
eace6a5
8875d0b
7d0ca77
f1db2e5
adc1232
2957e12
7b2c4d4
066d066
4ff6aad
3379d1a
91d95ea
1ab603f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,16 @@ | ||||||
feature: | ||||||
- head-branch: ['^feature/'] | ||||||
dependencies: | ||||||
- head-branch: ['^dependencies/'] | ||||||
enhancement: | ||||||
- head-branch: ['^enhancement/'] | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Following on from these being what they do, perhaps |
||||||
bug: | ||||||
- head-branch: ['^bug/'] | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
I think the branch names tend to be more to do with that they do, so this is normally |
||||||
deprecated: | ||||||
- head-branch: ['^deprecated/'] | ||||||
removed: | ||||||
- head-branch: ['^removed/'] | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
security: | ||||||
- head-branch: ['^security/'] | ||||||
documentation: | ||||||
- head-branch: ['^documentation/'] | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do these work with multiple? Could Same for feat/feature. Thinking about it, perhaps its worth aligning closer with https://www.conventionalcommits.org/en/v1.0.0/ (This is what DAFNI used, although they are for commits instead)? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
changelog: | ||
exclude: | ||
labels: | ||
- documentation | ||
- dependencies | ||
categories: | ||
- title: New Features | ||
labels: | ||
- feature | ||
- title: Changed | ||
labels: | ||
- enhancement | ||
- title: Fixed | ||
labels: | ||
- bug | ||
- title: Deprecated | ||
labels: | ||
- deprecated | ||
- title: Removed | ||
labels: | ||
- removed | ||
- title: Security | ||
labels: | ||
- security | ||
- title: Other Changes | ||
labels: | ||
- '*' |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
## Description | ||
|
||
Provide a clear and concise description of the issue or feature request. | ||
|
||
## Acceptance Criteria | ||
|
||
- [ ] List all criteria that must be met for this issue to be considered complete. | ||
- [ ] Each item should be actionable and testable. | ||
|
||
## Steps to Reproduce (For bugs) | ||
|
||
If this is a bug, provide the steps to reproduce the issue: | ||
|
||
1. Step one | ||
2. Step two | ||
3. Step three | ||
|
||
## Expected Behavior | ||
|
||
What should happen once the issue is resolved? | ||
|
||
## Actual Behavior (For bugs) | ||
|
||
What is happening instead of the expected behavior? | ||
|
||
## Screenshots or Logs (Optional) | ||
|
||
Include any relevant screenshots or logs that help explain the issue. | ||
|
||
## Additional Context | ||
|
||
Any other information that may help resolve the issue, such as environment details, code references, etc. | ||
|
||
## Labeling | ||
|
||
Ensure this issue has been labeled appropriately (e.g., bug, feature, enhancement, documentation). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps this and
dependency
if possible.