You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In one of our projects, we have a tag for each branch pushes.
For ex:
for master(for PROD env), we create tags like: 1.2.1, 1.2.2, etc
for dev(for DEV env), we create a non-prod tag something like 1.2.1-dev.0, 1.2.1-dev.1, etc (last prod tag + suffix like "dev.0")
While creating a release notes / Changelog, it is is autogenerated like:
# Changelog
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [1.4.2]({{host}}/{{owner}}/{{repository}}/compare/compare/1.4.1-dev.20...1.4.2) (2025-02-20)
and what we desire is:
# Changelog
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [1.4.2]({{host}}/{{owner}}/{{repository}}/compare/compare/1.4.1...1.4.2) (2025-02-20)
So is there a way to do this like:
FROM:
{{host}}/{{owner}}/{{repository}}/compare/{{previousTag}}...{{currentTag}}
TO:
{{host}}/{{owner}}/{{repository}}/compare/{{lastReleaseTag}}...{{currentTag}}
Could you please suggest what can be done here?
Thanks & regards,
Shri
The text was updated successfully, but these errors were encountered:
skbhardwaj
changed the title
Possibility to include lastReleaseTag as a Substitutions?
Possibility to include lastReleaseTag as a Substitution?
Feb 20, 2025
Hi,
In one of our projects, we have a tag for each branch pushes.
For ex:
for master(for PROD env), we create tags like: 1.2.1, 1.2.2, etc
for dev(for DEV env), we create a non-prod tag something like 1.2.1-dev.0, 1.2.1-dev.1, etc (last prod tag + suffix like "dev.0")
While creating a release notes / Changelog, it is is autogenerated like:
and what we desire is:
So is there a way to do this like:
FROM:
{{host}}/{{owner}}/{{repository}}/compare/{{previousTag}}...{{currentTag}}
TO:
{{host}}/{{owner}}/{{repository}}/compare/{{lastReleaseTag}}...{{currentTag}}
Could you please suggest what can be done here?
Thanks & regards,
Shri
The text was updated successfully, but these errors were encountered: