From a2aae2e903d1f66c8766c91f56843cd1f6b9eda3 Mon Sep 17 00:00:00 2001 From: Bassem Dghaidi <568794+Link-@users.noreply.github.com> Date: Thu, 23 May 2024 09:22:18 -0700 Subject: [PATCH] Add warning --- dist/save-only/index.js | 1 + dist/save/index.js | 1 + src/saveImpl.ts | 2 ++ 3 files changed, 4 insertions(+) diff --git a/dist/save-only/index.js b/dist/save-only/index.js index 507094f..1bb8cf7 100644 --- a/dist/save-only/index.js +++ b/dist/save-only/index.js @@ -66004,6 +66004,7 @@ function saveImpl(stateProvider) { utils.logWarning(`Event Validation Error: The event type ${process.env[constants_1.Events.Key]} is not supported because it's not tied to a branch or tag ref.`); return; } + core.info(`We're running from the awesome codebase!!!`); // If restore has stored a primary key in state, reuse that // Else re-evaluate from inputs const primaryKey = stateProvider.getState(constants_1.State.CachePrimaryKey) || diff --git a/dist/save/index.js b/dist/save/index.js index 6bea0dc..f07234f 100644 --- a/dist/save/index.js +++ b/dist/save/index.js @@ -66004,6 +66004,7 @@ function saveImpl(stateProvider) { utils.logWarning(`Event Validation Error: The event type ${process.env[constants_1.Events.Key]} is not supported because it's not tied to a branch or tag ref.`); return; } + core.info(`We're running from the awesome codebase!!!`); // If restore has stored a primary key in state, reuse that // Else re-evaluate from inputs const primaryKey = stateProvider.getState(constants_1.State.CachePrimaryKey) || diff --git a/src/saveImpl.ts b/src/saveImpl.ts index 4e5c312..003d7cb 100644 --- a/src/saveImpl.ts +++ b/src/saveImpl.ts @@ -32,6 +32,8 @@ export async function saveImpl( return; } + core.info(`We're running from the awesome codebase!!!`) + // If restore has stored a primary key in state, reuse that // Else re-evaluate from inputs const primaryKey =