We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81198ed commit 39b4196Copy full SHA for 39b4196
dist/index.js
@@ -16153,17 +16153,19 @@ async function run() {
16153
const res = await octokit.rest.checks.update({
16154
owner : owner,
16155
repo : repo,
16156
- check_run_id: id.data.id
+ check_run_id: id.data.id,
16157
+ status: "completed",
16158
+ conclusion: "action_required",
16159
+ completed_at: new Date(),
16160
+ output: {
16161
+ title: "Lambdatest smart UI checks!",
16162
+ summary: "The visual testing checks have been started!",
16163
+ },
16164
})
16165
}
16166
16167
setTimeout(update, 3000)
16168
-
16169
16170
16171
try{run();
0 commit comments