mirror of
https://github.com/actions/github-script.git
synced 2026-04-07 14:49:25 +00:00
Fix result-enoding/encoding typo
This commit is contained in:
parent
9abe67e516
commit
99889c25e0
2 changed files with 7 additions and 7 deletions
|
|
@ -19,8 +19,8 @@ async function main() {
|
|||
const fn = new AsyncFunction('require', 'github', 'context', script)
|
||||
const result = await fn(require, client, context)
|
||||
|
||||
let encoding = core.getInput('result-enoding')
|
||||
encoding = encoding != null ? encoding : 'json'
|
||||
let encoding = core.getInput('result-encoding')
|
||||
encoding = encoding ? encoding : 'json'
|
||||
|
||||
let output
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue