Replies: 1 comment
-
The task does not support generating a changelog between a tag and the current build. It can only tags for filtering historic build runs, as it doing. So to explain what is occurring:
If you want to compare against some historic run have a look at #1557 as it discusses exactly that problem and provides a solution |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to to generate a changelog between a tag and the current build.
Follow the wiki I set:
My azure pipeline is triggered manually with two stages:
I use the version 3 of XplatGenerateReleaseNotes
This is the task
From log I see:
Getting the current build details
Only considering builds with the tag(s) '0.3.6'
Getting items associated the builds since the last successful build to the stage 'ChangeLog'
Found '3' matching builds to consider
Matching 'successful' builds only
Comparing 1346710 against 1346710
Ignore compare against self
Comparing 1346680 against 1346710
Skipping build as does not have the correct tags
Comparing 1346675 against 1346710
Skipping build as does not have the correct tags
There has been no past successful build for this stage, we need to get the details for all past builds
Using workaround for build API limitation (see issue #349)
The result is that I made a comparison among all the previous build and the current one.
I use the same XplatGenerateReleaseNotes@3 with checkStage set to false and it work correctly (in this case the pipeline is triggered automatically when I push on main)
Beta Was this translation helpful? Give feedback.
All reactions