The this commit has broken manual bumping.
This is because $GITHUB_BASE_REF is only set for PRs, otherwise it is empty. This means that ${default_branch} == "" which leads to evaluating history_type["full"]="$(git log ..HEAD --format=%B)" and therefore no full history to check for manual bumping tags.
A quick check suggests that $GITHUB_REF may be what was intended. See github actions environment variables. However I can't say if it will work in all cases, such as PRs.
The this commit has broken manual bumping.
This is because
$GITHUB_BASE_REFis only set for PRs, otherwise it is empty. This means that${default_branch} == ""which leads to evaluatinghistory_type["full"]="$(git log ..HEAD --format=%B)"and therefore no full history to check for manual bumping tags.A quick check suggests that
$GITHUB_REFmay be what was intended. See github actions environment variables. However I can't say if it will work in all cases, such as PRs.