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 037b78e commit 81198edCopy full SHA for 81198ed
dist/index.js
@@ -16149,13 +16149,15 @@ async function run() {
16149
});
16150
console.log("created check run ID", id);
16151
16152
-
+ async function update(){
16153
+ const res = await octokit.rest.checks.update({
16154
+ owner : owner,
16155
+ repo : repo,
16156
+ check_run_id: id.data.id
16157
+ })
16158
+ }
16159
- setTimeout(await octokit.rest.checks.update({
- owner : owner,
- repo : repo,
- check_run_id: id.data.id
- }), 3000)
16160
+ setTimeout(update, 3000)
16161
16162
16163
0 commit comments