diff --git a/action/index.cjs b/action/index.cjs index ae6ea41..abdcb72 100644 --- a/action/index.cjs +++ b/action/index.cjs @@ -188210,7 +188210,7 @@ const robot = (app) => { } const sumOfAllChangedAssets = countDistinctAccounts + countDistinctStakingIdentities + countDistinctTokens; if (sumOfAllChangedAssets === 0) { - await fail("No identity, token or account changed."); + console.log("No identity, token or account changed."); return; } if (sumOfAllChangedAssets > 1) { diff --git a/src/bot.ts b/src/bot.ts index 9d2cbb2..43eda65 100644 --- a/src/bot.ts +++ b/src/bot.ts @@ -299,7 +299,7 @@ export const robot = (app: Probot) => { const sumOfAllChangedAssets = countDistinctAccounts + countDistinctStakingIdentities + countDistinctTokens; if (sumOfAllChangedAssets === 0) { - await fail("No identity, token or account changed."); + console.log("No identity, token or account changed."); return; } if (sumOfAllChangedAssets > 1) {