octoflare
Advanced tools
Comparing version 0.7.2 to 0.7.3
@@ -32,3 +32,3 @@ import memoize from 'lodash/memoize.js'; | ||
onCreateCheck(check_run_id); | ||
const completeCheckRun = ((params) => kit.rest.checks.update({ | ||
const completeCheckRun = ((complete_params) => kit.rest.checks.update({ | ||
check_run_id, | ||
@@ -38,8 +38,8 @@ owner: params.owner, | ||
status: 'completed', | ||
...params | ||
...complete_params | ||
})); | ||
const dispatchWorkflow = (async (params) => { | ||
const dispatchWorkflow = (async (dispatch_params) => { | ||
const octokit = await getRepoInstallation(params); | ||
await octokit.rest.actions.createWorkflowDispatch({ | ||
...params, | ||
...dispatch_params, | ||
inputs: { | ||
@@ -50,3 +50,3 @@ token, | ||
check_run_id, | ||
...params.inputs | ||
...dispatch_params.inputs | ||
} | ||
@@ -53,0 +53,0 @@ }); |
{ | ||
"name": "octoflare", | ||
"version": "0.7.2", | ||
"version": "0.7.3", | ||
"description": "A framework for building GitHub Apps with Cloudflare Worker", | ||
@@ -5,0 +5,0 @@ "type": "module", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
15276