const { getInput} = require("@actions/core") const { existsSync, readFileSync } = require("fs") const zulipInit = require("zulip-js"); // Pass the path to your zuliprc file here. const config = { username: getInput("email"), apiKey: getInput("key"), realm: getInput("url") }; console.log(config); (async () => { const client = await zulipInit(config); let content = getInput("text").split(/(?