Warn if the add-snippets input is used

This commit is contained in:
Michael B. Gale
2025-10-29 09:28:51 +00:00
parent db47d17142
commit 4ae68afd84
3 changed files with 17 additions and 0 deletions

View File

@@ -324,6 +324,13 @@ async function run() {
);
if (actionsUtil.getRequiredInput("skip-queries") !== "true") {
// Warn if the removed `add-snippets` input is used.
if (actionsUtil.getOptionalInput("add-snippets") !== undefined) {
logger.warning(
"The `add-snippets` input has been removed and no longer has any effect.",
);
}
runStats = await runQueries(
outputDir,
memory,