Created
July 7, 2021 17:05
-
-
Save anoopt/057adac34f16953cd53acfdcb89deba3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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