Skip to content

Commit

Permalink
Fix context splat
Browse files Browse the repository at this point in the history
  • Loading branch information
silverlyra committed May 2, 2023
1 parent 1c1a77e commit 5cae107
Show file tree
Hide file tree
Showing 15 changed files with 22 additions and 22 deletions.
6 changes: 3 additions & 3 deletions dist/index-a160ae04.js → dist/index-756d22e5.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-a160ae04.js.map → dist/index-756d22e5.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/index-1cc29c8a.cjs → dist/index-fe166f5d.cjs

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.cjs

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.mjs

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

2 changes: 1 addition & 1 deletion dist/main.cjs

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

2 changes: 1 addition & 1 deletion dist/main.mjs

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

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "github-script-action",
"version": "0.0.2",
"version": "0.0.3",
"description": "GitHub Action for running inline JavaScript snippets",
"author": "Lyra Naeseth <[email protected]>",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export async function run<T extends Unknown = Unknown>(
try {
const result = await execute(script, {
...defaultContext(core.getInput('github-token') || undefined),
context
...context
})
core.setOutput(
'result',
Expand Down

0 comments on commit 5cae107

Please sign in to comment.