Added first basic custom js action logic

This commit is contained in:
2023-07-27 19:43:53 +02:00
parent 24b9fbb524
commit eb4a17b5c7
3 changed files with 273 additions and 2 deletions
+6 -2
View File
@@ -1,5 +1,9 @@
const core = require('@actions/core')
const github = require('@actions/github')
const exec = require('@actions/exec')
function run() {
core.notice('Hello from a custom JS Action');
}
run();
run();