Initial commit

This commit is contained in:
2026-07-10 08:45:31 +00:00
commit 76a8f44003
8 changed files with 502 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
const fs = require('fs');
function main() {
const message = process.env.INPUT_MESSAGE || '';
const outputPath = process.env.GITHUB_OUTPUT;
const line = `message=${message}\n`;
if (outputPath) {
fs.appendFileSync(outputPath, line);
} else {
process.stdout.write(line);
}
}
main();