From 045f1dc3cc7942078f9ea978559c220b28c8c4c1 Mon Sep 17 00:00:00 2001 From: Brett Mayson Date: Mon, 16 Oct 2023 05:45:33 +0000 Subject: [PATCH] run locally --- dist/post/index.js | 2 +- src/post.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/post/index.js b/dist/post/index.js index 2f525a8..f29b836 100644 --- a/dist/post/index.js +++ b/dist/post/index.js @@ -25626,7 +25626,7 @@ var __importStar = (this && this.__importStar) || function (mod) { Object.defineProperty(exports, "__esModule", ({ value: true })); const core = __importStar(__nccwpck_require__(2186)); const fs = __importStar(__nccwpck_require__(7147)); -const annotate = core.getInput('annotate') === 'true'; +const annotate = core.getInput('annotate') !== 'false'; const file = '.hemttout/ci_annotation.txt'; function run() { if (!annotate) diff --git a/src/post.ts b/src/post.ts index 1cff17a..bab2a19 100644 --- a/src/post.ts +++ b/src/post.ts @@ -1,7 +1,7 @@ import * as core from '@actions/core' import * as fs from 'fs' -const annotate: boolean = core.getInput('annotate') === 'true' +const annotate: boolean = core.getInput('annotate') !== 'false' const file = '.hemttout/ci_annotation.txt'