woodpecker-ci/plugin-ready-release-go

on switch from RC to full release, respect all changes

Closed this issue · 1 comments

6543 commented

atm only the canges between the last rc are tracked

see woodpecker-ci/woodpecker#2805 (comment)

it shows # First pre-release tag is: v2.0.0-rc.0 adding commits between v2.0.0-rc.0 and main in the log so it has the correct boundaries now, but I guess

unTaggedCommits = await git.log({
        from: firstRCTag, // v2.0.0-rc.0
        to: releaseBranch, // main
        symmetric: false,
      });

is missing to include the changes from v2.0.0-rc.0. Any ideas how I need to adjust the git.log call?