Skip to content
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

Introduce release template #121

Merged
merged 2 commits into from
Aug 12, 2024
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
17 changes: 17 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Release template for GitHub Releases

changelog:
categories:
- title: ✨ Features
labels:
- feature
- title: 🐛 Bugfixes
labels:
- bug-fix
- title: ✏️ Tasks
labels:
- '*'
exclude:
labels:
- feature
- bug-fix
Comment on lines +16 to +17
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member Author

@Goooler Goooler Aug 12, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice feature!
Do I understand correctly that all tasks should be covered by the 'housekeeping' label?"

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

✏️ Tasks now contains all but feature and bug-fix (housekeeping, dependencies and other categories).

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, let's process with this, I like automation 🌚

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changelog generation into file can be useful for integration with this plugin feature: https://github.com/JetBrains/gradle-changelog-plugin

It allows to see changelog in Jetbrains marketplace

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Goooler
Checked generated report, looks pretty nice, thanks for contribution ❤️

I see few things to improve:

  • can we add "🆙 Dependencies" section based on label (for easy track changes)?
  • is it possible to change title from "Nightly" to smth like "0.0.6-Nightly"?
image

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. Yes we can.
  2. We can keep the version name like 0.0.6-SNAPSHOT.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, perfect!
This is not urgent at all 🙂

3 changes: 3 additions & 0 deletions renovate.json5
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"labels": [
"dependencies",
],
"extends": [
"config:recommended",
]
Expand Down