We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
create_annotated_tag
1 parent 3f9dffd commit a1afa11Copy full SHA for a1afa11
src/action.ts
@@ -25,7 +25,9 @@ export default async function main() {
25
const releaseBranches = core.getInput('release_branches');
26
const preReleaseBranches = core.getInput('pre_release_branches');
27
const appendToPreReleaseTag = core.getInput('append_to_pre_release_tag');
28
- const createAnnotatedTag = !!core.getInput('create_annotated_tag');
+ const createAnnotatedTag = /true/i.test(
29
+ core.getInput('create_annotated_tag')
30
+ );
31
const dryRun = core.getInput('dry_run');
32
const customReleaseRules = core.getInput('custom_release_rules');
33
const shouldFetchAllTags = core.getInput('fetch_all_tags');
0 commit comments