From b635f35c0fe76dac48cf3decd1be30582417a0c2 Mon Sep 17 00:00:00 2001 From: Shakar <5h4k4r.b4kr@gmail.com> Date: Sun, 17 Sep 2023 16:56:59 +0300 Subject: [PATCH] run main function Signed-off-by: Shakar <5h4k4r.b4kr@gmail.com> --- index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.js b/index.js index 8207b95..773d91c 100644 --- a/index.js +++ b/index.js @@ -2,6 +2,7 @@ const core = require('@actions/core') const github = require('@actions/github') const fs = require('fs') +run(); async function run() { try { console.log(`CWD: ${process.cwd()}`) @@ -138,3 +139,4 @@ async function commitChanges(filePath) { console.error('Error committing changes:', error); } } +