Skip to content

Instantly share code, notes, and snippets.

@anoopt
Created July 7, 2021 17:05
Show Gist options
  • Select an option

  • Save anoopt/057adac34f16953cd53acfdcb89deba3 to your computer and use it in GitHub Desktop.

Select an option

Save anoopt/057adac34f16953cd53acfdcb89deba3 to your computer and use it in GitHub Desktop.
const clientId: string = core.getInput('clientId', { required: true });
const clientSecret: string = core.getInput('clientSecret', { required: true });
const tenantId: string = core.getInput('tenantId', { required: true });
const start: string = core.getInput('start');
const end: string = core.getInput('end');
const subject: string = core.getInput('subject', { required: true });
const body: string = core.getInput('body', { required: true });
const userEmail: string = core.getInput('userEmail', { required: true });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment