run main function

Signed-off-by: Shakar <5h4k4r.b4kr@gmail.com>
This commit is contained in:
Shakar 2023-09-17 16:56:59 +03:00
parent 81f74c5925
commit b635f35c0f
No known key found for this signature in database
GPG Key ID: DA55A26823AE3C28

View File

@ -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);
}
}