From 700756f02de5c097f181d91b0e4c037be54b971f Mon Sep 17 00:00:00 2001 From: Christian Pernot Date: Thu, 28 Mar 2024 13:31:48 +0100 Subject: [PATCH] Fix #20 : Add commit count --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index 89c24f4..11f22f0 100644 --- a/index.js +++ b/index.js @@ -33,6 +33,7 @@ async function main() { } core.setOutput('commits', JSON.stringify(commits)) + core.setOutput('commit_count', commits.length) } catch (error) { core.setFailed(error.message) }