Files
actions-custom-js/main.js
T
tom.coursow f2fae7646a
Test / test (push) Successful in 10s
main.js aktualisiert
2023-07-27 20:45:54 +02:00

19 lines
281 B
JavaScript

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');
// Get Action Input Values
// Process
// Produce Action Output
}
run();