mirror of
https://github.com/softprops/action-gh-release.git
synced 2025-05-11 02:44:20 +00:00
Change default behaviour to undefined for make_latest
This commit is contained in:
parent
622aee2066
commit
61ec6b80b2
2 changed files with 13 additions and 13 deletions
|
@ -52,7 +52,7 @@ describe("util", () => {
|
|||
input_target_commitish: undefined,
|
||||
input_discussion_category_name: undefined,
|
||||
input_generate_release_notes: false,
|
||||
input_make_latest: "true",
|
||||
input_make_latest: undefined,
|
||||
})
|
||||
);
|
||||
});
|
||||
|
@ -73,7 +73,7 @@ describe("util", () => {
|
|||
input_target_commitish: undefined,
|
||||
input_discussion_category_name: undefined,
|
||||
input_generate_release_notes: false,
|
||||
input_make_latest: "true",
|
||||
input_make_latest: undefined,
|
||||
})
|
||||
);
|
||||
});
|
||||
|
@ -94,7 +94,7 @@ describe("util", () => {
|
|||
input_target_commitish: undefined,
|
||||
input_discussion_category_name: undefined,
|
||||
input_generate_release_notes: false,
|
||||
input_make_latest: "true",
|
||||
input_make_latest: undefined,
|
||||
})
|
||||
);
|
||||
});
|
||||
|
@ -128,7 +128,7 @@ describe("util", () => {
|
|||
input_target_commitish: undefined,
|
||||
input_discussion_category_name: undefined,
|
||||
input_generate_release_notes: false,
|
||||
input_make_latest: "true"
|
||||
input_make_latest: undefined
|
||||
}
|
||||
);
|
||||
});
|
||||
|
@ -154,7 +154,7 @@ describe("util", () => {
|
|||
input_target_commitish: "affa18ef97bc9db20076945705aba8c516139abd",
|
||||
input_discussion_category_name: undefined,
|
||||
input_generate_release_notes: false,
|
||||
input_make_latest: "true"
|
||||
input_make_latest: undefined
|
||||
}
|
||||
);
|
||||
});
|
||||
|
@ -179,7 +179,7 @@ describe("util", () => {
|
|||
input_target_commitish: undefined,
|
||||
input_discussion_category_name: "releases",
|
||||
input_generate_release_notes: false,
|
||||
input_make_latest: "true"
|
||||
input_make_latest: undefined
|
||||
}
|
||||
);
|
||||
});
|
||||
|
@ -205,7 +205,7 @@ describe("util", () => {
|
|||
input_target_commitish: undefined,
|
||||
input_discussion_category_name: undefined,
|
||||
input_generate_release_notes: true,
|
||||
input_make_latest: "true"
|
||||
input_make_latest: undefined
|
||||
}
|
||||
);
|
||||
});
|
||||
|
@ -234,7 +234,7 @@ describe("util", () => {
|
|||
input_target_commitish: undefined,
|
||||
input_discussion_category_name: undefined,
|
||||
input_generate_release_notes: false,
|
||||
input_make_latest: "true"
|
||||
input_make_latest: undefined
|
||||
}
|
||||
);
|
||||
});
|
||||
|
@ -261,7 +261,7 @@ describe("util", () => {
|
|||
input_target_commitish: undefined,
|
||||
input_discussion_category_name: undefined,
|
||||
input_generate_release_notes: false,
|
||||
input_make_latest: "true"
|
||||
input_make_latest: undefined
|
||||
}
|
||||
);
|
||||
});
|
||||
|
@ -287,7 +287,7 @@ describe("util", () => {
|
|||
input_target_commitish: undefined,
|
||||
input_discussion_category_name: undefined,
|
||||
input_generate_release_notes: false,
|
||||
input_make_latest: "true"
|
||||
input_make_latest: undefined
|
||||
}
|
||||
);
|
||||
});
|
||||
|
@ -337,7 +337,7 @@ describe("util", () => {
|
|||
input_target_commitish: undefined,
|
||||
input_discussion_category_name: undefined,
|
||||
input_generate_release_notes: false,
|
||||
input_make_latest: "true"
|
||||
input_make_latest: undefined
|
||||
}
|
||||
);
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue