[ci skip] couple more fixes for build pr jar label (#8599)

This commit is contained in:
Jake Potrebic
2022-11-30 12:45:27 -08:00
parent 5756691b5a
commit 7caeec36fc
2 changed files with 10 additions and 15 deletions

View File

@ -53,16 +53,16 @@ jobs:
if (pull) {
result["pr"] = pull.number;
result["action"] = "paperclip";
core.info(`This is a push action but to a branch with an open PR with the build paperclip label (${JSON.stringify(result)})`);
core.notice(`This is a push action but to a branch with an open PR with the build paperclip label (${JSON.stringify(result)})`);
return result;
}
} else if (event_name === "pull_request" && event.pull_request.labels.find((l) => l.name === "build-pr-jar")) {
result["pr"] = event.pull_request.number;
result["action"] = "paperclip";
core.info(`This is a pull request action with a build paperclip label (${JSON.stringify(result)})`);
core.notice(`This is a pull request action with a build paperclip label (${JSON.stringify(result)})`);
return result;
}
core.info("This will not build a paperclip jar");
core.notice("This will not build a paperclip jar");
return result;
- name: Apply Patches
@ -72,7 +72,6 @@ jobs:
./gradlew applyPatches --stacktrace
- name: Build
if: fromJSON(steps.determine.outputs.result).action == 'build'
run: ./gradlew build --stacktrace
- name: Create Paperclip Jar