Skip to content

Commit

Permalink
fix: inputs not marked as required (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasecdb authored Jul 1, 2022
1 parent 1d165e6 commit d0d16ee
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import { createSession, getAuthToken } from './create-session.js'

async function run(): Promise<void> {
try {
const account: string = core.getInput('account')
const appKey = core.getInput('app-key')
const appToken = core.getInput('app-token')
const account = core.getInput('account', { required: true })
const appKey = core.getInput('app-key', { required: true })
const appToken = core.getInput('app-token', { required: true })

const token = await getAuthToken({
appkey: appKey,
Expand Down

0 comments on commit d0d16ee

Please sign in to comment.