diff --git a/.github/workflows/GH-771-wait.yml b/.github/workflows/GH-771-eventname.yml similarity index 67% rename from .github/workflows/GH-771-wait.yml rename to .github/workflows/GH-771-eventname.yml index bd69227a..671ad658 100644 --- a/.github/workflows/GH-771-wait.yml +++ b/.github/workflows/GH-771-eventname.yml @@ -1,4 +1,4 @@ -name: GH-771 - Wait +name: GH-771 - Event Name on: push: paths: @@ -16,6 +16,15 @@ on: permissions: {} jobs: + echo: + runs-on: ubuntu-24.04 + if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' }} + timeout-minutes: 5 + steps: + - name: Print note + run: | + echo 'Triggered by ${{ github.event_name }} event' + echo 'See https://github.com/kachick/wait-other-jobs/issues/771 for the detail' wait: runs-on: ubuntu-24.04 if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' }} @@ -30,10 +39,12 @@ jobs: retry-method: 'equal_intervals' min-interval-seconds: 5 attempt-limits: 30 + skip-same-workflow: 'false' wait-list: | [ { - "workflowFile": "GH-771-targets.yml", + "workflowFile": "GH-771-eventname.yml", + "jobName": "echo", "eventName": "${{ github.event_name }}" } ] diff --git a/.github/workflows/GH-771-targets.yml b/.github/workflows/GH-771-targets.yml deleted file mode 100644 index 1a1aeefb..00000000 --- a/.github/workflows/GH-771-targets.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: GH-771 - Targets -on: - push: - paths: - - '**GH-771**' - - 'action.yml' - - 'dist/**' - pull_request: - paths: - - '**GH-771**' - - 'action.yml' - - 'dist/**' - -# Disable all permissions in workflow global as to setup clean room -# However PRs will have read permissions because this project is on a public repository -permissions: {} - -jobs: - echo: - runs-on: ubuntu-24.04 - if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' }} - timeout-minutes: 5 - steps: - - name: Print note - run: | - echo 'Triggered by ${{ github.event_name }} event' - echo 'See https://github.com/kachick/wait-other-jobs/issues/771 for the detail' diff --git a/.github/workflows/GH-820-graceperiod.yml b/.github/workflows/GH-820-graceperiod.yml new file mode 100644 index 00000000..24957940 --- /dev/null +++ b/.github/workflows/GH-820-graceperiod.yml @@ -0,0 +1,97 @@ +name: GH-820 - Grace Period +on: + push: + branches: [main] + paths: + - '**GH-820**' + - 'action.yml' + - 'dist/**' + pull_request: + paths: + - '**GH-820**' + - 'action.yml' + - 'dist/**' + workflow_dispatch: + +# Disable all permissions in workflow global as to setup clean room +# However PRs will have read permissions because this project is on a public repository +permissions: {} + +jobs: + quickstarter-success: + runs-on: ubuntu-24.04 + timeout-minutes: 5 + steps: + - run: echo ':)' + intermediate: + runs-on: ubuntu-24.04 + timeout-minutes: 5 + steps: + - run: sleep 15 + slowstarter-success: + runs-on: ubuntu-24.04 + timeout-minutes: 5 + needs: [intermediate] + steps: + - run: echo ':)' + slowstarter-fail: + if: github.event_name == 'workflow_dispatch' + runs-on: ubuntu-24.04 + timeout-minutes: 5 + needs: [intermediate] + steps: + - run: | + echo ':<' + false + wait-success: + runs-on: ubuntu-24.04 + timeout-minutes: 15 + steps: + - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 + - uses: ./ + with: + retry-method: 'equal_intervals' + wait-seconds-before-first-polling: '0' + min-interval-seconds: '5' + attempt-limits: '100' + wait-list: | + [ + { + "workflowFile": "GH-820-graceperiod.yml", + "optional": false, + "jobName": "quickstarter-success" + }, + { + "workflowFile": "GH-820-graceperiod.yml", + "optional": false, + "jobName": "slowstarter-success", + "startupGracePeriod": { "seconds": 60 } + } + ] + wait-fail: + if: github.event_name == 'workflow_dispatch' + runs-on: ubuntu-24.04 + timeout-minutes: 15 + steps: + - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 + - uses: ./ + with: + retry-method: 'equal_intervals' + wait-seconds-before-first-polling: '0' + min-interval-seconds: '5' + attempt-limits: '100' + wait-list: | + [ + { + "workflowFile": "GH-820-graceperiod.yml", + "optional": false, + "jobName": "quickstarter-success" + }, + { + "workflowFile": "GH-820-graceperiod.yml", + "optional": false, + "jobName": "slowstarter-fail", + "startupGracePeriod": { "seconds": 60 } + } + ] + diff --git a/.github/workflows/itself.yml b/.github/workflows/itself.yml index 36633dd1..52cd0420 100644 --- a/.github/workflows/itself.yml +++ b/.github/workflows/itself.yml @@ -4,13 +4,11 @@ on: branches: [main] paths: - '.github/workflows/itself.yml' - - '.github/workflows/GH-771-echo.yml' - 'action.yml' - 'dist/**' pull_request: paths: - '.github/workflows/itself.yml' - - '.github/workflows/GH-771-echo.yml' - 'action.yml' - 'dist/**' schedule: @@ -32,8 +30,15 @@ jobs: timeout-minutes: 10 steps: - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 - # Do NOT specify any options here to make sure zero config may work + # Do NOT specify options except non omittable skip-list to make sure zero config may work - uses: ./ + with: + skip-list: | + [ + { + "workflowFile": "GH-820-graceperiod.yml" + } + ] validation_example_basic_errors_allow_failure: runs-on: ubuntu-24.04 if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' }} @@ -91,6 +96,12 @@ jobs: min-interval-seconds: 2 attempt-limits: 2 skip-same-workflow: 'true' + skip-list: | + [ + { + "workflowFile": "GH-820-graceperiod.yml" + } + ] equal_intervals: runs-on: ubuntu-24.04 if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' }} @@ -105,6 +116,12 @@ jobs: min-interval-seconds: 10 attempt-limits: 60 skip-same-workflow: 'true' + skip-list: | + [ + { + "workflowFile": "GH-820-graceperiod.yml" + } + ] wait-list: runs-on: ubuntu-24.04 if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' }} @@ -158,5 +175,8 @@ jobs: { "workflowFile": "merge-bot-pr.yml", "jobName": "dependabot" + }, + { + "workflowFile": "GH-820-graceperiod.yml" } ] diff --git a/.gitignore b/.gitignore index ad18682c..d9f9f649 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,8 @@ yarn-debug.log* yarn-error.log* lerna-debug.log* +tmp + # Diagnostic reports (https://nodejs.org/api/report.html) report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json diff --git a/.vscode/settings.json b/.vscode/settings.json index 63283558..aeaf701e 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -19,5 +19,10 @@ } } }, + "search.exclude": { + "dist/**": true, + "node_modules/**": true, + ".direnv/**": true + }, "deno.enable": false } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e9e0cfc..b635088e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,16 +3,16 @@ This file only records notable changes. Not synchronized with all releases and tags. - main - not yet released - - Nothing + - Add `startupGracePeriod` option in wait-list: [#820](https://github.com/kachick/wait-other-jobs/issues/820) - v3.2.0 - - Add option to specify the event in `wait-list`: [#771](https://github.com/kachick/wait-other-jobs/issues/771) + - Add `eventName` option in wait-list: [#771](https://github.com/kachick/wait-other-jobs/issues/771) - v3.1.0 - - Add option to disable validations for `wait-list` and missing checkRun: [#762](https://github.com/kachick/wait-other-jobs/pull/762) + - Add `optional` option in wait-list: [#762](https://github.com/kachick/wait-other-jobs/pull/762) - Refine inputs validations and the messages: [#766](https://github.com/kachick/wait-other-jobs/pull/766) - v3.0.0 - Wait other jobs which defined in same workflow by default: [#754](https://github.com/kachick/wait-other-jobs/issues/754)\ You can change this behavior with new option `skip-same-workflow: 'true'` - - Validate if the checkRun for the `wait-list` specified name is not found: [#760](https://github.com/kachick/wait-other-jobs/issues/760) + - Validate if the checkRun for the wait-list specified name is not found: [#760](https://github.com/kachick/wait-other-jobs/issues/760) - v2.0.2 - Allow some neutral patterns: [93299c](https://github.com/kachick/wait-other-jobs/commit/93299c2fa22fd463db31668eba54b34b58270696) - v2.0.0 diff --git a/README.md b/README.md index d3216555..e8e0b80f 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ with: # - If no jobName is specified, all the jobs in the workflow will be targeted. # - wait-list: # - If the checkRun for the specified name is not found, this action raise errors by default. - # You can disable this validation with `"optional": true`. + # You can disable this validation with `"optional": true` or use the `startupGracePeriod` that described in following section # - Wait for all event types by default, you can change with `"eventName": "EVENT_NAME_AS_push"`. wait-list: | [ @@ -117,11 +117,38 @@ See the [docs](docs/examples.md) for further detail. ``` Similar problems should be considered in matrix jobs. See [#761](https://github.com/kachick/wait-other-jobs/issues/761) for further detail -## Limitations +## Startup grace period - Since v3.3.0 + +Judge whether the checkRun state at the moment.\ +When some jobs are triggered late after this action, we need to use the following configurations. + +An example of using a `wait-list`. + +```yaml +with: + wait-list: | + [ + { + "workflowFile": "might_be_triggered_after_0-4_minutes.yml", + "optional": false, + "startupGracePeriod": { "minutes": 5 } + } + ] +``` -- Judge OK or Bad with the checkRun state at the moment.\ - When some jobs will be triggered after this action with `needs: [distant-first]`, it might be unaccurate.\ - (I didn't see actual example yet) +This action starts immediately but ignores the job missing in the first 5 minutes. + +- No need to extend `wait-seconds-before-first-polling` +- Disable `optional`, because it is needed to check +- Set enough value for `startupGracePeriod` for this purpose.\ + It should be parsible with [Temporal.Duration.from()](https://github.com/tc39/proposal-temporal)\ + e.g + - `"PT1M"` # ISO8601 duration format + - `{ "minutes": 3, "seconds": 20 }` # key-value for each unit + +If not using wait-list, this pattern should be considered in your `wait-seconds-before-first-polling`. + +## Limitations - If any workflow starts many jobs as 100+, this action does not support it.\ Because of nested paging in GraphQL makes complex. See [related docs](https://github.com/octokit/plugin-paginate-graphql.js/blob/a6b12e867466b0c583b002acd1cb1ed90b11841f/README.md#L184-L218) for further detail. diff --git a/dist/index.js b/dist/index.js index aebd9dd7..8d89d134 100644 --- a/dist/index.js +++ b/dist/index.js @@ -12,14 +12,14 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __getProtoOf = Object.getPrototypeOf; var __hasOwnProp = Object.prototype.hasOwnProperty; -var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, { - get: (a, b) => (typeof require !== "undefined" ? require : a)[b] -}) : x)(function(x) { +var __require = /* @__PURE__ */ ((x2) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x2, { + get: (a2, b2) => (typeof require !== "undefined" ? require : a2)[b2] +}) : x2)(function(x2) { if (typeof require !== "undefined") return require.apply(this, arguments); - throw Error('Dynamic require of "' + x + '" is not supported'); + throw Error('Dynamic require of "' + x2 + '" is not supported'); }); -var __esm = (fn, res) => function __init() { - return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res; +var __esm = (fn2, res) => function __init() { + return fn2 && (res = (0, fn2[__getOwnPropNames(fn2)[0]])(fn2 = 0)), res; }; var __commonJS = (cb, mod) => function __require2() { return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports; @@ -28,13 +28,13 @@ var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; -var __copyProps = (to, from, except, desc) => { +var __copyProps = (to2, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) - if (!__hasOwnProp.call(to, key) && key !== except) - __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); + if (!__hasOwnProp.call(to2, key) && key !== except) + __defProp(to2, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } - return to; + return to2; }; var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps( // If the importer is in node compatibility mode or this is not an ESM @@ -82,36 +82,36 @@ var require_utils = __commonJS({ var require_command = __commonJS({ "node_modules/.pnpm/@actions+core@1.10.1/node_modules/@actions/core/lib/command.js"(exports) { "use strict"; - var __createBinding = exports && exports.__createBinding || (Object.create ? function(o, m, k, k2) { - if (k2 === void 0) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { - return m[k]; + var __createBinding = exports && exports.__createBinding || (Object.create ? function(o2, m2, k2, k22) { + if (k22 === void 0) k22 = k2; + Object.defineProperty(o2, k22, { enumerable: true, get: function() { + return m2[k2]; } }); - } : function(o, m, k, k2) { - if (k2 === void 0) k2 = k; - o[k2] = m[k]; + } : function(o2, m2, k2, k22) { + if (k22 === void 0) k22 = k2; + o2[k22] = m2[k2]; }); - var __setModuleDefault = exports && exports.__setModuleDefault || (Object.create ? function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); - } : function(o, v) { - o["default"] = v; + var __setModuleDefault = exports && exports.__setModuleDefault || (Object.create ? function(o2, v2) { + Object.defineProperty(o2, "default", { enumerable: true, value: v2 }); + } : function(o2, v2) { + o2["default"] = v2; }); var __importStar = exports && exports.__importStar || function(mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) { - for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + for (var k2 in mod) if (k2 !== "default" && Object.hasOwnProperty.call(mod, k2)) __createBinding(result, mod, k2); } __setModuleDefault(result, mod); return result; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.issue = exports.issueCommand = void 0; - var os = __importStar(__require("os")); + var os2 = __importStar(__require("os")); var utils_1 = require_utils(); function issueCommand(command, properties, message) { const cmd = new Command(command, properties, message); - process.stdout.write(cmd.toString() + os.EOL); + process.stdout.write(cmd.toString() + os2.EOL); } exports.issueCommand = issueCommand; function issue(name, message = "") { @@ -151,11 +151,11 @@ var require_command = __commonJS({ return cmdStr; } }; - function escapeData(s) { - return utils_1.toCommandValue(s).replace(/%/g, "%25").replace(/\r/g, "%0D").replace(/\n/g, "%0A"); + function escapeData(s2) { + return utils_1.toCommandValue(s2).replace(/%/g, "%25").replace(/\r/g, "%0D").replace(/\n/g, "%0A"); } - function escapeProperty(s) { - return utils_1.toCommandValue(s).replace(/%/g, "%25").replace(/\r/g, "%0D").replace(/\n/g, "%0A").replace(/:/g, "%3A").replace(/,/g, "%2C"); + function escapeProperty(s2) { + return utils_1.toCommandValue(s2).replace(/%/g, "%25").replace(/\r/g, "%0D").replace(/\n/g, "%0A").replace(/:/g, "%3A").replace(/,/g, "%2C"); } } }); @@ -210,8 +210,8 @@ var init_stringify = __esm({ "node_modules/.pnpm/uuid@8.3.2/node_modules/uuid/dist/esm-node/stringify.js"() { init_validate(); byteToHex = []; - for (let i = 0; i < 256; ++i) { - byteToHex.push((i + 256).toString(16).substr(1)); + for (let i2 = 0; i2 < 256; ++i2) { + byteToHex.push((i2 + 256).toString(16).substr(1)); } stringify_default = stringify; } @@ -219,8 +219,8 @@ var init_stringify = __esm({ // node_modules/.pnpm/uuid@8.3.2/node_modules/uuid/dist/esm-node/v1.js function v1(options, buf, offset) { - let i = buf && offset || 0; - const b = buf || new Array(16); + let i2 = buf && offset || 0; + const b2 = buf || new Array(16); options = options || {}; let node = options.node || _nodeId; let clockseq = options.clockseq !== void 0 ? options.clockseq : _clockseq; @@ -235,11 +235,11 @@ function v1(options, buf, offset) { } let msecs = options.msecs !== void 0 ? options.msecs : Date.now(); let nsecs = options.nsecs !== void 0 ? options.nsecs : _lastNSecs + 1; - const dt = msecs - _lastMSecs + (nsecs - _lastNSecs) / 1e4; - if (dt < 0 && options.clockseq === void 0) { + const dt2 = msecs - _lastMSecs + (nsecs - _lastNSecs) / 1e4; + if (dt2 < 0 && options.clockseq === void 0) { clockseq = clockseq + 1 & 16383; } - if ((dt < 0 || msecs > _lastMSecs) && options.nsecs === void 0) { + if ((dt2 < 0 || msecs > _lastMSecs) && options.nsecs === void 0) { nsecs = 0; } if (nsecs >= 1e4) { @@ -250,21 +250,21 @@ function v1(options, buf, offset) { _clockseq = clockseq; msecs += 122192928e5; const tl = ((msecs & 268435455) * 1e4 + nsecs) % 4294967296; - b[i++] = tl >>> 24 & 255; - b[i++] = tl >>> 16 & 255; - b[i++] = tl >>> 8 & 255; - b[i++] = tl & 255; + b2[i2++] = tl >>> 24 & 255; + b2[i2++] = tl >>> 16 & 255; + b2[i2++] = tl >>> 8 & 255; + b2[i2++] = tl & 255; const tmh = msecs / 4294967296 * 1e4 & 268435455; - b[i++] = tmh >>> 8 & 255; - b[i++] = tmh & 255; - b[i++] = tmh >>> 24 & 15 | 16; - b[i++] = tmh >>> 16 & 255; - b[i++] = clockseq >>> 8 | 128; - b[i++] = clockseq & 255; - for (let n = 0; n < 6; ++n) { - b[i + n] = node[n]; - } - return buf || stringify_default(b); + b2[i2++] = tmh >>> 8 & 255; + b2[i2++] = tmh & 255; + b2[i2++] = tmh >>> 24 & 15 | 16; + b2[i2++] = tmh >>> 16 & 255; + b2[i2++] = clockseq >>> 8 | 128; + b2[i2++] = clockseq & 255; + for (let n2 = 0; n2 < 6; ++n2) { + b2[i2 + n2] = node[n2]; + } + return buf || stringify_default(b2); } var _nodeId, _clockseq, _lastMSecs, _lastNSecs, v1_default; var init_v1 = __esm({ @@ -282,24 +282,24 @@ function parse(uuid) { if (!validate_default(uuid)) { throw TypeError("Invalid UUID"); } - let v; + let v2; const arr = new Uint8Array(16); - arr[0] = (v = parseInt(uuid.slice(0, 8), 16)) >>> 24; - arr[1] = v >>> 16 & 255; - arr[2] = v >>> 8 & 255; - arr[3] = v & 255; - arr[4] = (v = parseInt(uuid.slice(9, 13), 16)) >>> 8; - arr[5] = v & 255; - arr[6] = (v = parseInt(uuid.slice(14, 18), 16)) >>> 8; - arr[7] = v & 255; - arr[8] = (v = parseInt(uuid.slice(19, 23), 16)) >>> 8; - arr[9] = v & 255; - arr[10] = (v = parseInt(uuid.slice(24, 36), 16)) / 1099511627776 & 255; - arr[11] = v / 4294967296 & 255; - arr[12] = v >>> 24 & 255; - arr[13] = v >>> 16 & 255; - arr[14] = v >>> 8 & 255; - arr[15] = v & 255; + arr[0] = (v2 = parseInt(uuid.slice(0, 8), 16)) >>> 24; + arr[1] = v2 >>> 16 & 255; + arr[2] = v2 >>> 8 & 255; + arr[3] = v2 & 255; + arr[4] = (v2 = parseInt(uuid.slice(9, 13), 16)) >>> 8; + arr[5] = v2 & 255; + arr[6] = (v2 = parseInt(uuid.slice(14, 18), 16)) >>> 8; + arr[7] = v2 & 255; + arr[8] = (v2 = parseInt(uuid.slice(19, 23), 16)) >>> 8; + arr[9] = v2 & 255; + arr[10] = (v2 = parseInt(uuid.slice(24, 36), 16)) / 1099511627776 & 255; + arr[11] = v2 / 4294967296 & 255; + arr[12] = v2 >>> 24 & 255; + arr[13] = v2 >>> 16 & 255; + arr[14] = v2 >>> 8 & 255; + arr[15] = v2 & 255; return arr; } var parse_default; @@ -314,8 +314,8 @@ var init_parse = __esm({ function stringToBytes(str) { str = unescape(encodeURIComponent(str)); const bytes = []; - for (let i = 0; i < str.length; ++i) { - bytes.push(str.charCodeAt(i)); + for (let i2 = 0; i2 < str.length; ++i2) { + bytes.push(str.charCodeAt(i2)); } return bytes; } @@ -338,8 +338,8 @@ function v35_default(name, version2, hashfunc) { bytes[8] = bytes[8] & 63 | 128; if (buf) { offset = offset || 0; - for (let i = 0; i < 16; ++i) { - buf[offset + i] = bytes[i]; + for (let i2 = 0; i2 < 16; ++i2) { + buf[offset + i2] = bytes[i2]; } return buf; } @@ -399,8 +399,8 @@ function v4(options, buf, offset) { rnds[8] = rnds[8] & 63 | 128; if (buf) { offset = offset || 0; - for (let i = 0; i < 16; ++i) { - buf[offset + i] = rnds[i]; + for (let i2 = 0; i2 < 16; ++i2) { + buf[offset + i2] = rnds[i2]; } return buf; } @@ -497,33 +497,33 @@ var init_esm_node = __esm({ var require_file_command = __commonJS({ "node_modules/.pnpm/@actions+core@1.10.1/node_modules/@actions/core/lib/file-command.js"(exports) { "use strict"; - var __createBinding = exports && exports.__createBinding || (Object.create ? function(o, m, k, k2) { - if (k2 === void 0) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { - return m[k]; + var __createBinding = exports && exports.__createBinding || (Object.create ? function(o2, m2, k2, k22) { + if (k22 === void 0) k22 = k2; + Object.defineProperty(o2, k22, { enumerable: true, get: function() { + return m2[k2]; } }); - } : function(o, m, k, k2) { - if (k2 === void 0) k2 = k; - o[k2] = m[k]; + } : function(o2, m2, k2, k22) { + if (k22 === void 0) k22 = k2; + o2[k22] = m2[k2]; }); - var __setModuleDefault = exports && exports.__setModuleDefault || (Object.create ? function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); - } : function(o, v) { - o["default"] = v; + var __setModuleDefault = exports && exports.__setModuleDefault || (Object.create ? function(o2, v2) { + Object.defineProperty(o2, "default", { enumerable: true, value: v2 }); + } : function(o2, v2) { + o2["default"] = v2; }); var __importStar = exports && exports.__importStar || function(mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) { - for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + for (var k2 in mod) if (k2 !== "default" && Object.hasOwnProperty.call(mod, k2)) __createBinding(result, mod, k2); } __setModuleDefault(result, mod); return result; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.prepareKeyValueMessage = exports.issueFileCommand = void 0; - var fs = __importStar(__require("fs")); - var os = __importStar(__require("os")); + var fs2 = __importStar(__require("fs")); + var os2 = __importStar(__require("os")); var uuid_1 = (init_esm_node(), __toCommonJS(esm_node_exports)); var utils_1 = require_utils(); function issueFileCommand(command, message) { @@ -531,10 +531,10 @@ var require_file_command = __commonJS({ if (!filePath) { throw new Error(`Unable to find environment variable for file command ${command}`); } - if (!fs.existsSync(filePath)) { + if (!fs2.existsSync(filePath)) { throw new Error(`Missing file at path: ${filePath}`); } - fs.appendFileSync(filePath, `${utils_1.toCommandValue(message)}${os.EOL}`, { + fs2.appendFileSync(filePath, `${utils_1.toCommandValue(message)}${os2.EOL}`, { encoding: "utf8" }); } @@ -548,7 +548,7 @@ var require_file_command = __commonJS({ if (convertedValue.includes(delimiter)) { throw new Error(`Unexpected input: value should not contain the delimiter "${delimiter}"`); } - return `${key}<<${delimiter}${os.EOL}${convertedValue}${os.EOL}${delimiter}`; + return `${key}<<${delimiter}${os2.EOL}${convertedValue}${os2.EOL}${delimiter}`; } exports.prepareKeyValueMessage = prepareKeyValueMessage; } @@ -575,7 +575,7 @@ var require_proxy = __commonJS({ if (proxyVar) { try { return new URL(proxyVar); - } catch (_a) { + } catch (_a2) { if (!proxyVar.startsWith("http://") && !proxyVar.startsWith("https://")) return new URL(`http://${proxyVar}`); } @@ -608,8 +608,8 @@ var require_proxy = __commonJS({ if (typeof reqPort === "number") { upperReqHosts.push(`${upperReqHosts[0]}:${reqPort}`); } - for (const upperNoProxyItem of noProxy.split(",").map((x) => x.trim().toUpperCase()).filter((x) => x)) { - if (upperNoProxyItem === "*" || upperReqHosts.some((x) => x === upperNoProxyItem || x.endsWith(`.${upperNoProxyItem}`) || upperNoProxyItem.startsWith(".") && x.endsWith(`${upperNoProxyItem}`))) { + for (const upperNoProxyItem of noProxy.split(",").map((x2) => x2.trim().toUpperCase()).filter((x2) => x2)) { + if (upperNoProxyItem === "*" || upperReqHosts.some((x2) => x2 === upperNoProxyItem || x2.endsWith(`.${upperNoProxyItem}`) || upperNoProxyItem.startsWith(".") && x2.endsWith(`${upperNoProxyItem}`))) { return true; } } @@ -671,10 +671,10 @@ var require_tunnel = __commonJS({ self.sockets = []; self.on("free", function onFree(socket, host, port, localAddress) { var options2 = toOptions(host, port, localAddress); - for (var i = 0, len = self.requests.length; i < len; ++i) { - var pending = self.requests[i]; + for (var i2 = 0, len = self.requests.length; i2 < len; ++i2) { + var pending = self.requests[i2]; if (pending.host === options2.host && pending.port === options2.port) { - self.requests.splice(i, 1); + self.requests.splice(i2, 1); pending.request.onSocket(socket); return; } @@ -820,14 +820,14 @@ var require_tunnel = __commonJS({ return host; } function mergeOptions(target) { - for (var i = 1, len = arguments.length; i < len; ++i) { - var overrides = arguments[i]; + for (var i2 = 1, len = arguments.length; i2 < len; ++i2) { + var overrides = arguments[i2]; if (typeof overrides === "object") { var keys = Object.keys(overrides); - for (var j = 0, keyLen = keys.length; j < keyLen; ++j) { - var k = keys[j]; - if (overrides[k] !== void 0) { - target[k] = overrides[k]; + for (var j2 = 0, keyLen = keys.length; j2 < keyLen; ++j2) { + var k2 = keys[j2]; + if (overrides[k2] !== void 0) { + target[k2] = overrides[k2]; } } } @@ -1246,8 +1246,8 @@ var require_constants = __commonJS({ "X-Requested-With", "X-XSS-Protection" ]; - for (let i = 0; i < wellknownHeaderNames.length; ++i) { - const key = wellknownHeaderNames[i]; + for (let i2 = 0; i2 < wellknownHeaderNames.length; ++i2) { + const key = wellknownHeaderNames[i2]; const lowerCasedKey = key.toLowerCase(); headerNameLowerCasedRecord[key] = headerNameLowerCasedRecord[lowerCasedKey] = lowerCasedKey; } @@ -1273,7 +1273,7 @@ var require_util = __commonJS({ var nodeUtil = __require("util"); var { stringify: stringify2 } = __require("querystring"); var { headerNameLowerCasedRecord } = require_constants(); - var [nodeMajor, nodeMinor] = process.versions.node.split(".").map((v) => Number(v)); + var [nodeMajor, nodeMinor] = process.versions.node.split(".").map((v2) => Number(v2)); function nop() { } function isStream(obj) { @@ -1412,29 +1412,29 @@ var require_util = __commonJS({ } var KEEPALIVE_TIMEOUT_EXPR = /timeout=(\d+)/; function parseKeepAliveTimeout(val) { - const m = val.toString().match(KEEPALIVE_TIMEOUT_EXPR); - return m ? parseInt(m[1], 10) * 1e3 : null; + const m2 = val.toString().match(KEEPALIVE_TIMEOUT_EXPR); + return m2 ? parseInt(m2[1], 10) * 1e3 : null; } function headerNameToString(value) { return headerNameLowerCasedRecord[value] || value.toLowerCase(); } function parseHeaders(headers, obj = {}) { if (!Array.isArray(headers)) return headers; - for (let i = 0; i < headers.length; i += 2) { - const key = headers[i].toString().toLowerCase(); + for (let i2 = 0; i2 < headers.length; i2 += 2) { + const key = headers[i2].toString().toLowerCase(); let val = obj[key]; if (!val) { - if (Array.isArray(headers[i + 1])) { - obj[key] = headers[i + 1].map((x) => x.toString("utf8")); + if (Array.isArray(headers[i2 + 1])) { + obj[key] = headers[i2 + 1].map((x2) => x2.toString("utf8")); } else { - obj[key] = headers[i + 1].toString("utf8"); + obj[key] = headers[i2 + 1].toString("utf8"); } } else { if (!Array.isArray(val)) { val = [val]; obj[key] = val; } - val.push(headers[i + 1].toString("utf8")); + val.push(headers[i2 + 1].toString("utf8")); } } if ("content-length" in obj && "content-disposition" in obj) { @@ -1446,9 +1446,9 @@ var require_util = __commonJS({ const ret = []; let hasContentLength = false; let contentDispositionIdx = -1; - for (let n = 0; n < headers.length; n += 2) { - const key = headers[n + 0].toString(); - const val = headers[n + 1].toString("utf8"); + for (let n2 = 0; n2 < headers.length; n2 += 2) { + const key = headers[n2 + 0].toString(); + const val = headers[n2 + 1].toString("utf8"); if (key.length === 14 && (key === "content-length" || key.toLowerCase() === "content-length")) { ret.push(key, val); hasContentLength = true; @@ -1594,11 +1594,11 @@ var require_util = __commonJS({ } function parseRangeHeader(range) { if (range == null || range === "") return { start: 0, end: null, size: null }; - const m = range ? range.match(/^bytes (\d+)-(\d+)\/(\d+)?$/) : null; - return m ? { - start: parseInt(m[1]), - end: m[2] ? parseInt(m[2]) : null, - size: m[3] ? parseInt(m[3]) : null + const m2 = range ? range.match(/^bytes (\d+)-(\d+)\/(\d+)?$/) : null; + return m2 ? { + start: parseInt(m2[1]), + end: m2[2] ? parseInt(m2[2]) : null, + size: m2[3] ? parseInt(m2[3]) : null } : null; } var kEnumerableProperty = /* @__PURE__ */ Object.create(null); @@ -1752,8 +1752,8 @@ var require_sbmh = __commonJS({ this._needle = needle; this._bufpos = 0; this._lookbehind = Buffer.alloc(needleLength); - for (var i = 0; i < needleLength - 1; ++i) { - this._occ[needle[i]] = needleLength - 1 - i; + for (var i2 = 0; i2 < needleLength - 1; ++i2) { + this._occ[needle[i2]] = needleLength - 1 - i2; } } inherits(SBMH, EventEmitter); @@ -1768,11 +1768,11 @@ var require_sbmh = __commonJS({ } const chlen = chunk.length; this._bufpos = pos || 0; - let r; - while (r !== chlen && this.matches < this.maxMatches) { - r = this._sbmh_feed(chunk); + let r2; + while (r2 !== chlen && this.matches < this.maxMatches) { + r2 = this._sbmh_feed(chunk); } - return r; + return r2; }; SBMH.prototype._sbmh_feed = function(data) { const len = data.length; @@ -1851,8 +1851,8 @@ var require_sbmh = __commonJS({ return pos < 0 ? this._lookbehind[this._lookbehind_size + pos] : data[pos]; }; SBMH.prototype._sbmh_memcmp = function(data, pos, len) { - for (var i = 0; i < len; ++i) { - if (this._sbmh_lookup_char(data, pos + i) !== this._needle[i]) { + for (var i2 = 0; i2 < len; ++i2) { + if (this._sbmh_lookup_char(data, pos + i2) !== this._needle[i2]) { return false; } } @@ -1872,7 +1872,7 @@ var require_PartStream = __commonJS({ ReadableStream.call(this, opts); } inherits(PartStream, ReadableStream); - PartStream.prototype._read = function(n) { + PartStream.prototype._read = function(n2) { }; module.exports = PartStream; } @@ -1936,9 +1936,9 @@ var require_HeaderParser = __commonJS({ } inherits(HeaderParser, EventEmitter); HeaderParser.prototype.push = function(data) { - const r = this.ss.push(data); + const r2 = this.ss.push(data); if (this.finished) { - return r; + return r2; } }; HeaderParser.prototype.reset = function() { @@ -1966,25 +1966,25 @@ var require_HeaderParser = __commonJS({ } const lines = this.buffer.split(RE_CRLF); const len = lines.length; - let m, h; - for (var i = 0; i < len; ++i) { - if (lines[i].length === 0) { + let m2, h2; + for (var i2 = 0; i2 < len; ++i2) { + if (lines[i2].length === 0) { continue; } - if (lines[i][0] === " " || lines[i][0] === " ") { - if (h) { - this.header[h][this.header[h].length - 1] += lines[i]; + if (lines[i2][0] === " " || lines[i2][0] === " ") { + if (h2) { + this.header[h2][this.header[h2].length - 1] += lines[i2]; continue; } } - const posColon = lines[i].indexOf(":"); + const posColon = lines[i2].indexOf(":"); if (posColon === -1 || posColon === 0) { return; } - m = RE_HDR.exec(lines[i]); - h = m[1].toLowerCase(); - this.header[h] = this.header[h] || []; - this.header[h].push(m[2] || ""); + m2 = RE_HDR.exec(lines[i2]); + h2 = m2[1].toLowerCase(); + this.header[h2] = this.header[h2] || []; + this.header[h2].push(m2[2] || ""); if (++this.npairs === this.maxHeaderPairs) { break; } @@ -2082,9 +2082,9 @@ var require_Dicer = __commonJS({ this._ignore(); } } - const r = this._hparser.push(data); - if (!this._inHeader && r !== void 0 && r < data.length) { - data = data.slice(r); + const r2 = this._hparser.push(data); + if (!this._inHeader && r2 !== void 0 && r2 < data.length) { + data = data.slice(r2); } else { return cb(); } @@ -2122,13 +2122,13 @@ var require_Dicer = __commonJS({ Dicer.prototype._oninfo = function(isMatch, data, start, end) { let buf; const self = this; - let i = 0; - let r; + let i2 = 0; + let r2; let shouldWriteMore = true; if (!this._part && this._justMatched && data) { - while (this._dashes < 2 && start + i < end) { - if (data[start + i] === DASH) { - ++i; + while (this._dashes < 2 && start + i2 < end) { + if (data[start + i2] === DASH) { + ++i2; ++this._dashes; } else { if (this._dashes) { @@ -2139,8 +2139,8 @@ var require_Dicer = __commonJS({ } } if (this._dashes === 2) { - if (start + i < end && this.listenerCount("trailer") !== 0) { - this.emit("trailer", data.slice(start + i, end)); + if (start + i2 < end && this.listenerCount("trailer") !== 0) { + this.emit("trailer", data.slice(start + i2, end)); } this.reset(); this._finished = true; @@ -2159,7 +2159,7 @@ var require_Dicer = __commonJS({ } if (!this._part) { this._part = new PartStream(this._partOpts); - this._part._read = function(n) { + this._part._read = function(n2) { self._unpause(); }; if (this._isPreamble && this.listenerCount("preamble") !== 0) { @@ -2186,9 +2186,9 @@ var require_Dicer = __commonJS({ if (buf) { this._hparser.push(buf); } - r = this._hparser.push(data.slice(start, end)); - if (!this._inHeader && r !== void 0 && r < end) { - this._oninfo(false, data, start + r, end); + r2 = this._hparser.push(data.slice(start, end)); + if (!this._inHeader && r2 !== void 0 && r2 < end) { + this._oninfo(false, data, start + r2, end); } } } @@ -2847,11 +2847,11 @@ var require_parseParams = __commonJS({ let charset = ""; let inquote = false; let escaping = false; - let p = 0; + let p2 = 0; let tmp = ""; const len = str.length; - for (var i = 0; i < len; ++i) { - const char = str[i]; + for (var i2 = 0; i2 < len; ++i2) { + const char = str[i2]; if (char === "\\" && inquote) { if (escaping) { escaping = false; @@ -2887,7 +2887,7 @@ var require_parseParams = __commonJS({ continue; } else if (state === STATE_KEY && (char === "*" || char === "=") && res.length) { state = char === "*" ? STATE_CHARSET : STATE_VALUE; - res[p] = [tmp, void 0]; + res[p2] = [tmp, void 0]; tmp = ""; continue; } else if (!inquote && char === ";") { @@ -2904,13 +2904,13 @@ var require_parseParams = __commonJS({ } else if (tmp.length) { tmp = decodeText(tmp, "binary", "utf8"); } - if (res[p] === void 0) { - res[p] = tmp; + if (res[p2] === void 0) { + res[p2] = tmp; } else { - res[p][1] = tmp; + res[p2][1] = tmp; } tmp = ""; - ++p; + ++p2; continue; } else if (!inquote && (char === " " || char === " ")) { continue; @@ -2927,12 +2927,12 @@ var require_parseParams = __commonJS({ } else if (tmp) { tmp = decodeText(tmp, "binary", "utf8"); } - if (res[p] === void 0) { + if (res[p2] === void 0) { if (tmp) { - res[p] = tmp; + res[p2] = tmp; } } else { - res[p][1] = tmp; + res[p2][1] = tmp; } return res; } @@ -2948,11 +2948,11 @@ var require_basename = __commonJS({ if (typeof path !== "string") { return ""; } - for (var i = path.length - 1; i >= 0; --i) { - switch (path.charCodeAt(i)) { + for (var i2 = path.length - 1; i2 >= 0; --i2) { + switch (path.charCodeAt(i2)) { case 47: case 92: - path = path.slice(i + 1); + path = path.slice(i2 + 1); return path === ".." || path === "." ? "" : path; } } @@ -2979,7 +2979,7 @@ var require_multipart = __commonJS({ var RE_NAME = /^name$/i; Multipart.detect = /^multipart\/form-data/i; function Multipart(boy, cfg) { - let i; + let i2; let len; const self = this; let boundary; @@ -2989,9 +2989,9 @@ var require_multipart = __commonJS({ const defCharset = cfg.defCharset || "utf8"; const preservePath = cfg.preservePath; const fileOpts = { highWaterMark: cfg.fileHwm }; - for (i = 0, len = parsedConType.length; i < len; ++i) { - if (Array.isArray(parsedConType[i]) && RE_BOUNDARY.test(parsedConType[i][0])) { - boundary = parsedConType[i][1]; + for (i2 = 0, len = parsedConType.length; i2 < len; ++i2) { + if (Array.isArray(parsedConType[i2]) && RE_BOUNDARY.test(parsedConType[i2][0])) { + boundary = parsedConType[i2][1]; break; } } @@ -3062,9 +3062,9 @@ var require_multipart = __commonJS({ parsed = parseParams(header["content-type"][0]); if (parsed[0]) { contype = parsed[0].toLowerCase(); - for (i = 0, len = parsed.length; i < len; ++i) { - if (RE_CHARSET.test(parsed[i][0])) { - charset = parsed[i][1].toLowerCase(); + for (i2 = 0, len = parsed.length; i2 < len; ++i2) { + if (RE_CHARSET.test(parsed[i2][0])) { + charset = parsed[i2][1].toLowerCase(); break; } } @@ -3081,11 +3081,11 @@ var require_multipart = __commonJS({ if (!RE_FIELD.test(parsed[0])) { return skipPart(part); } - for (i = 0, len = parsed.length; i < len; ++i) { - if (RE_NAME.test(parsed[i][0])) { - fieldname = parsed[i][1]; - } else if (RE_FILENAME.test(parsed[i][0])) { - filename = parsed[i][1]; + for (i2 = 0, len = parsed.length; i2 < len; ++i2) { + if (RE_NAME.test(parsed[i2][0])) { + fieldname = parsed[i2][1]; + } else if (RE_FILENAME.test(parsed[i2][0])) { + filename = parsed[i2][1]; if (!preservePath) { filename = basename(filename); } @@ -3126,7 +3126,7 @@ var require_multipart = __commonJS({ cb(); } }); - file._read = function(n) { + file._read = function(n2) { if (!self._pause) { return; } @@ -3207,11 +3207,11 @@ var require_multipart = __commonJS({ }); } Multipart.prototype.write = function(chunk, cb) { - const r = this.parser.write(chunk); - if (r && !this._pause) { + const r2 = this.parser.write(chunk); + if (r2 && !this._pause) { cb(); } else { - this._needDrain = !r; + this._needDrain = !r2; this._cb = cb; } }; @@ -3235,7 +3235,7 @@ var require_multipart = __commonJS({ this.truncated = false; } inherits(FileStream, Readable); - FileStream.prototype._read = function(n) { + FileStream.prototype._read = function(n2) { }; module.exports = Multipart; } @@ -3382,34 +3382,34 @@ var require_Decoder = __commonJS({ Decoder.prototype.write = function(str) { str = str.replace(RE_PLUS, " "); let res = ""; - let i = 0; - let p = 0; + let i2 = 0; + let p2 = 0; const len = str.length; - for (; i < len; ++i) { + for (; i2 < len; ++i2) { if (this.buffer !== void 0) { - if (!HEX[str.charCodeAt(i)]) { + if (!HEX[str.charCodeAt(i2)]) { res += "%" + this.buffer; this.buffer = void 0; - --i; + --i2; } else { - this.buffer += str[i]; - ++p; + this.buffer += str[i2]; + ++p2; if (this.buffer.length === 2) { res += String.fromCharCode(parseInt(this.buffer, 16)); this.buffer = void 0; } } - } else if (str[i] === "%") { - if (i > p) { - res += str.substring(p, i); - p = i; + } else if (str[i2] === "%") { + if (i2 > p2) { + res += str.substring(p2, i2); + p2 = i2; } this.buffer = ""; - ++p; + ++p2; } } - if (p < len && this.buffer === void 0) { - res += str.substring(p); + if (p2 < len && this.buffer === void 0) { + res += str.substring(p2); } return res; }; @@ -3437,9 +3437,9 @@ var require_urlencoded = __commonJS({ this.fieldNameSizeLimit = getLimit(limits, "fieldNameSize", 100); this.fieldsLimit = getLimit(limits, "fields", Infinity); let charset; - for (var i = 0, len = parsedConType.length; i < len; ++i) { - if (Array.isArray(parsedConType[i]) && RE_CHARSET.test(parsedConType[i][0])) { - charset = parsedConType[i][1].toLowerCase(); + for (var i2 = 0, len = parsedConType.length; i2 < len; ++i2) { + if (Array.isArray(parsedConType[i2]) && RE_CHARSET.test(parsedConType[i2][0])) { + charset = parsedConType[i2][1].toLowerCase(); break; } } @@ -3469,21 +3469,21 @@ var require_urlencoded = __commonJS({ } let idxeq; let idxamp; - let i; - let p = 0; + let i2; + let p2 = 0; const len = data.length; - while (p < len) { + while (p2 < len) { if (this._state === "key") { idxeq = idxamp = void 0; - for (i = p; i < len; ++i) { + for (i2 = p2; i2 < len; ++i2) { if (!this._checkingBytes) { - ++p; + ++p2; } - if (data[i] === 61) { - idxeq = i; + if (data[i2] === 61) { + idxeq = i2; break; - } else if (data[i] === 38) { - idxamp = i; + } else if (data[i2] === 38) { + idxamp = i2; break; } if (this._checkingBytes && this._bytesKey === this.fieldNameSizeLimit) { @@ -3494,8 +3494,8 @@ var require_urlencoded = __commonJS({ } } if (idxeq !== void 0) { - if (idxeq > p) { - this._key += this.decoder.write(data.toString("binary", p, idxeq)); + if (idxeq > p2) { + this._key += this.decoder.write(data.toString("binary", p2, idxeq)); } this._state = "val"; this._hitLimit = false; @@ -3504,13 +3504,13 @@ var require_urlencoded = __commonJS({ this._bytesVal = 0; this._valTrunc = false; this.decoder.reset(); - p = idxeq + 1; + p2 = idxeq + 1; } else if (idxamp !== void 0) { ++this._fields; let key; const keyTrunc = this._keyTrunc; - if (idxamp > p) { - key = this._key += this.decoder.write(data.toString("binary", p, idxamp)); + if (idxamp > p2) { + key = this._key += this.decoder.write(data.toString("binary", p2, idxamp)); } else { key = this._key; } @@ -3529,33 +3529,33 @@ var require_urlencoded = __commonJS({ false ); } - p = idxamp + 1; + p2 = idxamp + 1; if (this._fields === this.fieldsLimit) { return cb(); } } else if (this._hitLimit) { - if (i > p) { - this._key += this.decoder.write(data.toString("binary", p, i)); + if (i2 > p2) { + this._key += this.decoder.write(data.toString("binary", p2, i2)); } - p = i; + p2 = i2; if ((this._bytesKey = this._key.length) === this.fieldNameSizeLimit) { this._checkingBytes = false; this._keyTrunc = true; } } else { - if (p < len) { - this._key += this.decoder.write(data.toString("binary", p)); + if (p2 < len) { + this._key += this.decoder.write(data.toString("binary", p2)); } - p = len; + p2 = len; } } else { idxamp = void 0; - for (i = p; i < len; ++i) { + for (i2 = p2; i2 < len; ++i2) { if (!this._checkingBytes) { - ++p; + ++p2; } - if (data[i] === 38) { - idxamp = i; + if (data[i2] === 38) { + idxamp = i2; break; } if (this._checkingBytes && this._bytesVal === this.fieldSizeLimit) { @@ -3567,8 +3567,8 @@ var require_urlencoded = __commonJS({ } if (idxamp !== void 0) { ++this._fields; - if (idxamp > p) { - this._val += this.decoder.write(data.toString("binary", p, idxamp)); + if (idxamp > p2) { + this._val += this.decoder.write(data.toString("binary", p2, idxamp)); } this.boy.emit( "field", @@ -3584,24 +3584,24 @@ var require_urlencoded = __commonJS({ this._bytesKey = 0; this._keyTrunc = false; this.decoder.reset(); - p = idxamp + 1; + p2 = idxamp + 1; if (this._fields === this.fieldsLimit) { return cb(); } } else if (this._hitLimit) { - if (i > p) { - this._val += this.decoder.write(data.toString("binary", p, i)); + if (i2 > p2) { + this._val += this.decoder.write(data.toString("binary", p2, i2)); } - p = i; + p2 = i2; if (this._val === "" && this.fieldSizeLimit === 0 || (this._bytesVal = this._val.length) === this.fieldSizeLimit) { this._checkingBytes = false; this._valTrunc = true; } } else { - if (p < len) { - this._val += this.decoder.write(data.toString("binary", p)); + if (p2 < len) { + this._val += this.decoder.write(data.toString("binary", p2)); } - p = len; + p2 = len; } } } @@ -3999,18 +3999,18 @@ var require_util2 = __commonJS({ return object instanceof Error || (object?.constructor?.name === "Error" || object?.constructor?.name === "DOMException"); } function isValidReasonPhrase(statusText) { - for (let i = 0; i < statusText.length; ++i) { - const c = statusText.charCodeAt(i); - if (!(c === 9 || // HTAB - c >= 32 && c <= 126 || // SP / VCHAR - c >= 128 && c <= 255)) { + for (let i2 = 0; i2 < statusText.length; ++i2) { + const c2 = statusText.charCodeAt(i2); + if (!(c2 === 9 || // HTAB + c2 >= 32 && c2 <= 126 || // SP / VCHAR + c2 >= 128 && c2 <= 255)) { return false; } } return true; } - function isTokenCharCode(c) { - switch (c) { + function isTokenCharCode(c2) { + switch (c2) { case 34: case 40: case 41: @@ -4030,15 +4030,15 @@ var require_util2 = __commonJS({ case 125: return false; default: - return c >= 33 && c <= 126; + return c2 >= 33 && c2 <= 126; } } function isValidHTTPToken(characters) { if (characters.length === 0) { return false; } - for (let i = 0; i < characters.length; ++i) { - if (!isTokenCharCode(characters.charCodeAt(i))) { + for (let i2 = 0; i2 < characters.length; ++i2) { + if (!isTokenCharCode(characters.charCodeAt(i2))) { return false; } } @@ -4061,8 +4061,8 @@ var require_util2 = __commonJS({ const policyHeader = (headersList.get("referrer-policy") ?? "").split(","); let policy = ""; if (policyHeader.length > 0) { - for (let i = policyHeader.length; i !== 0; i--) { - const token = policyHeader[i - 1].trim(); + for (let i2 = policyHeader.length; i2 !== 0; i2--) { + const token = policyHeader[i2 - 1].trim(); if (referrerPolicyTokens.has(token)) { policy = token; break; @@ -4281,8 +4281,8 @@ var require_util2 = __commonJS({ if (algorithm[3] === "5") { return algorithm; } - for (let i = 1; i < metadataList.length; ++i) { - const metadata = metadataList[i]; + for (let i2 = 1; i2 < metadataList.length; ++i2) { + const metadata = metadataList[i2]; if (metadata.algo[3] === "5") { algorithm = "sha512"; break; @@ -4299,9 +4299,9 @@ var require_util2 = __commonJS({ return metadataList; } let pos = 0; - for (let i = 0; i < metadataList.length; ++i) { - if (metadataList[i].algo === algorithm) { - metadataList[pos++] = metadataList[i]; + for (let i2 = 0; i2 < metadataList.length; ++i2) { + if (metadataList[i2].algo === algorithm) { + metadataList[pos++] = metadataList[i2]; } } metadataList.length = pos; @@ -4311,9 +4311,9 @@ var require_util2 = __commonJS({ if (actualValue.length !== expectedValue.length) { return false; } - for (let i = 0; i < actualValue.length; ++i) { - if (actualValue[i] !== expectedValue[i]) { - if (actualValue[i] === "+" && expectedValue[i] === "-" || actualValue[i] === "/" && expectedValue[i] === "_") { + for (let i2 = 0; i2 < actualValue.length; ++i2) { + if (actualValue[i2] !== expectedValue[i2]) { + if (actualValue[i2] === "+" && expectedValue[i2] === "-" || actualValue[i2] === "/" && expectedValue[i2] === "_") { continue; } return false; @@ -4323,11 +4323,11 @@ var require_util2 = __commonJS({ } function tryUpgradeRequestToAPotentiallyTrustworthyURL(request2) { } - function sameOrigin(A, B) { - if (A.origin === B.origin && A.origin === "null") { + function sameOrigin(A2, B2) { + if (A2.origin === B2.origin && A2.origin === "null") { return true; } - if (A.protocol === B.protocol && A.hostname === B.hostname && A.port === B.port) { + if (A2.protocol === B2.protocol && A2.hostname === B2.hostname && A2.port === B2.port) { return true; } return false; @@ -4380,9 +4380,9 @@ var require_util2 = __commonJS({ kind, target: iterator }; - const i = { + const i2 = { next() { - if (Object.getPrototypeOf(this) !== i) { + if (Object.getPrototypeOf(this) !== i2) { throw new TypeError( `'next' called on an object that does not implement interface ${name} Iterator.` ); @@ -4401,8 +4401,8 @@ var require_util2 = __commonJS({ // result of concatenating the identifier of the interface and the string " Iterator". [Symbol.toStringTag]: `${name} Iterator` }; - Object.setPrototypeOf(i, esIteratorPrototype); - return Object.setPrototypeOf({}, i); + Object.setPrototypeOf(i2, esIteratorPrototype); + return Object.setPrototypeOf({}, i2); } function iteratorResult(pair, kind) { let result; @@ -4428,15 +4428,15 @@ var require_util2 = __commonJS({ let reader; try { reader = body.stream.getReader(); - } catch (e) { - errorSteps(e); + } catch (e2) { + errorSteps(e2); return; } try { const result = await readAllBytes(reader); successSteps(result); - } catch (e) { - errorSteps(e); + } catch (e2) { + errorSteps(e2); } } var ReadableStream = globalThis.ReadableStream; @@ -4463,8 +4463,8 @@ var require_util2 = __commonJS({ } } function isomorphicEncode(input) { - for (let i = 0; i < input.length; i++) { - assert(input.charCodeAt(i) <= 255); + for (let i2 = 0; i2 < input.length; i2++) { + assert(input.charCodeAt(i2) <= 255); } return input; } @@ -4592,11 +4592,11 @@ var require_webidl = __commonJS({ message: `"${context2.value}" is an invalid ${context2.type}.` }); }; - webidl.brandCheck = function(V, I, opts = void 0) { - if (opts?.strict !== false && !(V instanceof I)) { + webidl.brandCheck = function(V2, I2, opts = void 0) { + if (opts?.strict !== false && !(V2 instanceof I2)) { throw new TypeError("Illegal invocation"); } else { - return V?.[Symbol.toStringTag] === I.prototype[Symbol.toStringTag]; + return V2?.[Symbol.toStringTag] === I2.prototype[Symbol.toStringTag]; } }; webidl.argumentLengthCheck = function({ length }, min, ctx) { @@ -4613,8 +4613,8 @@ var require_webidl = __commonJS({ message: "Illegal constructor" }); }; - webidl.util.Type = function(V) { - switch (typeof V) { + webidl.util.Type = function(V2) { + switch (typeof V2) { case "undefined": return "Undefined"; case "boolean": @@ -4629,14 +4629,14 @@ var require_webidl = __commonJS({ return "BigInt"; case "function": case "object": { - if (V === null) { + if (V2 === null) { return "Null"; } return "Object"; } } }; - webidl.util.ConvertToInt = function(V, bitLength, signedness, opts = {}) { + webidl.util.ConvertToInt = function(V2, bitLength, signedness, opts = {}) { let upperBound; let lowerBound; if (bitLength === 64) { @@ -4653,61 +4653,61 @@ var require_webidl = __commonJS({ lowerBound = Math.pow(-2, bitLength) - 1; upperBound = Math.pow(2, bitLength - 1) - 1; } - let x = Number(V); - if (x === 0) { - x = 0; + let x2 = Number(V2); + if (x2 === 0) { + x2 = 0; } if (opts.enforceRange === true) { - if (Number.isNaN(x) || x === Number.POSITIVE_INFINITY || x === Number.NEGATIVE_INFINITY) { + if (Number.isNaN(x2) || x2 === Number.POSITIVE_INFINITY || x2 === Number.NEGATIVE_INFINITY) { throw webidl.errors.exception({ header: "Integer conversion", - message: `Could not convert ${V} to an integer.` + message: `Could not convert ${V2} to an integer.` }); } - x = webidl.util.IntegerPart(x); - if (x < lowerBound || x > upperBound) { + x2 = webidl.util.IntegerPart(x2); + if (x2 < lowerBound || x2 > upperBound) { throw webidl.errors.exception({ header: "Integer conversion", - message: `Value must be between ${lowerBound}-${upperBound}, got ${x}.` + message: `Value must be between ${lowerBound}-${upperBound}, got ${x2}.` }); } - return x; + return x2; } - if (!Number.isNaN(x) && opts.clamp === true) { - x = Math.min(Math.max(x, lowerBound), upperBound); - if (Math.floor(x) % 2 === 0) { - x = Math.floor(x); + if (!Number.isNaN(x2) && opts.clamp === true) { + x2 = Math.min(Math.max(x2, lowerBound), upperBound); + if (Math.floor(x2) % 2 === 0) { + x2 = Math.floor(x2); } else { - x = Math.ceil(x); + x2 = Math.ceil(x2); } - return x; + return x2; } - if (Number.isNaN(x) || x === 0 && Object.is(0, x) || x === Number.POSITIVE_INFINITY || x === Number.NEGATIVE_INFINITY) { + if (Number.isNaN(x2) || x2 === 0 && Object.is(0, x2) || x2 === Number.POSITIVE_INFINITY || x2 === Number.NEGATIVE_INFINITY) { return 0; } - x = webidl.util.IntegerPart(x); - x = x % Math.pow(2, bitLength); - if (signedness === "signed" && x >= Math.pow(2, bitLength) - 1) { - return x - Math.pow(2, bitLength); + x2 = webidl.util.IntegerPart(x2); + x2 = x2 % Math.pow(2, bitLength); + if (signedness === "signed" && x2 >= Math.pow(2, bitLength) - 1) { + return x2 - Math.pow(2, bitLength); } - return x; + return x2; }; - webidl.util.IntegerPart = function(n) { - const r = Math.floor(Math.abs(n)); - if (n < 0) { - return -1 * r; + webidl.util.IntegerPart = function(n2) { + const r2 = Math.floor(Math.abs(n2)); + if (n2 < 0) { + return -1 * r2; } - return r; + return r2; }; webidl.sequenceConverter = function(converter) { - return (V) => { - if (webidl.util.Type(V) !== "Object") { + return (V2) => { + if (webidl.util.Type(V2) !== "Object") { throw webidl.errors.exception({ header: "Sequence", - message: `Value of type ${webidl.util.Type(V)} is not an Object.` + message: `Value of type ${webidl.util.Type(V2)} is not an Object.` }); } - const method = V?.[Symbol.iterator]?.(); + const method = V2?.[Symbol.iterator]?.(); const seq = []; if (method === void 0 || typeof method.next !== "function") { throw webidl.errors.exception({ @@ -4726,44 +4726,44 @@ var require_webidl = __commonJS({ }; }; webidl.recordConverter = function(keyConverter, valueConverter) { - return (O) => { - if (webidl.util.Type(O) !== "Object") { + return (O2) => { + if (webidl.util.Type(O2) !== "Object") { throw webidl.errors.exception({ header: "Record", - message: `Value of type ${webidl.util.Type(O)} is not an Object.` + message: `Value of type ${webidl.util.Type(O2)} is not an Object.` }); } const result = {}; - if (!types.isProxy(O)) { - const keys2 = Object.keys(O); + if (!types.isProxy(O2)) { + const keys2 = Object.keys(O2); for (const key of keys2) { const typedKey = keyConverter(key); - const typedValue = valueConverter(O[key]); + const typedValue = valueConverter(O2[key]); result[typedKey] = typedValue; } return result; } - const keys = Reflect.ownKeys(O); + const keys = Reflect.ownKeys(O2); for (const key of keys) { - const desc = Reflect.getOwnPropertyDescriptor(O, key); + const desc = Reflect.getOwnPropertyDescriptor(O2, key); if (desc?.enumerable) { const typedKey = keyConverter(key); - const typedValue = valueConverter(O[key]); + const typedValue = valueConverter(O2[key]); result[typedKey] = typedValue; } } return result; }; }; - webidl.interfaceConverter = function(i) { - return (V, opts = {}) => { - if (opts.strict !== false && !(V instanceof i)) { + webidl.interfaceConverter = function(i2) { + return (V2, opts = {}) => { + if (opts.strict !== false && !(V2 instanceof i2)) { throw webidl.errors.exception({ - header: i.name, - message: `Expected ${V} to be an instance of ${i.name}.` + header: i2.name, + message: `Expected ${V2} to be an instance of ${i2.name}.` }); } - return V; + return V2; }; }; webidl.dictionaryConverter = function(converters) { @@ -4808,115 +4808,115 @@ var require_webidl = __commonJS({ }; }; webidl.nullableConverter = function(converter) { - return (V) => { - if (V === null) { - return V; + return (V2) => { + if (V2 === null) { + return V2; } - return converter(V); + return converter(V2); }; }; - webidl.converters.DOMString = function(V, opts = {}) { - if (V === null && opts.legacyNullToEmptyString) { + webidl.converters.DOMString = function(V2, opts = {}) { + if (V2 === null && opts.legacyNullToEmptyString) { return ""; } - if (typeof V === "symbol") { + if (typeof V2 === "symbol") { throw new TypeError("Could not convert argument of type symbol to string."); } - return String(V); + return String(V2); }; - webidl.converters.ByteString = function(V) { - const x = webidl.converters.DOMString(V); - for (let index = 0; index < x.length; index++) { - if (x.charCodeAt(index) > 255) { + webidl.converters.ByteString = function(V2) { + const x2 = webidl.converters.DOMString(V2); + for (let index = 0; index < x2.length; index++) { + if (x2.charCodeAt(index) > 255) { throw new TypeError( - `Cannot convert argument to a ByteString because the character at index ${index} has a value of ${x.charCodeAt(index)} which is greater than 255.` + `Cannot convert argument to a ByteString because the character at index ${index} has a value of ${x2.charCodeAt(index)} which is greater than 255.` ); } } - return x; + return x2; }; webidl.converters.USVString = toUSVString; - webidl.converters.boolean = function(V) { - const x = Boolean(V); - return x; + webidl.converters.boolean = function(V2) { + const x2 = Boolean(V2); + return x2; }; - webidl.converters.any = function(V) { - return V; + webidl.converters.any = function(V2) { + return V2; }; - webidl.converters["long long"] = function(V) { - const x = webidl.util.ConvertToInt(V, 64, "signed"); - return x; + webidl.converters["long long"] = function(V2) { + const x2 = webidl.util.ConvertToInt(V2, 64, "signed"); + return x2; }; - webidl.converters["unsigned long long"] = function(V) { - const x = webidl.util.ConvertToInt(V, 64, "unsigned"); - return x; + webidl.converters["unsigned long long"] = function(V2) { + const x2 = webidl.util.ConvertToInt(V2, 64, "unsigned"); + return x2; }; - webidl.converters["unsigned long"] = function(V) { - const x = webidl.util.ConvertToInt(V, 32, "unsigned"); - return x; + webidl.converters["unsigned long"] = function(V2) { + const x2 = webidl.util.ConvertToInt(V2, 32, "unsigned"); + return x2; }; - webidl.converters["unsigned short"] = function(V, opts) { - const x = webidl.util.ConvertToInt(V, 16, "unsigned", opts); - return x; + webidl.converters["unsigned short"] = function(V2, opts) { + const x2 = webidl.util.ConvertToInt(V2, 16, "unsigned", opts); + return x2; }; - webidl.converters.ArrayBuffer = function(V, opts = {}) { - if (webidl.util.Type(V) !== "Object" || !types.isAnyArrayBuffer(V)) { + webidl.converters.ArrayBuffer = function(V2, opts = {}) { + if (webidl.util.Type(V2) !== "Object" || !types.isAnyArrayBuffer(V2)) { throw webidl.errors.conversionFailed({ - prefix: `${V}`, - argument: `${V}`, + prefix: `${V2}`, + argument: `${V2}`, types: ["ArrayBuffer"] }); } - if (opts.allowShared === false && types.isSharedArrayBuffer(V)) { + if (opts.allowShared === false && types.isSharedArrayBuffer(V2)) { throw webidl.errors.exception({ header: "ArrayBuffer", message: "SharedArrayBuffer is not allowed." }); } - return V; + return V2; }; - webidl.converters.TypedArray = function(V, T, opts = {}) { - if (webidl.util.Type(V) !== "Object" || !types.isTypedArray(V) || V.constructor.name !== T.name) { + webidl.converters.TypedArray = function(V2, T2, opts = {}) { + if (webidl.util.Type(V2) !== "Object" || !types.isTypedArray(V2) || V2.constructor.name !== T2.name) { throw webidl.errors.conversionFailed({ - prefix: `${T.name}`, - argument: `${V}`, - types: [T.name] + prefix: `${T2.name}`, + argument: `${V2}`, + types: [T2.name] }); } - if (opts.allowShared === false && types.isSharedArrayBuffer(V.buffer)) { + if (opts.allowShared === false && types.isSharedArrayBuffer(V2.buffer)) { throw webidl.errors.exception({ header: "ArrayBuffer", message: "SharedArrayBuffer is not allowed." }); } - return V; + return V2; }; - webidl.converters.DataView = function(V, opts = {}) { - if (webidl.util.Type(V) !== "Object" || !types.isDataView(V)) { + webidl.converters.DataView = function(V2, opts = {}) { + if (webidl.util.Type(V2) !== "Object" || !types.isDataView(V2)) { throw webidl.errors.exception({ header: "DataView", message: "Object is not a DataView." }); } - if (opts.allowShared === false && types.isSharedArrayBuffer(V.buffer)) { + if (opts.allowShared === false && types.isSharedArrayBuffer(V2.buffer)) { throw webidl.errors.exception({ header: "ArrayBuffer", message: "SharedArrayBuffer is not allowed." }); } - return V; + return V2; }; - webidl.converters.BufferSource = function(V, opts = {}) { - if (types.isAnyArrayBuffer(V)) { - return webidl.converters.ArrayBuffer(V, opts); + webidl.converters.BufferSource = function(V2, opts = {}) { + if (types.isAnyArrayBuffer(V2)) { + return webidl.converters.ArrayBuffer(V2, opts); } - if (types.isTypedArray(V)) { - return webidl.converters.TypedArray(V, V.constructor); + if (types.isTypedArray(V2)) { + return webidl.converters.TypedArray(V2, V2.constructor); } - if (types.isDataView(V)) { - return webidl.converters.DataView(V, opts); + if (types.isDataView(V2)) { + return webidl.converters.DataView(V2, opts); } - throw new TypeError(`Could not convert ${V} to a BufferSource.`); + throw new TypeError(`Could not convert ${V2} to a BufferSource.`); }; webidl.converters["sequence"] = webidl.sequenceConverter( webidl.converters.ByteString @@ -5013,17 +5013,17 @@ var require_dataURL = __commonJS({ } function percentDecode(input) { const output = []; - for (let i = 0; i < input.length; i++) { - const byte = input[i]; + for (let i2 = 0; i2 < input.length; i2++) { + const byte = input[i2]; if (byte !== 37) { output.push(byte); - } else if (byte === 37 && !/^[0-9A-Fa-f]{2}$/i.test(String.fromCharCode(input[i + 1], input[i + 2]))) { + } else if (byte === 37 && !/^[0-9A-Fa-f]{2}$/i.test(String.fromCharCode(input[i2 + 1], input[i2 + 2]))) { output.push(37); } else { - const nextTwoBytes = String.fromCharCode(input[i + 1], input[i + 2]); + const nextTwoBytes = String.fromCharCode(input[i2 + 1], input[i2 + 2]); const bytePoint = Number.parseInt(nextTwoBytes, 16); output.push(bytePoint); - i += 2; + i2 += 2; } } return Uint8Array.from(output); @@ -5237,25 +5237,25 @@ var require_file = __commonJS({ fileBits = webidl.converters["sequence"](fileBits); fileName = webidl.converters.USVString(fileName); options = webidl.converters.FilePropertyBag(options); - const n = fileName; - let t = options.type; - let d; + const n2 = fileName; + let t2 = options.type; + let d2; substep: { - if (t) { - t = parseMIMEType(t); - if (t === "failure") { - t = ""; + if (t2) { + t2 = parseMIMEType(t2); + if (t2 === "failure") { + t2 = ""; break substep; } - t = serializeAMimeType(t).toLowerCase(); + t2 = serializeAMimeType(t2).toLowerCase(); } - d = options.lastModified; + d2 = options.lastModified; } - super(processBlobParts(fileBits, options), { type: t }); + super(processBlobParts(fileBits, options), { type: t2 }); this[kState] = { - name: n, - lastModified: d, - type: t + name: n2, + lastModified: d2, + type: t2 }; } get name() { @@ -5273,14 +5273,14 @@ var require_file = __commonJS({ }; var FileLike = class _FileLike { constructor(blobLike, fileName, options = {}) { - const n = fileName; - const t = options.type; - const d = options.lastModified ?? Date.now(); + const n2 = fileName; + const t2 = options.type; + const d2 = options.lastModified ?? Date.now(); this[kState] = { blobLike, - name: n, - type: t, - lastModified: d + name: n2, + type: t2, + lastModified: d2 }; } stream(...args) { @@ -5328,16 +5328,16 @@ var require_file = __commonJS({ lastModified: kEnumerableProperty }); webidl.converters.Blob = webidl.interfaceConverter(Blob2); - webidl.converters.BlobPart = function(V, opts) { - if (webidl.util.Type(V) === "Object") { - if (isBlobLike(V)) { - return webidl.converters.Blob(V, { strict: false }); + webidl.converters.BlobPart = function(V2, opts) { + if (webidl.util.Type(V2) === "Object") { + if (isBlobLike(V2)) { + return webidl.converters.Blob(V2, { strict: false }); } - if (ArrayBuffer.isView(V) || types.isAnyArrayBuffer(V)) { - return webidl.converters.BufferSource(V, opts); + if (ArrayBuffer.isView(V2) || types.isAnyArrayBuffer(V2)) { + return webidl.converters.BufferSource(V2, opts); } } - return webidl.converters.USVString(V, opts); + return webidl.converters.USVString(V2, opts); }; webidl.converters["sequence"] = webidl.sequenceConverter( webidl.converters.BlobPart @@ -5372,11 +5372,11 @@ var require_file = __commonJS({ const bytes = []; for (const element of parts) { if (typeof element === "string") { - let s = element; + let s2 = element; if (options.endings === "native") { - s = convertLineEndingsNative(s); + s2 = convertLineEndingsNative(s2); } - bytes.push(encoder.encode(s)); + bytes.push(encoder.encode(s2)); } else if (types.isAnyArrayBuffer(element) || types.isTypedArray(element)) { if (!element.buffer) { bytes.push(new Uint8Array(element)); @@ -5391,12 +5391,12 @@ var require_file = __commonJS({ } return bytes; } - function convertLineEndingsNative(s) { + function convertLineEndingsNative(s2) { let nativeLineEnding = "\n"; if (process.platform === "win32") { nativeLineEnding = "\r\n"; } - return s.replace(/\r?\n/g, nativeLineEnding); + return s2.replace(/\r?\n/g, nativeLineEnding); } function isFileLike(object) { return NativeFile && object instanceof NativeFile || object instanceof File || object && (typeof object.stream === "function" || typeof object.arrayBuffer === "function") && object[Symbol.toStringTag] === "File"; @@ -5634,7 +5634,7 @@ Content-Disposition: form-data`; const escape = (str) => str.replace(/\n/g, "%0A").replace(/\r/g, "%0D").replace(/"/g, "%22"); const normalizeLinefeeds = (value) => value.replace(/\r?\n|\r/g, "\r\n"); const blobParts = []; - const rn = new Uint8Array([13, 10]); + const rn2 = new Uint8Array([13, 10]); length = 0; let hasUnknownSizeValue = false; for (const [name, value] of object) { @@ -5650,9 +5650,9 @@ ${normalizeLinefeeds(value)}\r Content-Type: ${value.type || "application/octet-stream"}\r \r `); - blobParts.push(chunk2, value, rn); + blobParts.push(chunk2, value, rn2); if (typeof value.size === "number") { - length += chunk2.byteLength + value.size + rn.byteLength; + length += chunk2.byteLength + value.size + rn2.byteLength; } else { hasUnknownSizeValue = true; } @@ -5888,8 +5888,8 @@ Content-Type: ${value.type || "application/octet-stream"}\r const successSteps = (data) => { try { promise.resolve(convertBytesToJSValue(data)); - } catch (e) { - errorSteps(e); + } catch (e2) { + errorSteps(e2); } }; if (object[kState].body == null) { @@ -6060,13 +6060,13 @@ var require_request = __commonJS({ if (headers.length % 2 !== 0) { throw new InvalidArgumentError("headers array must be even"); } - for (let i = 0; i < headers.length; i += 2) { - processHeader(this, headers[i], headers[i + 1]); + for (let i2 = 0; i2 < headers.length; i2 += 2) { + processHeader(this, headers[i2], headers[i2 + 1]); } } else if (headers && typeof headers === "object") { const keys = Object.keys(headers); - for (let i = 0; i < keys.length; i++) { - const key = keys[i]; + for (let i2 = 0; i2 < keys.length; i2++) { + const key = keys[i2]; processHeader(this, key, headers[key]); } } else if (headers != null) { @@ -6208,13 +6208,13 @@ var require_request = __commonJS({ if (headers.length % 2 !== 0) { throw new InvalidArgumentError("headers array must be even"); } - for (let i = 0; i < headers.length; i += 2) { - processHeader(request2, headers[i], headers[i + 1], true); + for (let i2 = 0; i2 < headers.length; i2 += 2) { + processHeader(request2, headers[i2], headers[i2 + 1], true); } } else if (headers && typeof headers === "object") { const keys = Object.keys(headers); - for (let i = 0; i < keys.length; i++) { - const key = keys[i]; + for (let i2 = 0; i2 < keys.length; i2++) { + const key = keys[i2]; processHeader(request2, key, headers[key], true); } } else if (headers != null) { @@ -6284,12 +6284,12 @@ var require_request = __commonJS({ throw new InvalidArgumentError("invalid header key"); } else { if (Array.isArray(val)) { - for (let i = 0; i < val.length; i++) { + for (let i2 = 0; i2 < val.length; i2++) { if (skipAppend) { - if (request2.headers[key]) request2.headers[key] += `,${processHeaderValue(key, val[i], skipAppend)}`; - else request2.headers[key] = processHeaderValue(key, val[i], skipAppend); + if (request2.headers[key]) request2.headers[key] += `,${processHeaderValue(key, val[i2], skipAppend)}`; + else request2.headers[key] = processHeaderValue(key, val[i2], skipAppend); } else { - request2.headers += processHeaderValue(key, val[i]); + request2.headers += processHeaderValue(key, val[i2]); } } } else { @@ -6357,8 +6357,8 @@ var require_dispatcher_base = __commonJS({ } set interceptors(newInterceptors) { if (newInterceptors) { - for (let i = newInterceptors.length - 1; i >= 0; i--) { - const interceptor = this[kInterceptors][i]; + for (let i2 = newInterceptors.length - 1; i2 >= 0; i2--) { + const interceptor = this[kInterceptors][i2]; if (typeof interceptor !== "function") { throw new InvalidArgumentError("interceptor must be an function"); } @@ -6394,8 +6394,8 @@ var require_dispatcher_base = __commonJS({ const onClosed = () => { const callbacks = this[kOnClosed]; this[kOnClosed] = null; - for (let i = 0; i < callbacks.length; i++) { - callbacks[i](null, null); + for (let i2 = 0; i2 < callbacks.length; i2++) { + callbacks[i2](null, null); } }; this[kClose]().then(() => this.destroy()).then(() => { @@ -6437,8 +6437,8 @@ var require_dispatcher_base = __commonJS({ const onDestroyed = () => { const callbacks = this[kOnDestroyed]; this[kOnDestroyed] = null; - for (let i = 0; i < callbacks.length; i++) { - callbacks[i](null, null); + for (let i2 = 0; i2 < callbacks.length; i2++) { + callbacks[i2](null, null); } }; this[kDestroy](err).then(() => { @@ -6451,8 +6451,8 @@ var require_dispatcher_base = __commonJS({ return this[kDispatch](opts, handler); } let dispatch = this[kDispatch].bind(this); - for (let i = this[kInterceptors].length - 1; i >= 0; i--) { - dispatch = this[kInterceptors][i](dispatch); + for (let i2 = this[kInterceptors].length - 1; i2 >= 0; i2--) { + dispatch = this[kInterceptors][i2](dispatch); } this[kInterceptedDispatch] = dispatch; return dispatch(opts, handler); @@ -6841,9 +6841,9 @@ var require_constants3 = __commonJS({ FINISH2[FINISH2["UNSAFE"] = 2] = "UNSAFE"; })(FINISH = exports.FINISH || (exports.FINISH = {})); exports.ALPHA = []; - for (let i = "A".charCodeAt(0); i <= "Z".charCodeAt(0); i++) { - exports.ALPHA.push(String.fromCharCode(i)); - exports.ALPHA.push(String.fromCharCode(i + 32)); + for (let i2 = "A".charCodeAt(0); i2 <= "Z".charCodeAt(0); i2++) { + exports.ALPHA.push(String.fromCharCode(i2)); + exports.ALPHA.push(String.fromCharCode(i2 + 32)); } exports.NUM_MAP = { 0: 0, @@ -6929,8 +6929,8 @@ var require_constants3 = __commonJS({ "~" ].concat(exports.ALPHANUM); exports.URL_CHAR = exports.STRICT_URL_CHAR.concat([" ", "\f"]); - for (let i = 128; i <= 255; i++) { - exports.URL_CHAR.push(i); + for (let i2 = 128; i2 <= 255; i2++) { + exports.URL_CHAR.push(i2); } exports.HEX = exports.NUM.concat(["a", "b", "c", "d", "e", "f", "A", "B", "C", "D", "E", "F"]); exports.STRICT_TOKEN = [ @@ -6952,12 +6952,12 @@ var require_constants3 = __commonJS({ ].concat(exports.ALPHANUM); exports.TOKEN = exports.STRICT_TOKEN.concat([" "]); exports.HEADER_CHARS = [" "]; - for (let i = 32; i <= 255; i++) { - if (i !== 127) { - exports.HEADER_CHARS.push(i); + for (let i2 = 32; i2 <= 255; i2++) { + if (i2 !== 127) { + exports.HEADER_CHARS.push(i2); } } - exports.CONNECTION_TOKEN_CHARS = exports.HEADER_CHARS.filter((c) => c !== 44); + exports.CONNECTION_TOKEN_CHARS = exports.HEADER_CHARS.filter((c2) => c2 !== 44); exports.MAJOR = exports.NUM_MAP; exports.MINOR = exports.MAJOR; var HEADER_STATE; @@ -7090,9 +7090,9 @@ var require_RedirectHandler = __commonJS({ if (redirectableStatusCodes.indexOf(statusCode) === -1) { return null; } - for (let i = 0; i < headers.length; i += 2) { - if (headers[i].toString().toLowerCase() === "location") { - return headers[i + 1]; + for (let i2 = 0; i2 < headers.length; i2 += 2) { + if (headers[i2].toString().toLowerCase() === "location") { + return headers[i2 + 1]; } } } @@ -7112,9 +7112,9 @@ var require_RedirectHandler = __commonJS({ function cleanRequestHeaders(headers, removeContent, unknownOrigin) { const ret = []; if (Array.isArray(headers)) { - for (let i = 0; i < headers.length; i += 2) { - if (!shouldRemoveHeader(headers[i], removeContent, unknownOrigin)) { - ret.push(headers[i], headers[i + 1]); + for (let i2 = 0; i2 < headers.length; i2 += 2) { + if (!shouldRemoveHeader(headers[i2], removeContent, unknownOrigin)) { + ret.push(headers[i2], headers[i2 + 1]); } } } else if (headers && typeof headers === "object") { @@ -7484,8 +7484,8 @@ var require_client = __commonJS({ async [kDestroy](err) { return new Promise((resolve) => { const requests = this[kQueue].splice(this[kPendingIdx]); - for (let i = 0; i < requests.length; i++) { - const request2 = requests[i]; + for (let i2 = 0; i2 < requests.length; i2++) { + const request2 = requests[i2]; errorRequest(this, request2, err); } const callback = () => { @@ -7533,8 +7533,8 @@ var require_client = __commonJS({ if (client.destroyed) { assert(this[kPending] === 0); const requests = client[kQueue].splice(client[kRunningIdx]); - for (let i = 0; i < requests.length; i++) { - const request2 = requests[i]; + for (let i2 = 0; i2 < requests.length; i2++) { + const request2 = requests[i2]; errorRequest(this, request2, err); } } else if (client[kRunning] > 0) { @@ -7560,45 +7560,45 @@ var require_client = __commonJS({ let mod; try { mod = await WebAssembly.compile(Buffer.from(require_llhttp_simd_wasm(), "base64")); - } catch (e) { + } catch (e2) { mod = await WebAssembly.compile(Buffer.from(llhttpWasmData || require_llhttp_wasm(), "base64")); } return await WebAssembly.instantiate(mod, { env: { /* eslint-disable camelcase */ - wasm_on_url: (p, at, len) => { + wasm_on_url: (p2, at2, len) => { return 0; }, - wasm_on_status: (p, at, len) => { - assert.strictEqual(currentParser.ptr, p); - const start = at - currentBufferPtr + currentBufferRef.byteOffset; + wasm_on_status: (p2, at2, len) => { + assert.strictEqual(currentParser.ptr, p2); + const start = at2 - currentBufferPtr + currentBufferRef.byteOffset; return currentParser.onStatus(new FastBuffer(currentBufferRef.buffer, start, len)) || 0; }, - wasm_on_message_begin: (p) => { - assert.strictEqual(currentParser.ptr, p); + wasm_on_message_begin: (p2) => { + assert.strictEqual(currentParser.ptr, p2); return currentParser.onMessageBegin() || 0; }, - wasm_on_header_field: (p, at, len) => { - assert.strictEqual(currentParser.ptr, p); - const start = at - currentBufferPtr + currentBufferRef.byteOffset; + wasm_on_header_field: (p2, at2, len) => { + assert.strictEqual(currentParser.ptr, p2); + const start = at2 - currentBufferPtr + currentBufferRef.byteOffset; return currentParser.onHeaderField(new FastBuffer(currentBufferRef.buffer, start, len)) || 0; }, - wasm_on_header_value: (p, at, len) => { - assert.strictEqual(currentParser.ptr, p); - const start = at - currentBufferPtr + currentBufferRef.byteOffset; + wasm_on_header_value: (p2, at2, len) => { + assert.strictEqual(currentParser.ptr, p2); + const start = at2 - currentBufferPtr + currentBufferRef.byteOffset; return currentParser.onHeaderValue(new FastBuffer(currentBufferRef.buffer, start, len)) || 0; }, - wasm_on_headers_complete: (p, statusCode, upgrade, shouldKeepAlive) => { - assert.strictEqual(currentParser.ptr, p); + wasm_on_headers_complete: (p2, statusCode, upgrade, shouldKeepAlive) => { + assert.strictEqual(currentParser.ptr, p2); return currentParser.onHeadersComplete(statusCode, Boolean(upgrade), Boolean(shouldKeepAlive)) || 0; }, - wasm_on_body: (p, at, len) => { - assert.strictEqual(currentParser.ptr, p); - const start = at - currentBufferPtr + currentBufferRef.byteOffset; + wasm_on_body: (p2, at2, len) => { + assert.strictEqual(currentParser.ptr, p2); + const start = at2 - currentBufferPtr + currentBufferRef.byteOffset; return currentParser.onBody(new FastBuffer(currentBufferRef.buffer, start, len)) || 0; }, - wasm_on_message_complete: (p) => { - assert.strictEqual(currentParser.ptr, p); + wasm_on_message_complete: (p2) => { + assert.strictEqual(currentParser.ptr, p2); return currentParser.onMessageComplete() || 0; } /* eslint-enable camelcase */ @@ -8002,8 +8002,8 @@ var require_client = __commonJS({ if (client[kRunning] === 0 && err.code !== "UND_ERR_INFO" && err.code !== "UND_ERR_SOCKET") { assert(client[kPendingIdx] === client[kRunningIdx]); const requests = client[kQueue].splice(client[kRunningIdx]); - for (let i = 0; i < requests.length; i++) { - const request2 = requests[i]; + for (let i2 = 0; i2 < requests.length; i2++) { + const request2 = requests[i2]; errorRequest(client, request2, err); } assert(client[kSize] === 0); @@ -8033,8 +8033,8 @@ var require_client = __commonJS({ if (client.destroyed) { assert(client[kPending] === 0); const requests = client[kQueue].splice(client[kRunningIdx]); - for (let i = 0; i < requests.length; i++) { - const request2 = requests[i]; + for (let i2 = 0; i2 < requests.length; i2++) { + const request2 = requests[i2]; errorRequest(client, request2, err); } } else if (client[kRunning] > 0 && err.code !== "UND_ERR_INFO") { @@ -8652,8 +8652,8 @@ upgrade: ${upgrade}\r if (!err) { try { writer.end(); - } catch (er) { - err = er; + } catch (er2) { + err = er2; } } writer.destroy(err); @@ -9008,7 +9008,7 @@ var require_pool_base = __commonJS({ pool.emit("drain", origin, [pool, ...targets]); } if (pool[kClosedResolve] && queue.isEmpty()) { - Promise.all(pool[kClients].map((c) => c.close())).then(pool[kClosedResolve]); + Promise.all(pool[kClients].map((c2) => c2.close())).then(pool[kClosedResolve]); } }; this[kOnConnect] = (origin, targets) => { @@ -9057,7 +9057,7 @@ var require_pool_base = __commonJS({ } async [kClose]() { if (this[kQueue].isEmpty()) { - return Promise.all(this[kClients].map((c) => c.close())); + return Promise.all(this[kClients].map((c2) => c2.close())); } else { return new Promise((resolve) => { this[kClosedResolve] = resolve; @@ -9072,7 +9072,7 @@ var require_pool_base = __commonJS({ } item.handler.onError(err); } - return Promise.all(this[kClients].map((c) => c.destroy(err))); + return Promise.all(this[kClients].map((c2) => c2.destroy(err))); } [kDispatch](opts, handler) { const dispatcher = this[kGetDispatcher](); @@ -9228,9 +9228,9 @@ var require_balanced_pool = __commonJS({ var kWeight = Symbol("kWeight"); var kMaxWeightPerServer = Symbol("kMaxWeightPerServer"); var kErrorPenalty = Symbol("kErrorPenalty"); - function getGreatestCommonDivisor(a, b) { - if (b === 0) return a; - return getGreatestCommonDivisor(b, a % b); + function getGreatestCommonDivisor(a2, b2) { + if (b2 === 0) return a2; + return getGreatestCommonDivisor(b2, a2 % b2); } function defaultFactory(origin, opts) { return new Pool(origin, opts); @@ -9284,7 +9284,7 @@ var require_balanced_pool = __commonJS({ return this; } _updateBalancedPoolStats() { - this[kGreatestCommonDivisor] = this[kClients].map((p) => p[kWeight]).reduce(getGreatestCommonDivisor, 0); + this[kGreatestCommonDivisor] = this[kClients].map((p2) => p2[kWeight]).reduce(getGreatestCommonDivisor, 0); } removeUpstream(upstream) { const upstreamOrigin = parseOrigin(upstream).origin; @@ -9295,7 +9295,7 @@ var require_balanced_pool = __commonJS({ return this; } get upstreams() { - return this[kClients].filter((dispatcher) => dispatcher.closed !== true && dispatcher.destroyed !== true).map((p) => p[kUrl].origin); + return this[kClients].filter((dispatcher) => dispatcher.closed !== true && dispatcher.destroyed !== true).map((p2) => p2[kUrl].origin); } [kGetDispatcher]() { if (this[kClients].length === 0) { @@ -9305,7 +9305,7 @@ var require_balanced_pool = __commonJS({ if (!dispatcher) { return; } - const allClientsBusy = this[kClients].map((pool) => pool[kNeedDrain]).reduce((a, b) => a && b, true); + const allClientsBusy = this[kClients].map((pool) => pool[kNeedDrain]).reduce((a2, b2) => a2 && b2, true); if (allClientsBusy) { return; } @@ -10643,9 +10643,9 @@ var require_mock_utils = __commonJS({ } function getHeaderByName(headers, key) { if (Array.isArray(headers)) { - for (let i = 0; i < headers.length; i += 2) { - if (headers[i].toLocaleLowerCase() === key.toLocaleLowerCase()) { - return headers[i + 1]; + for (let i2 = 0; i2 < headers.length; i2 += 2) { + if (headers[i2].toLocaleLowerCase() === key.toLocaleLowerCase()) { + return headers[i2 + 1]; } } return void 0; @@ -10765,7 +10765,7 @@ var require_mock_utils = __commonJS({ return Object.entries(data).reduce((keyValuePairs, [key, value]) => [ ...keyValuePairs, Buffer.from(`${key}`), - Array.isArray(value) ? value.map((x) => Buffer.from(`${x}`)) : Buffer.from(`${value}`) + Array.isArray(value) ? value.map((x2) => Buffer.from(`${x2}`)) : Buffer.from(`${value}`) ], []); } function getStatusText(statusCode) { @@ -11494,8 +11494,8 @@ var require_proxy_agent = __commonJS({ function buildHeaders(headers) { if (Array.isArray(headers)) { const headersPair = {}; - for (let i = 0; i < headers.length; i += 2) { - headersPair[headers[i]] = headers[i + 1]; + for (let i2 = 0; i2 < headers.length; i2 += 2) { + headersPair[headers[i2]] = headers[i2 + 1]; } return headersPair; } @@ -11862,16 +11862,16 @@ var require_headers = __commonJS({ return code === 10 || code === 13 || code === 9 || code === 32; } function headerValueNormalize(potentialValue) { - let i = 0; - let j = potentialValue.length; - while (j > i && isHTTPWhiteSpaceCharCode(potentialValue.charCodeAt(j - 1))) --j; - while (j > i && isHTTPWhiteSpaceCharCode(potentialValue.charCodeAt(i))) ++i; - return i === 0 && j === potentialValue.length ? potentialValue : potentialValue.substring(i, j); + let i2 = 0; + let j2 = potentialValue.length; + while (j2 > i2 && isHTTPWhiteSpaceCharCode(potentialValue.charCodeAt(j2 - 1))) --j2; + while (j2 > i2 && isHTTPWhiteSpaceCharCode(potentialValue.charCodeAt(i2))) ++i2; + return i2 === 0 && j2 === potentialValue.length ? potentialValue : potentialValue.substring(i2, j2); } function fill(headers, object) { if (Array.isArray(object)) { - for (let i = 0; i < object.length; ++i) { - const header = object[i]; + for (let i2 = 0; i2 < object.length; ++i2) { + const header = object[i2]; if (header.length !== 2) { throw webidl.errors.exception({ header: "Headers constructor", @@ -11882,8 +11882,8 @@ var require_headers = __commonJS({ } } else if (typeof object === "object" && object !== null) { const keys = Object.keys(object); - for (let i = 0; i < keys.length; ++i) { - appendHeader(headers, keys[i], object[keys[i]]); + for (let i2 = 0; i2 < keys.length; ++i2) { + appendHeader(headers, keys[i2], object[keys[i2]]); } } else { throw webidl.errors.conversionFailed({ @@ -12104,13 +12104,13 @@ var require_headers = __commonJS({ return this[kHeadersList][kHeadersSortedMap]; } const headers = []; - const names = [...this[kHeadersList]].sort((a, b) => a[0] < b[0] ? -1 : 1); + const names = [...this[kHeadersList]].sort((a2, b2) => a2[0] < b2[0] ? -1 : 1); const cookies = this[kHeadersList].cookies; - for (let i = 0; i < names.length; ++i) { - const [name, value] = names[i]; + for (let i2 = 0; i2 < names.length; ++i2) { + const [name, value] = names[i2]; if (name === "set-cookie") { - for (let j = 0; j < cookies.length; ++j) { - headers.push([name, cookies[j]]); + for (let j2 = 0; j2 < cookies.length; ++j2) { + headers.push([name, cookies[j2]]); } } else { assert(value !== null); @@ -12207,12 +12207,12 @@ var require_headers = __commonJS({ configurable: true } }); - webidl.converters.HeadersInit = function(V) { - if (webidl.util.Type(V) === "Object") { - if (V[Symbol.iterator]) { - return webidl.converters["sequence>"](V); + webidl.converters.HeadersInit = function(V2) { + if (webidl.util.Type(V2) === "Object") { + if (V2[Symbol.iterator]) { + return webidl.converters["sequence>"](V2); } - return webidl.converters["record"](V); + return webidl.converters["record"](V2); } throw webidl.errors.conversionFailed({ prefix: "Headers constructor", @@ -12468,12 +12468,12 @@ var require_response = __commonJS({ ...state }; return new Proxy(response, { - get(target, p) { - return p in state ? state[p] : target[p]; + get(target, p2) { + return p2 in state ? state[p2] : target[p2]; }, - set(target, p, value) { - assert(!(p in state)); - target[p] = value; + set(target, p2, value) { + assert(!(p2 in state)); + target[p2] = value; return true; } }); @@ -12553,32 +12553,32 @@ var require_response = __commonJS({ webidl.converters.URLSearchParams = webidl.interfaceConverter( URLSearchParams ); - webidl.converters.XMLHttpRequestBodyInit = function(V) { - if (typeof V === "string") { - return webidl.converters.USVString(V); + webidl.converters.XMLHttpRequestBodyInit = function(V2) { + if (typeof V2 === "string") { + return webidl.converters.USVString(V2); } - if (isBlobLike(V)) { - return webidl.converters.Blob(V, { strict: false }); + if (isBlobLike(V2)) { + return webidl.converters.Blob(V2, { strict: false }); } - if (types.isArrayBuffer(V) || types.isTypedArray(V) || types.isDataView(V)) { - return webidl.converters.BufferSource(V); + if (types.isArrayBuffer(V2) || types.isTypedArray(V2) || types.isDataView(V2)) { + return webidl.converters.BufferSource(V2); } - if (util2.isFormDataLike(V)) { - return webidl.converters.FormData(V, { strict: false }); + if (util2.isFormDataLike(V2)) { + return webidl.converters.FormData(V2, { strict: false }); } - if (V instanceof URLSearchParams) { - return webidl.converters.URLSearchParams(V); + if (V2 instanceof URLSearchParams) { + return webidl.converters.URLSearchParams(V2); } - return webidl.converters.DOMString(V); + return webidl.converters.DOMString(V2); }; - webidl.converters.BodyInit = function(V) { - if (V instanceof ReadableStream) { - return webidl.converters.ReadableStream(V); + webidl.converters.BodyInit = function(V2) { + if (V2 instanceof ReadableStream) { + return webidl.converters.ReadableStream(V2); } - if (V?.[Symbol.asyncIterator]) { - return V; + if (V2?.[Symbol.asyncIterator]) { + return V2; } - return webidl.converters.XMLHttpRequestBodyInit(V); + return webidl.converters.XMLHttpRequestBodyInit(V2); }; webidl.converters.ResponseInit = webidl.dictionaryConverter([ { @@ -13154,14 +13154,14 @@ var require_request2 = __commonJS({ webidl.converters.Request = webidl.interfaceConverter( Request ); - webidl.converters.RequestInfo = function(V) { - if (typeof V === "string") { - return webidl.converters.USVString(V); + webidl.converters.RequestInfo = function(V2) { + if (typeof V2 === "string") { + return webidl.converters.USVString(V2); } - if (V instanceof Request) { - return webidl.converters.Request(V); + if (V2 instanceof Request) { + return webidl.converters.Request(V2); } - return webidl.converters.USVString(V); + return webidl.converters.USVString(V2); }; webidl.converters.AbortSignal = webidl.interfaceConverter( AbortSignal @@ -13346,18 +13346,18 @@ var require_fetch = __commonJS({ }; function fetch(input, init = {}) { webidl.argumentLengthCheck(arguments, 1, { header: "globalThis.fetch" }); - const p = createDeferredPromise(); + const p2 = createDeferredPromise(); let requestObject; try { requestObject = new Request(input, init); - } catch (e) { - p.reject(e); - return p.promise; + } catch (e2) { + p2.reject(e2); + return p2.promise; } const request2 = requestObject[kState]; if (requestObject.signal.aborted) { - abortFetch(p, request2, null, requestObject.signal.reason); - return p.promise; + abortFetch(p2, request2, null, requestObject.signal.reason); + return p2.promise; } const globalObject = request2.client.globalObject; if (globalObject?.constructor?.name === "ServiceWorkerGlobalScope") { @@ -13373,7 +13373,7 @@ var require_fetch = __commonJS({ locallyAborted = true; assert(controller != null); controller.abort(requestObject.signal.reason); - abortFetch(p, request2, responseObject, requestObject.signal.reason); + abortFetch(p2, request2, responseObject, requestObject.signal.reason); } ); const handleFetchDone = (response) => finalizeAndReportTiming(response, "fetch"); @@ -13382,11 +13382,11 @@ var require_fetch = __commonJS({ return Promise.resolve(); } if (response.aborted) { - abortFetch(p, request2, responseObject, controller.serializedAbortReason); + abortFetch(p2, request2, responseObject, controller.serializedAbortReason); return Promise.resolve(); } if (response.type === "error") { - p.reject( + p2.reject( Object.assign(new TypeError("fetch failed"), { cause: response.error }) ); return Promise.resolve(); @@ -13397,7 +13397,7 @@ var require_fetch = __commonJS({ responseObject[kHeaders][kHeadersList] = response.headersList; responseObject[kHeaders][kGuard] = "immutable"; responseObject[kHeaders][kRealm] = relevantRealm; - p.resolve(responseObject); + p2.resolve(responseObject); }; controller = fetching({ request: request2, @@ -13406,7 +13406,7 @@ var require_fetch = __commonJS({ dispatcher: init.dispatcher ?? getGlobalDispatcher() // undici }); - return p.promise; + return p2.promise; } function finalizeAndReportTiming(response, initiatorType = "other") { if (response.type === "error" && response.aborted) { @@ -13445,11 +13445,11 @@ var require_fetch = __commonJS({ performance.markResourceTiming(timingInfo, originalURL.href, initiatorType, globalThis2, cacheState); } } - function abortFetch(p, request2, responseObject, error2) { + function abortFetch(p2, request2, responseObject, error2) { if (!error2) { error2 = new DOMException2("The operation was aborted.", "AbortError"); } - p.reject(error2); + p2.reject(error2); if (request2.body != null && isReadable(request2.body?.stream)) { request2.body.stream.cancel(error2).catch((err) => { if (err.code === "ERR_INVALID_STATE") { @@ -14016,14 +14016,14 @@ var require_fetch = __commonJS({ fetchParams.processRequestEndOfBody(); } }; - const processBodyError = (e) => { + const processBodyError = (e2) => { if (isCancelled(fetchParams)) { return; } - if (e.name === "AbortError") { + if (e2.name === "AbortError") { fetchParams.controller.abort(); } else { - fetchParams.controller.terminate(e); + fetchParams.controller.terminate(e2); } }; requestBody = async function* () { @@ -14172,11 +14172,11 @@ var require_fetch = __commonJS({ let location = ""; const headers = new Headers(); if (Array.isArray(headersList)) { - for (let n = 0; n < headersList.length; n += 2) { - const key = headersList[n + 0].toString("latin1"); - const val = headersList[n + 1].toString("latin1"); + for (let n2 = 0; n2 < headersList.length; n2 += 2) { + const key = headersList[n2 + 0].toString("latin1"); + const val = headersList[n2 + 1].toString("latin1"); if (key.toLowerCase() === "content-encoding") { - codings = val.toLowerCase().split(",").map((x) => x.trim()); + codings = val.toLowerCase().split(",").map((x2) => x2.trim()); } else if (key.toLowerCase() === "location") { location = val; } @@ -14187,7 +14187,7 @@ var require_fetch = __commonJS({ for (const key of keys) { const val = headersList[key]; if (key.toLowerCase() === "content-encoding") { - codings = val.toLowerCase().split(",").map((x) => x.trim()).reverse(); + codings = val.toLowerCase().split(",").map((x2) => x2.trim()).reverse(); } else if (key.toLowerCase() === "location") { location = val; } @@ -14256,9 +14256,9 @@ var require_fetch = __commonJS({ return; } const headers = new Headers(); - for (let n = 0; n < headersList.length; n += 2) { - const key = headersList[n + 0].toString("latin1"); - const val = headersList[n + 1].toString("latin1"); + for (let n2 = 0; n2 < headersList.length; n2 += 2) { + const key = headersList[n2 + 0].toString("latin1"); + const val = headersList[n2 + 1].toString("latin1"); headers[kHeadersList].append(key, val); } resolve({ @@ -14674,67 +14674,67 @@ var require_util4 = __commonJS({ writable: false, configurable: false }; - function readOperation(fr, blob, type, encodingName) { - if (fr[kState] === "loading") { + function readOperation(fr2, blob, type, encodingName) { + if (fr2[kState] === "loading") { throw new DOMException2("Invalid state", "InvalidStateError"); } - fr[kState] = "loading"; - fr[kResult] = null; - fr[kError] = null; + fr2[kState] = "loading"; + fr2[kResult] = null; + fr2[kError] = null; const stream = blob.stream(); const reader = stream.getReader(); const bytes = []; let chunkPromise = reader.read(); let isFirstChunk = true; (async () => { - while (!fr[kAborted]) { + while (!fr2[kAborted]) { try { const { done, value } = await chunkPromise; - if (isFirstChunk && !fr[kAborted]) { + if (isFirstChunk && !fr2[kAborted]) { queueMicrotask(() => { - fireAProgressEvent("loadstart", fr); + fireAProgressEvent("loadstart", fr2); }); } isFirstChunk = false; if (!done && types.isUint8Array(value)) { bytes.push(value); - if ((fr[kLastProgressEventFired] === void 0 || Date.now() - fr[kLastProgressEventFired] >= 50) && !fr[kAborted]) { - fr[kLastProgressEventFired] = Date.now(); + if ((fr2[kLastProgressEventFired] === void 0 || Date.now() - fr2[kLastProgressEventFired] >= 50) && !fr2[kAborted]) { + fr2[kLastProgressEventFired] = Date.now(); queueMicrotask(() => { - fireAProgressEvent("progress", fr); + fireAProgressEvent("progress", fr2); }); } chunkPromise = reader.read(); } else if (done) { queueMicrotask(() => { - fr[kState] = "done"; + fr2[kState] = "done"; try { const result = packageData(bytes, type, blob.type, encodingName); - if (fr[kAborted]) { + if (fr2[kAborted]) { return; } - fr[kResult] = result; - fireAProgressEvent("load", fr); + fr2[kResult] = result; + fireAProgressEvent("load", fr2); } catch (error2) { - fr[kError] = error2; - fireAProgressEvent("error", fr); + fr2[kError] = error2; + fireAProgressEvent("error", fr2); } - if (fr[kState] !== "loading") { - fireAProgressEvent("loadend", fr); + if (fr2[kState] !== "loading") { + fireAProgressEvent("loadend", fr2); } }); break; } } catch (error2) { - if (fr[kAborted]) { + if (fr2[kAborted]) { return; } queueMicrotask(() => { - fr[kState] = "done"; - fr[kError] = error2; - fireAProgressEvent("error", fr); - if (fr[kState] !== "loading") { - fireAProgressEvent("loadend", fr); + fr2[kState] = "done"; + fr2[kError] = error2; + fireAProgressEvent("error", fr2); + if (fr2[kState] !== "loading") { + fireAProgressEvent("loadend", fr2); } }); break; @@ -14742,8 +14742,8 @@ var require_util4 = __commonJS({ } })(); } - function fireAProgressEvent(e, reader) { - const event = new ProgressEvent(e, { + function fireAProgressEvent(e2, reader) { + const event = new ProgressEvent(e2, { bubbles: false, cancelable: false }); @@ -14808,25 +14808,25 @@ var require_util4 = __commonJS({ return new TextDecoder(encoding).decode(sliced); } function BOMSniffing(ioQueue) { - const [a, b, c] = ioQueue; - if (a === 239 && b === 187 && c === 191) { + const [a2, b2, c2] = ioQueue; + if (a2 === 239 && b2 === 187 && c2 === 191) { return "UTF-8"; - } else if (a === 254 && b === 255) { + } else if (a2 === 254 && b2 === 255) { return "UTF-16BE"; - } else if (a === 255 && b === 254) { + } else if (a2 === 255 && b2 === 254) { return "UTF-16LE"; } return null; } function combineByteSequences(sequences) { - const size = sequences.reduce((a, b) => { - return a + b.byteLength; + const size = sequences.reduce((a2, b2) => { + return a2 + b2.byteLength; }, 0); let offset = 0; - return sequences.reduce((a, b) => { - a.set(b, offset); - offset += b.byteLength; - return a; + return sequences.reduce((a2, b2) => { + a2.set(b2, offset); + offset += b2.byteLength; + return a2; }, new Uint8Array(size)); } module.exports = { @@ -14964,14 +14964,14 @@ var require_filereader = __commonJS({ webidl.brandCheck(this, _FileReader); return this[kEvents].loadend; } - set onloadend(fn) { + set onloadend(fn2) { webidl.brandCheck(this, _FileReader); if (this[kEvents].loadend) { this.removeEventListener("loadend", this[kEvents].loadend); } - if (typeof fn === "function") { - this[kEvents].loadend = fn; - this.addEventListener("loadend", fn); + if (typeof fn2 === "function") { + this[kEvents].loadend = fn2; + this.addEventListener("loadend", fn2); } else { this[kEvents].loadend = null; } @@ -14980,14 +14980,14 @@ var require_filereader = __commonJS({ webidl.brandCheck(this, _FileReader); return this[kEvents].error; } - set onerror(fn) { + set onerror(fn2) { webidl.brandCheck(this, _FileReader); if (this[kEvents].error) { this.removeEventListener("error", this[kEvents].error); } - if (typeof fn === "function") { - this[kEvents].error = fn; - this.addEventListener("error", fn); + if (typeof fn2 === "function") { + this[kEvents].error = fn2; + this.addEventListener("error", fn2); } else { this[kEvents].error = null; } @@ -14996,14 +14996,14 @@ var require_filereader = __commonJS({ webidl.brandCheck(this, _FileReader); return this[kEvents].loadstart; } - set onloadstart(fn) { + set onloadstart(fn2) { webidl.brandCheck(this, _FileReader); if (this[kEvents].loadstart) { this.removeEventListener("loadstart", this[kEvents].loadstart); } - if (typeof fn === "function") { - this[kEvents].loadstart = fn; - this.addEventListener("loadstart", fn); + if (typeof fn2 === "function") { + this[kEvents].loadstart = fn2; + this.addEventListener("loadstart", fn2); } else { this[kEvents].loadstart = null; } @@ -15012,14 +15012,14 @@ var require_filereader = __commonJS({ webidl.brandCheck(this, _FileReader); return this[kEvents].progress; } - set onprogress(fn) { + set onprogress(fn2) { webidl.brandCheck(this, _FileReader); if (this[kEvents].progress) { this.removeEventListener("progress", this[kEvents].progress); } - if (typeof fn === "function") { - this[kEvents].progress = fn; - this.addEventListener("progress", fn); + if (typeof fn2 === "function") { + this[kEvents].progress = fn2; + this.addEventListener("progress", fn2); } else { this[kEvents].progress = null; } @@ -15028,14 +15028,14 @@ var require_filereader = __commonJS({ webidl.brandCheck(this, _FileReader); return this[kEvents].load; } - set onload(fn) { + set onload(fn2) { webidl.brandCheck(this, _FileReader); if (this[kEvents].load) { this.removeEventListener("load", this[kEvents].load); } - if (typeof fn === "function") { - this[kEvents].load = fn; - this.addEventListener("load", fn); + if (typeof fn2 === "function") { + this[kEvents].load = fn2; + this.addEventListener("load", fn2); } else { this[kEvents].load = null; } @@ -15044,14 +15044,14 @@ var require_filereader = __commonJS({ webidl.brandCheck(this, _FileReader); return this[kEvents].abort; } - set onabort(fn) { + set onabort(fn2) { webidl.brandCheck(this, _FileReader); if (this[kEvents].abort) { this.removeEventListener("abort", this[kEvents].abort); } - if (typeof fn === "function") { - this[kEvents].abort = fn; - this.addEventListener("abort", fn); + if (typeof fn2 === "function") { + this[kEvents].abort = fn2; + this.addEventListener("abort", fn2); } else { this[kEvents].abort = null; } @@ -15113,9 +15113,9 @@ var require_util5 = __commonJS({ var assert = __require("assert"); var { URLSerializer } = require_dataURL(); var { isValidHeaderName } = require_util2(); - function urlEquals(A, B, excludeFragment = false) { - const serializedA = URLSerializer(A, excludeFragment); - const serializedB = URLSerializer(B, excludeFragment); + function urlEquals(A2, B2, excludeFragment = false) { + const serializedA = URLSerializer(A2, excludeFragment); + const serializedB = URLSerializer(B2, excludeFragment); return serializedA === serializedB; } function fieldValues(header) { @@ -15172,25 +15172,25 @@ var require_cache = __commonJS({ webidl.argumentLengthCheck(arguments, 1, { header: "Cache.match" }); request2 = webidl.converters.RequestInfo(request2); options = webidl.converters.CacheQueryOptions(options); - const p = await this.matchAll(request2, options); - if (p.length === 0) { + const p2 = await this.matchAll(request2, options); + if (p2.length === 0) { return; } - return p[0]; + return p2[0]; } async matchAll(request2 = void 0, options = {}) { webidl.brandCheck(this, _Cache); if (request2 !== void 0) request2 = webidl.converters.RequestInfo(request2); options = webidl.converters.CacheQueryOptions(options); - let r = null; + let r2 = null; if (request2 !== void 0) { if (request2 instanceof Request) { - r = request2[kState]; - if (r.method !== "GET" && !options.ignoreMethod) { + r2 = request2[kState]; + if (r2.method !== "GET" && !options.ignoreMethod) { return []; } } else if (typeof request2 === "string") { - r = new Request(request2)[kState]; + r2 = new Request(request2)[kState]; } } const responses = []; @@ -15199,7 +15199,7 @@ var require_cache = __commonJS({ responses.push(requestResponse[1]); } } else { - const requestResponses = this.#queryCache(r, options); + const requestResponses = this.#queryCache(r2, options); for (const requestResponse of requestResponses) { responses.push(requestResponse[1]); } @@ -15234,8 +15234,8 @@ var require_cache = __commonJS({ if (typeof request2 === "string") { continue; } - const r = request2[kState]; - if (!urlIsHttpHttpsScheme(r.url) || r.method !== "GET") { + const r2 = request2[kState]; + if (!urlIsHttpHttpsScheme(r2.url) || r2.method !== "GET") { throw webidl.errors.exception({ header: "Cache.addAll", message: "Expected http/s scheme when method is not GET." @@ -15244,19 +15244,19 @@ var require_cache = __commonJS({ } const fetchControllers = []; for (const request2 of requests) { - const r = new Request(request2)[kState]; - if (!urlIsHttpHttpsScheme(r.url)) { + const r2 = new Request(request2)[kState]; + if (!urlIsHttpHttpsScheme(r2.url)) { throw webidl.errors.exception({ header: "Cache.addAll", message: "Expected http/s scheme." }); } - r.initiator = "fetch"; - r.destination = "subresource"; - requestList.push(r); + r2.initiator = "fetch"; + r2.destination = "subresource"; + requestList.push(r2); const responsePromise = createDeferredPromise(); fetchControllers.push(fetching({ - request: r, + request: r2, dispatcher: getGlobalDispatcher(), processResponse(response) { if (response.type === "error" || response.status === 206 || response.status < 200 || response.status > 299) { @@ -15290,8 +15290,8 @@ var require_cache = __commonJS({ })); responsePromises.push(responsePromise.promise); } - const p = Promise.all(responsePromises); - const responses = await p; + const p2 = Promise.all(responsePromises); + const responses = await p2; const operations = []; let index = 0; for (const response of responses) { @@ -15310,8 +15310,8 @@ var require_cache = __commonJS({ let errorData = null; try { this.#batchCacheOperations(operations); - } catch (e) { - errorData = e; + } catch (e2) { + errorData = e2; } queueMicrotask(() => { if (errorData === null) { @@ -15390,8 +15390,8 @@ var require_cache = __commonJS({ let errorData = null; try { this.#batchCacheOperations(operations); - } catch (e) { - errorData = e; + } catch (e2) { + errorData = e2; } queueMicrotask(() => { if (errorData === null) { @@ -15407,20 +15407,20 @@ var require_cache = __commonJS({ webidl.argumentLengthCheck(arguments, 1, { header: "Cache.delete" }); request2 = webidl.converters.RequestInfo(request2); options = webidl.converters.CacheQueryOptions(options); - let r = null; + let r2 = null; if (request2 instanceof Request) { - r = request2[kState]; - if (r.method !== "GET" && !options.ignoreMethod) { + r2 = request2[kState]; + if (r2.method !== "GET" && !options.ignoreMethod) { return false; } } else { assert(typeof request2 === "string"); - r = new Request(request2)[kState]; + r2 = new Request(request2)[kState]; } const operations = []; const operation = { type: "delete", - request: r, + request: r2, options }; operations.push(operation); @@ -15429,8 +15429,8 @@ var require_cache = __commonJS({ let requestResponses; try { requestResponses = this.#batchCacheOperations(operations); - } catch (e) { - errorData = e; + } catch (e2) { + errorData = e2; } queueMicrotask(() => { if (errorData === null) { @@ -15451,15 +15451,15 @@ var require_cache = __commonJS({ webidl.brandCheck(this, _Cache); if (request2 !== void 0) request2 = webidl.converters.RequestInfo(request2); options = webidl.converters.CacheQueryOptions(options); - let r = null; + let r2 = null; if (request2 !== void 0) { if (request2 instanceof Request) { - r = request2[kState]; - if (r.method !== "GET" && !options.ignoreMethod) { + r2 = request2[kState]; + if (r2.method !== "GET" && !options.ignoreMethod) { return []; } } else if (typeof request2 === "string") { - r = new Request(request2)[kState]; + r2 = new Request(request2)[kState]; } } const promise = createDeferredPromise(); @@ -15469,7 +15469,7 @@ var require_cache = __commonJS({ requests.push(requestResponse[0]); } } else { - const requestResponses = this.#queryCache(r, options); + const requestResponses = this.#queryCache(r2, options); for (const requestResponse of requestResponses) { requests.push(requestResponse[0]); } @@ -15533,14 +15533,14 @@ var require_cache = __commonJS({ message: "put operation should have an associated response" }); } - const r = operation.request; - if (!urlIsHttpHttpsScheme(r.url)) { + const r2 = operation.request; + if (!urlIsHttpHttpsScheme(r2.url)) { throw webidl.errors.exception({ header: "Cache.#batchCacheOperations", message: "expected http or https scheme" }); } - if (r.method !== "GET") { + if (r2.method !== "GET") { throw webidl.errors.exception({ header: "Cache.#batchCacheOperations", message: "not get method" @@ -15564,10 +15564,10 @@ var require_cache = __commonJS({ resultList.push([operation.request, operation.response]); } return resultList; - } catch (e) { + } catch (e2) { this.#relevantRequestResponseList.length = 0; this.#relevantRequestResponseList = backupCache; - throw e; + throw e2; } } /** @@ -16537,8 +16537,8 @@ var require_util7 = __commonJS({ function isClosed(ws) { return ws[kReadyState] === states.CLOSED; } - function fireEvent(e, target, eventConstructor = Event, eventInitDict) { - const event = new eventConstructor(e, eventInitDict); + function fireEvent(e2, target, eventConstructor = Event, eventInitDict) { + const event = new eventConstructor(e2, eventInitDict); target.dispatchEvent(event); } function websocketMessageReceived(ws, type, data) { @@ -16804,8 +16804,8 @@ var require_frame = __commonJS({ buffer.writeUIntBE(bodyLength, 4, 6); } buffer[1] |= 128; - for (let i = 0; i < bodyLength; i++) { - buffer[offset + i] = this.frameData[i] ^ this.maskKey[i % 4]; + for (let i2 = 0; i2 < bodyLength; i2++) { + buffer[offset + i2] = this.frameData[i2] ^ this.maskKey[i2 % 4]; } return buffer; } @@ -16843,7 +16843,7 @@ var require_receiver = __commonJS({ * @param {Buffer} chunk * @param {() => void} callback */ - _write(chunk, _, callback) { + _write(chunk, _2, callback) { this.#buffers.push(chunk); this.#byteOffset += chunk.length; this.run(callback); @@ -16987,34 +16987,34 @@ var require_receiver = __commonJS({ * @param {number} n * @returns {Buffer|null} */ - consume(n) { - if (n > this.#byteOffset) { + consume(n2) { + if (n2 > this.#byteOffset) { return null; - } else if (n === 0) { + } else if (n2 === 0) { return emptyBuffer; } - if (this.#buffers[0].length === n) { + if (this.#buffers[0].length === n2) { this.#byteOffset -= this.#buffers[0].length; return this.#buffers.shift(); } - const buffer = Buffer.allocUnsafe(n); + const buffer = Buffer.allocUnsafe(n2); let offset = 0; - while (offset !== n) { + while (offset !== n2) { const next = this.#buffers[0]; const { length } = next; - if (length + offset === n) { + if (length + offset === n2) { buffer.set(this.#buffers.shift(), offset); break; - } else if (length + offset > n) { - buffer.set(next.subarray(0, n - offset), offset); - this.#buffers[0] = next.subarray(n - offset); + } else if (length + offset > n2) { + buffer.set(next.subarray(0, n2 - offset), offset); + this.#buffers[0] = next.subarray(n2 - offset); break; } else { buffer.set(this.#buffers.shift(), offset); offset += next.length; } } - this.#byteOffset -= n; + this.#byteOffset -= n2; return buffer; } parseCloseBody(onlyCode, data) { @@ -17108,8 +17108,8 @@ var require_websocket = __commonJS({ let urlRecord; try { urlRecord = new URL(url, baseURL); - } catch (e) { - throw new DOMException2(e, "SyntaxError"); + } catch (e2) { + throw new DOMException2(e2, "SyntaxError"); } if (urlRecord.protocol === "http:") { urlRecord.protocol = "ws:"; @@ -17128,10 +17128,10 @@ var require_websocket = __commonJS({ if (typeof protocols === "string") { protocols = [protocols]; } - if (protocols.length !== new Set(protocols.map((p) => p.toLowerCase())).size) { + if (protocols.length !== new Set(protocols.map((p2) => p2.toLowerCase())).size) { throw new DOMException2("Invalid Sec-WebSocket-Protocol value", "SyntaxError"); } - if (protocols.length > 0 && !protocols.every((p) => isValidSubprotocol(p))) { + if (protocols.length > 0 && !protocols.every((p2) => isValidSubprotocol(p2))) { throw new DOMException2("Invalid Sec-WebSocket-Protocol value", "SyntaxError"); } this[kWebSocketURL] = new URL(urlRecord.href); @@ -17276,14 +17276,14 @@ var require_websocket = __commonJS({ webidl.brandCheck(this, _WebSocket); return this.#events.open; } - set onopen(fn) { + set onopen(fn2) { webidl.brandCheck(this, _WebSocket); if (this.#events.open) { this.removeEventListener("open", this.#events.open); } - if (typeof fn === "function") { - this.#events.open = fn; - this.addEventListener("open", fn); + if (typeof fn2 === "function") { + this.#events.open = fn2; + this.addEventListener("open", fn2); } else { this.#events.open = null; } @@ -17292,14 +17292,14 @@ var require_websocket = __commonJS({ webidl.brandCheck(this, _WebSocket); return this.#events.error; } - set onerror(fn) { + set onerror(fn2) { webidl.brandCheck(this, _WebSocket); if (this.#events.error) { this.removeEventListener("error", this.#events.error); } - if (typeof fn === "function") { - this.#events.error = fn; - this.addEventListener("error", fn); + if (typeof fn2 === "function") { + this.#events.error = fn2; + this.addEventListener("error", fn2); } else { this.#events.error = null; } @@ -17308,14 +17308,14 @@ var require_websocket = __commonJS({ webidl.brandCheck(this, _WebSocket); return this.#events.close; } - set onclose(fn) { + set onclose(fn2) { webidl.brandCheck(this, _WebSocket); if (this.#events.close) { this.removeEventListener("close", this.#events.close); } - if (typeof fn === "function") { - this.#events.close = fn; - this.addEventListener("close", fn); + if (typeof fn2 === "function") { + this.#events.close = fn2; + this.addEventListener("close", fn2); } else { this.#events.close = null; } @@ -17324,14 +17324,14 @@ var require_websocket = __commonJS({ webidl.brandCheck(this, _WebSocket); return this.#events.message; } - set onmessage(fn) { + set onmessage(fn2) { webidl.brandCheck(this, _WebSocket); if (this.#events.message) { this.removeEventListener("message", this.#events.message); } - if (typeof fn === "function") { - this.#events.message = fn; - this.addEventListener("message", fn); + if (typeof fn2 === "function") { + this.#events.message = fn2; + this.addEventListener("message", fn2); } else { this.#events.message = null; } @@ -17408,11 +17408,11 @@ var require_websocket = __commonJS({ webidl.converters["sequence"] = webidl.sequenceConverter( webidl.converters.DOMString ); - webidl.converters["DOMString or sequence"] = function(V) { - if (webidl.util.Type(V) === "Object" && Symbol.iterator in V) { - return webidl.converters["sequence"](V); + webidl.converters["DOMString or sequence"] = function(V2) { + if (webidl.util.Type(V2) === "Object" && Symbol.iterator in V2) { + return webidl.converters["sequence"](V2); } - return webidl.converters.DOMString(V); + return webidl.converters.DOMString(V2); }; webidl.converters.WebSocketInit = webidl.dictionaryConverter([ { @@ -17424,7 +17424,7 @@ var require_websocket = __commonJS({ }, { key: "dispatcher", - converter: (V) => V, + converter: (V2) => V2, get defaultValue() { return getGlobalDispatcher(); } @@ -17434,22 +17434,22 @@ var require_websocket = __commonJS({ converter: webidl.nullableConverter(webidl.converters.HeadersInit) } ]); - webidl.converters["DOMString or sequence or WebSocketInit"] = function(V) { - if (webidl.util.Type(V) === "Object" && !(Symbol.iterator in V)) { - return webidl.converters.WebSocketInit(V); + webidl.converters["DOMString or sequence or WebSocketInit"] = function(V2) { + if (webidl.util.Type(V2) === "Object" && !(Symbol.iterator in V2)) { + return webidl.converters.WebSocketInit(V2); } - return { protocols: webidl.converters["DOMString or sequence"](V) }; + return { protocols: webidl.converters["DOMString or sequence"](V2) }; }; - webidl.converters.WebSocketSendData = function(V) { - if (webidl.util.Type(V) === "Object") { - if (isBlobLike(V)) { - return webidl.converters.Blob(V, { strict: false }); + webidl.converters.WebSocketSendData = function(V2) { + if (webidl.util.Type(V2) === "Object") { + if (isBlobLike(V2)) { + return webidl.converters.Blob(V2, { strict: false }); } - if (ArrayBuffer.isView(V) || types.isAnyArrayBuffer(V)) { - return webidl.converters.BufferSource(V); + if (ArrayBuffer.isView(V2) || types.isAnyArrayBuffer(V2)) { + return webidl.converters.BufferSource(V2); } } - return webidl.converters.USVString(V); + return webidl.converters.USVString(V2); }; module.exports = { WebSocket @@ -17501,7 +17501,7 @@ var require_undici = __commonJS({ module.exports.createRedirectInterceptor = createRedirectInterceptor; module.exports.buildConnector = buildConnector; module.exports.errors = errors; - function makeDispatcher(fn) { + function makeDispatcher(fn2) { return (url, opts, handler) => { if (typeof opts === "function") { handler = opts; @@ -17532,7 +17532,7 @@ var require_undici = __commonJS({ if (agent) { throw new InvalidArgumentError("unsupported opts.agent. Did you mean opts.client?"); } - return fn.call(dispatcher, { + return fn2.call(dispatcher, { ...opts, origin: url.origin, path: url.search ? `${url.pathname}${url.search}` : url.pathname, @@ -17600,52 +17600,52 @@ var require_undici = __commonJS({ var require_lib = __commonJS({ "node_modules/.pnpm/@actions+http-client@2.2.1/node_modules/@actions/http-client/lib/index.js"(exports) { "use strict"; - var __createBinding = exports && exports.__createBinding || (Object.create ? function(o, m, k, k2) { - if (k2 === void 0) k2 = k; - var desc = Object.getOwnPropertyDescriptor(m, k); - if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + var __createBinding = exports && exports.__createBinding || (Object.create ? function(o2, m2, k2, k22) { + if (k22 === void 0) k22 = k2; + var desc = Object.getOwnPropertyDescriptor(m2, k2); + if (!desc || ("get" in desc ? !m2.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { - return m[k]; + return m2[k2]; } }; } - Object.defineProperty(o, k2, desc); - } : function(o, m, k, k2) { - if (k2 === void 0) k2 = k; - o[k2] = m[k]; + Object.defineProperty(o2, k22, desc); + } : function(o2, m2, k2, k22) { + if (k22 === void 0) k22 = k2; + o2[k22] = m2[k2]; }); - var __setModuleDefault = exports && exports.__setModuleDefault || (Object.create ? function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); - } : function(o, v) { - o["default"] = v; + var __setModuleDefault = exports && exports.__setModuleDefault || (Object.create ? function(o2, v2) { + Object.defineProperty(o2, "default", { enumerable: true, value: v2 }); + } : function(o2, v2) { + o2["default"] = v2; }); var __importStar = exports && exports.__importStar || function(mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) { - for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + for (var k2 in mod) if (k2 !== "default" && Object.prototype.hasOwnProperty.call(mod, k2)) __createBinding(result, mod, k2); } __setModuleDefault(result, mod); return result; }; - var __awaiter = exports && exports.__awaiter || function(thisArg, _arguments, P, generator) { + var __awaiter = exports && exports.__awaiter || function(thisArg, _arguments, P2, generator) { function adopt(value) { - return value instanceof P ? value : new P(function(resolve) { + return value instanceof P2 ? value : new P2(function(resolve) { resolve(value); }); } - return new (P || (P = Promise))(function(resolve, reject) { + return new (P2 || (P2 = Promise))(function(resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); - } catch (e) { - reject(e); + } catch (e2) { + reject(e2); } } function rejected(value) { try { step(generator["throw"](value)); - } catch (e) { - reject(e); + } catch (e2) { + reject(e2); } } function step(result) { @@ -18151,8 +18151,8 @@ var require_lib = __commonJS({ _performExponentialBackoff(retryNumber) { return __awaiter(this, void 0, void 0, function* () { retryNumber = Math.min(ExponentialBackoffCeiling, retryNumber); - const ms = ExponentialBackoffTimeSlice * Math.pow(2, retryNumber); - return new Promise((resolve) => setTimeout(() => resolve(), ms)); + const ms2 = ExponentialBackoffTimeSlice * Math.pow(2, retryNumber); + return new Promise((resolve) => setTimeout(() => resolve(), ms2)); }); } _processResponse(res, options) { @@ -18169,9 +18169,9 @@ var require_lib = __commonJS({ } function dateTimeDeserializer(key, value) { if (typeof value === "string") { - const a = new Date(value); - if (!isNaN(a.valueOf())) { - return a; + const a2 = new Date(value); + if (!isNaN(a2.valueOf())) { + return a2; } } return value; @@ -18211,7 +18211,7 @@ var require_lib = __commonJS({ } }; exports.HttpClient = HttpClient; - var lowercaseKeys2 = (obj) => Object.keys(obj).reduce((c, k) => (c[k.toLowerCase()] = obj[k], c), {}); + var lowercaseKeys2 = (obj) => Object.keys(obj).reduce((c2, k2) => (c2[k2.toLowerCase()] = obj[k2], c2), {}); } }); @@ -18219,25 +18219,25 @@ var require_lib = __commonJS({ var require_auth = __commonJS({ "node_modules/.pnpm/@actions+http-client@2.2.1/node_modules/@actions/http-client/lib/auth.js"(exports) { "use strict"; - var __awaiter = exports && exports.__awaiter || function(thisArg, _arguments, P, generator) { + var __awaiter = exports && exports.__awaiter || function(thisArg, _arguments, P2, generator) { function adopt(value) { - return value instanceof P ? value : new P(function(resolve) { + return value instanceof P2 ? value : new P2(function(resolve) { resolve(value); }); } - return new (P || (P = Promise))(function(resolve, reject) { + return new (P2 || (P2 = Promise))(function(resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); - } catch (e) { - reject(e); + } catch (e2) { + reject(e2); } } function rejected(value) { try { step(generator["throw"](value)); - } catch (e) { - reject(e); + } catch (e2) { + reject(e2); } } function step(result) { @@ -18323,25 +18323,25 @@ var require_auth = __commonJS({ var require_oidc_utils = __commonJS({ "node_modules/.pnpm/@actions+core@1.10.1/node_modules/@actions/core/lib/oidc-utils.js"(exports) { "use strict"; - var __awaiter = exports && exports.__awaiter || function(thisArg, _arguments, P, generator) { + var __awaiter = exports && exports.__awaiter || function(thisArg, _arguments, P2, generator) { function adopt(value) { - return value instanceof P ? value : new P(function(resolve) { + return value instanceof P2 ? value : new P2(function(resolve) { resolve(value); }); } - return new (P || (P = Promise))(function(resolve, reject) { + return new (P2 || (P2 = Promise))(function(resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); - } catch (e) { - reject(e); + } catch (e2) { + reject(e2); } } function rejected(value) { try { step(generator["throw"](value)); - } catch (e) { - reject(e); + } catch (e2) { + reject(e2); } } function step(result) { @@ -18378,7 +18378,7 @@ var require_oidc_utils = __commonJS({ return runtimeUrl; } static getCall(id_token_url) { - var _a; + var _a2; return __awaiter(this, void 0, void 0, function* () { const httpclient = _OidcClient.createHttpClient(); const res = yield httpclient.getJson(id_token_url).catch((error2) => { @@ -18388,7 +18388,7 @@ var require_oidc_utils = __commonJS({ Error Message: ${error2.message}`); }); - const id_token = (_a = res.result) === null || _a === void 0 ? void 0 : _a.value; + const id_token = (_a2 = res.result) === null || _a2 === void 0 ? void 0 : _a2.value; if (!id_token) { throw new Error("Response json body do not have ID Token field"); } @@ -18421,25 +18421,25 @@ var require_oidc_utils = __commonJS({ var require_summary = __commonJS({ "node_modules/.pnpm/@actions+core@1.10.1/node_modules/@actions/core/lib/summary.js"(exports) { "use strict"; - var __awaiter = exports && exports.__awaiter || function(thisArg, _arguments, P, generator) { + var __awaiter = exports && exports.__awaiter || function(thisArg, _arguments, P2, generator) { function adopt(value) { - return value instanceof P ? value : new P(function(resolve) { + return value instanceof P2 ? value : new P2(function(resolve) { resolve(value); }); } - return new (P || (P = Promise))(function(resolve, reject) { + return new (P2 || (P2 = Promise))(function(resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); - } catch (e) { - reject(e); + } catch (e2) { + reject(e2); } } function rejected(value) { try { step(generator["throw"](value)); - } catch (e) { - reject(e); + } catch (e2) { + reject(e2); } } function step(result) { @@ -18476,7 +18476,7 @@ var require_summary = __commonJS({ } try { yield access(pathFromEnv, fs_1.constants.R_OK | fs_1.constants.W_OK); - } catch (_a) { + } catch (_a2) { throw new Error(`Unable to access summary file: '${pathFromEnv}'. Check if the file has correct read/write permissions.`); } this._filePath = pathFromEnv; @@ -18715,25 +18715,25 @@ var require_summary = __commonJS({ var require_path_utils = __commonJS({ "node_modules/.pnpm/@actions+core@1.10.1/node_modules/@actions/core/lib/path-utils.js"(exports) { "use strict"; - var __createBinding = exports && exports.__createBinding || (Object.create ? function(o, m, k, k2) { - if (k2 === void 0) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { - return m[k]; + var __createBinding = exports && exports.__createBinding || (Object.create ? function(o2, m2, k2, k22) { + if (k22 === void 0) k22 = k2; + Object.defineProperty(o2, k22, { enumerable: true, get: function() { + return m2[k2]; } }); - } : function(o, m, k, k2) { - if (k2 === void 0) k2 = k; - o[k2] = m[k]; + } : function(o2, m2, k2, k22) { + if (k22 === void 0) k22 = k2; + o2[k22] = m2[k2]; }); - var __setModuleDefault = exports && exports.__setModuleDefault || (Object.create ? function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); - } : function(o, v) { - o["default"] = v; + var __setModuleDefault = exports && exports.__setModuleDefault || (Object.create ? function(o2, v2) { + Object.defineProperty(o2, "default", { enumerable: true, value: v2 }); + } : function(o2, v2) { + o2["default"] = v2; }); var __importStar = exports && exports.__importStar || function(mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) { - for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + for (var k2 in mod) if (k2 !== "default" && Object.hasOwnProperty.call(mod, k2)) __createBinding(result, mod, k2); } __setModuleDefault(result, mod); return result; @@ -18760,48 +18760,48 @@ var require_path_utils = __commonJS({ var require_core = __commonJS({ "node_modules/.pnpm/@actions+core@1.10.1/node_modules/@actions/core/lib/core.js"(exports) { "use strict"; - var __createBinding = exports && exports.__createBinding || (Object.create ? function(o, m, k, k2) { - if (k2 === void 0) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { - return m[k]; + var __createBinding = exports && exports.__createBinding || (Object.create ? function(o2, m2, k2, k22) { + if (k22 === void 0) k22 = k2; + Object.defineProperty(o2, k22, { enumerable: true, get: function() { + return m2[k2]; } }); - } : function(o, m, k, k2) { - if (k2 === void 0) k2 = k; - o[k2] = m[k]; + } : function(o2, m2, k2, k22) { + if (k22 === void 0) k22 = k2; + o2[k22] = m2[k2]; }); - var __setModuleDefault = exports && exports.__setModuleDefault || (Object.create ? function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); - } : function(o, v) { - o["default"] = v; + var __setModuleDefault = exports && exports.__setModuleDefault || (Object.create ? function(o2, v2) { + Object.defineProperty(o2, "default", { enumerable: true, value: v2 }); + } : function(o2, v2) { + o2["default"] = v2; }); var __importStar = exports && exports.__importStar || function(mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) { - for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + for (var k2 in mod) if (k2 !== "default" && Object.hasOwnProperty.call(mod, k2)) __createBinding(result, mod, k2); } __setModuleDefault(result, mod); return result; }; - var __awaiter = exports && exports.__awaiter || function(thisArg, _arguments, P, generator) { + var __awaiter = exports && exports.__awaiter || function(thisArg, _arguments, P2, generator) { function adopt(value) { - return value instanceof P ? value : new P(function(resolve) { + return value instanceof P2 ? value : new P2(function(resolve) { resolve(value); }); } - return new (P || (P = Promise))(function(resolve, reject) { + return new (P2 || (P2 = Promise))(function(resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); - } catch (e) { - reject(e); + } catch (e2) { + reject(e2); } } function rejected(value) { try { step(generator["throw"](value)); - } catch (e) { - reject(e); + } catch (e2) { + reject(e2); } } function step(result) { @@ -18815,7 +18815,7 @@ var require_core = __commonJS({ var command_1 = require_command(); var file_command_1 = require_file_command(); var utils_1 = require_utils(); - var os = __importStar(__require("os")); + var os2 = __importStar(__require("os")); var path = __importStar(__require("path")); var oidc_utils_1 = require_oidc_utils(); var ExitCode; @@ -18859,7 +18859,7 @@ var require_core = __commonJS({ } exports.getInput = getInput2; function getMultilineInput(name, options) { - const inputs = getInput2(name, options).split("\n").filter((x) => x !== ""); + const inputs = getInput2(name, options).split("\n").filter((x2) => x2 !== ""); if (options && options.trimWhitespace === false) { return inputs; } @@ -18883,7 +18883,7 @@ Support boolean input list: \`true | True | TRUE | false | False | FALSE\``); if (filePath) { return file_command_1.issueFileCommand("OUTPUT", file_command_1.prepareKeyValueMessage(name, value)); } - process.stdout.write(os.EOL); + process.stdout.write(os2.EOL); command_1.issueCommand("set-output", { name }, utils_1.toCommandValue(value)); } exports.setOutput = setOutput; @@ -18917,7 +18917,7 @@ Support boolean input list: \`true | True | TRUE | false | False | FALSE\``); } exports.notice = notice; function info2(message) { - process.stdout.write(message + os.EOL); + process.stdout.write(message + os2.EOL); } exports.info = info2; function startGroup2(name) { @@ -18928,12 +18928,12 @@ Support boolean input list: \`true | True | TRUE | false | False | FALSE\``); command_1.issue("endgroup"); } exports.endGroup = endGroup2; - function group(name, fn) { + function group(name, fn2) { return __awaiter(this, void 0, void 0, function* () { startGroup2(name); let result; try { - result = yield fn(); + result = yield fn2(); } finally { endGroup2(); } @@ -18993,7 +18993,7 @@ var require_context = __commonJS({ * Hydrate the context from the environment */ constructor() { - var _a, _b, _c; + var _a2, _b, _c; this.payload = {}; if (process.env.GITHUB_EVENT_PATH) { if ((0, fs_1.existsSync)(process.env.GITHUB_EVENT_PATH)) { @@ -19012,7 +19012,7 @@ var require_context = __commonJS({ this.job = process.env.GITHUB_JOB; this.runNumber = parseInt(process.env.GITHUB_RUN_NUMBER, 10); this.runId = parseInt(process.env.GITHUB_RUN_ID, 10); - this.apiUrl = (_a = process.env.GITHUB_API_URL) !== null && _a !== void 0 ? _a : `https://api.github.com`; + this.apiUrl = (_a2 = process.env.GITHUB_API_URL) !== null && _a2 !== void 0 ? _a2 : `https://api.github.com`; this.serverUrl = (_b = process.env.GITHUB_SERVER_URL) !== null && _b !== void 0 ? _b : `https://github.com`; this.graphqlUrl = (_c = process.env.GITHUB_GRAPHQL_URL) !== null && _c !== void 0 ? _c : `https://api.github.com/graphql`; } @@ -19042,52 +19042,52 @@ var require_context = __commonJS({ var require_utils3 = __commonJS({ "node_modules/.pnpm/@actions+github@6.0.0/node_modules/@actions/github/lib/internal/utils.js"(exports) { "use strict"; - var __createBinding = exports && exports.__createBinding || (Object.create ? function(o, m, k, k2) { - if (k2 === void 0) k2 = k; - var desc = Object.getOwnPropertyDescriptor(m, k); - if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + var __createBinding = exports && exports.__createBinding || (Object.create ? function(o2, m2, k2, k22) { + if (k22 === void 0) k22 = k2; + var desc = Object.getOwnPropertyDescriptor(m2, k2); + if (!desc || ("get" in desc ? !m2.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { - return m[k]; + return m2[k2]; } }; } - Object.defineProperty(o, k2, desc); - } : function(o, m, k, k2) { - if (k2 === void 0) k2 = k; - o[k2] = m[k]; + Object.defineProperty(o2, k22, desc); + } : function(o2, m2, k2, k22) { + if (k22 === void 0) k22 = k2; + o2[k22] = m2[k2]; }); - var __setModuleDefault = exports && exports.__setModuleDefault || (Object.create ? function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); - } : function(o, v) { - o["default"] = v; + var __setModuleDefault = exports && exports.__setModuleDefault || (Object.create ? function(o2, v2) { + Object.defineProperty(o2, "default", { enumerable: true, value: v2 }); + } : function(o2, v2) { + o2["default"] = v2; }); var __importStar = exports && exports.__importStar || function(mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) { - for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + for (var k2 in mod) if (k2 !== "default" && Object.prototype.hasOwnProperty.call(mod, k2)) __createBinding(result, mod, k2); } __setModuleDefault(result, mod); return result; }; - var __awaiter = exports && exports.__awaiter || function(thisArg, _arguments, P, generator) { + var __awaiter = exports && exports.__awaiter || function(thisArg, _arguments, P2, generator) { function adopt(value) { - return value instanceof P ? value : new P(function(resolve) { + return value instanceof P2 ? value : new P2(function(resolve) { resolve(value); }); } - return new (P || (P = Promise))(function(resolve, reject) { + return new (P2 || (P2 = Promise))(function(resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); - } catch (e) { - reject(e); + } catch (e2) { + reject(e2); } } function rejected(value) { try { step(generator["throw"](value)); - } catch (e) { - reject(e); + } catch (e2) { + reject(e2); } } function step(result) { @@ -19307,13 +19307,13 @@ var require_dist_node2 = __commonJS({ for (var name in all) __defProp2(target, name, { get: all[name], enumerable: true }); }; - var __copyProps2 = (to, from, except, desc) => { + var __copyProps2 = (to2, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames2(from)) - if (!__hasOwnProp2.call(to, key) && key !== except) - __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable }); + if (!__hasOwnProp2.call(to2, key) && key !== except) + __defProp2(to2, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable }); } - return to; + return to2; }; var __toCommonJS2 = (mod) => __copyProps2(__defProp2({}, "__esModule", { value: true }), mod); var dist_src_exports = {}; @@ -19420,7 +19420,7 @@ var require_dist_node2 = __commonJS({ if (!matches) { return []; } - return matches.map(removeNonChars2).reduce((a, b) => a.concat(b), []); + return matches.map(removeNonChars2).reduce((a2, b2) => a2.concat(b2), []); } function omit2(object, keysToOmit) { const result = { __proto__: null }; @@ -19440,8 +19440,8 @@ var require_dist_node2 = __commonJS({ }).join(""); } function encodeUnreserved2(str) { - return encodeURIComponent(str).replace(/[!'()*]/g, function(c) { - return "%" + c.charCodeAt(0).toString(16).toUpperCase(); + return encodeURIComponent(str).replace(/[!'()*]/g, function(c2) { + return "%" + c2.charCodeAt(0).toString(16).toUpperCase(); }); } function encodeValue2(operator, value, key) { @@ -19478,9 +19478,9 @@ var require_dist_node2 = __commonJS({ ); }); } else { - Object.keys(value).forEach(function(k) { - if (isDefined2(value[k])) { - result.push(encodeValue2(operator, value[k], k)); + Object.keys(value).forEach(function(k2) { + if (isDefined2(value[k2])) { + result.push(encodeValue2(operator, value[k2], k2)); } }); } @@ -19491,10 +19491,10 @@ var require_dist_node2 = __commonJS({ tmp.push(encodeValue2(operator, value2)); }); } else { - Object.keys(value).forEach(function(k) { - if (isDefined2(value[k])) { - tmp.push(encodeUnreserved2(k)); - tmp.push(encodeValue2(operator, value[k].toString())); + Object.keys(value).forEach(function(k2) { + if (isDefined2(value[k2])) { + tmp.push(encodeUnreserved2(k2)); + tmp.push(encodeValue2(operator, value[k2].toString())); } }); } @@ -19527,7 +19527,7 @@ var require_dist_node2 = __commonJS({ var operators = ["+", "#", ".", "/", ";", "?", "&"]; template = template.replace( /\{([^\{\}]+)\}|([^\{\}]+)/g, - function(_, expression, literal) { + function(_2, expression, literal) { if (expression) { let operator = ""; const values = []; @@ -19663,24 +19663,24 @@ var require_dist_node3 = __commonJS({ var require_wrappy = __commonJS({ "node_modules/.pnpm/wrappy@1.0.2/node_modules/wrappy/wrappy.js"(exports, module) { module.exports = wrappy; - function wrappy(fn, cb) { - if (fn && cb) return wrappy(fn)(cb); - if (typeof fn !== "function") + function wrappy(fn2, cb) { + if (fn2 && cb) return wrappy(fn2)(cb); + if (typeof fn2 !== "function") throw new TypeError("need wrapper function"); - Object.keys(fn).forEach(function(k) { - wrapper[k] = fn[k]; + Object.keys(fn2).forEach(function(k2) { + wrapper[k2] = fn2[k2]; }); return wrapper; function wrapper() { var args = new Array(arguments.length); - for (var i = 0; i < args.length; i++) { - args[i] = arguments[i]; + for (var i2 = 0; i2 < args.length; i2++) { + args[i2] = arguments[i2]; } - var ret = fn.apply(this, args); + var ret = fn2.apply(this, args); var cb2 = args[args.length - 1]; if (typeof ret === "function" && ret !== cb2) { - Object.keys(cb2).forEach(function(k) { - ret[k] = cb2[k]; + Object.keys(cb2).forEach(function(k2) { + ret[k2] = cb2[k2]; }); } return ret; @@ -19709,26 +19709,26 @@ var require_once = __commonJS({ configurable: true }); }); - function once(fn) { - var f = function() { - if (f.called) return f.value; - f.called = true; - return f.value = fn.apply(this, arguments); + function once(fn2) { + var f2 = function() { + if (f2.called) return f2.value; + f2.called = true; + return f2.value = fn2.apply(this, arguments); }; - f.called = false; - return f; - } - function onceStrict(fn) { - var f = function() { - if (f.called) - throw new Error(f.onceError); - f.called = true; - return f.value = fn.apply(this, arguments); + f2.called = false; + return f2; + } + function onceStrict(fn2) { + var f2 = function() { + if (f2.called) + throw new Error(f2.onceError); + f2.called = true; + return f2.value = fn2.apply(this, arguments); }; - var name = fn.name || "Function wrapped with `once`"; - f.onceError = name + " shouldn't be called more than once"; - f.called = false; - return f; + var name = fn2.name || "Function wrapped with `once`"; + f2.onceError = name + " shouldn't be called more than once"; + f2.called = false; + return f2; } } }); @@ -19747,13 +19747,13 @@ var require_dist_node4 = __commonJS({ for (var name in all) __defProp2(target, name, { get: all[name], enumerable: true }); }; - var __copyProps2 = (to, from, except, desc) => { + var __copyProps2 = (to2, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames2(from)) - if (!__hasOwnProp2.call(to, key) && key !== except) - __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable }); + if (!__hasOwnProp2.call(to2, key) && key !== except) + __defProp2(to2, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable }); } - return to; + return to2; }; var __toESM2 = (mod, isNodeMode, target) => (target = mod != null ? __create2(__getProtoOf2(mod)) : {}, __copyProps2( // If the importer is in node compatibility mode or this is not an ESM @@ -19837,13 +19837,13 @@ var require_dist_node5 = __commonJS({ for (var name in all) __defProp2(target, name, { get: all[name], enumerable: true }); }; - var __copyProps2 = (to, from, except, desc) => { + var __copyProps2 = (to2, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames2(from)) - if (!__hasOwnProp2.call(to, key) && key !== except) - __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable }); + if (!__hasOwnProp2.call(to2, key) && key !== except) + __defProp2(to2, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable }); } - return to; + return to2; }; var __toCommonJS2 = (mod) => __copyProps2(__defProp2({}, "__esModule", { value: true }), mod); var dist_src_exports = {}; @@ -19870,9 +19870,9 @@ var require_dist_node5 = __commonJS({ return response.arrayBuffer(); } function fetchWrapper2(requestOptions) { - var _a, _b, _c, _d; + var _a2, _b, _c, _d; const log = requestOptions.request && requestOptions.request.log ? requestOptions.request.log : console; - const parseSuccessResponseBody = ((_a = requestOptions.request) == null ? void 0 : _a.parseSuccessResponseBody) !== false; + const parseSuccessResponseBody = ((_a2 = requestOptions.request) == null ? void 0 : _a2.parseSuccessResponseBody) !== false; if (isPlainObject3(requestOptions.body) || Array.isArray(requestOptions.body)) { requestOptions.body = JSON.stringify(requestOptions.body); } @@ -20047,13 +20047,13 @@ var require_dist_node6 = __commonJS({ for (var name in all) __defProp2(target, name, { get: all[name], enumerable: true }); }; - var __copyProps2 = (to, from, except, desc) => { + var __copyProps2 = (to2, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames2(from)) - if (!__hasOwnProp2.call(to, key) && key !== except) - __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable }); + if (!__hasOwnProp2.call(to2, key) && key !== except) + __defProp2(to2, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable }); } - return to; + return to2; }; var __toCommonJS2 = (mod) => __copyProps2(__defProp2({}, "__esModule", { value: true }), mod); var dist_src_exports = {}; @@ -20070,7 +20070,7 @@ var require_dist_node6 = __commonJS({ var import_request4 = require_dist_node5(); function _buildMessageForResponseErrors2(data) { return `Request failed due to following response errors: -` + data.errors.map((e) => ` - ${e.message}`).join("\n"); +` + data.errors.map((e2) => ` - ${e2.message}`).join("\n"); } var GraphqlResponseError2 = class extends Error { constructor(request2, headers, response) { @@ -20185,13 +20185,13 @@ var require_dist_node7 = __commonJS({ for (var name in all) __defProp2(target, name, { get: all[name], enumerable: true }); }; - var __copyProps2 = (to, from, except, desc) => { + var __copyProps2 = (to2, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames2(from)) - if (!__hasOwnProp2.call(to, key) && key !== except) - __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable }); + if (!__hasOwnProp2.call(to2, key) && key !== except) + __defProp2(to2, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable }); } - return to; + return to2; }; var __toCommonJS2 = (mod) => __copyProps2(__defProp2({}, "__esModule", { value: true }), mod); var dist_src_exports = {}; @@ -20256,13 +20256,13 @@ var require_dist_node8 = __commonJS({ for (var name in all) __defProp2(target, name, { get: all[name], enumerable: true }); }; - var __copyProps2 = (to, from, except, desc) => { + var __copyProps2 = (to2, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames2(from)) - if (!__hasOwnProp2.call(to, key) && key !== except) - __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable }); + if (!__hasOwnProp2.call(to2, key) && key !== except) + __defProp2(to2, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable }); } - return to; + return to2; }; var __toCommonJS2 = (mod) => __copyProps2(__defProp2({}, "__esModule", { value: true }), mod); var dist_src_exports = {}; @@ -20395,8 +20395,8 @@ var require_dist_node8 = __commonJS({ this.auth = auth2; } const classConstructor = this.constructor; - for (let i = 0; i < classConstructor.plugins.length; ++i) { - Object.assign(this, classConstructor.plugins[i](this, options)); + for (let i2 = 0; i2 < classConstructor.plugins.length; ++i2) { + Object.assign(this, classConstructor.plugins[i2](this, options)); } } }; @@ -20415,13 +20415,13 @@ var require_dist_node9 = __commonJS({ for (var name in all) __defProp2(target, name, { get: all[name], enumerable: true }); }; - var __copyProps2 = (to, from, except, desc) => { + var __copyProps2 = (to2, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames2(from)) - if (!__hasOwnProp2.call(to, key) && key !== except) - __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable }); + if (!__hasOwnProp2.call(to2, key) && key !== except) + __defProp2(to2, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable }); } - return to; + return to2; }; var __toCommonJS2 = (mod) => __copyProps2(__defProp2({}, "__esModule", { value: true }), mod); var dist_src_exports = {}; @@ -22571,13 +22571,13 @@ var require_dist_node10 = __commonJS({ for (var name in all) __defProp2(target, name, { get: all[name], enumerable: true }); }; - var __copyProps2 = (to, from, except, desc) => { + var __copyProps2 = (to2, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames2(from)) - if (!__hasOwnProp2.call(to, key) && key !== except) - __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable }); + if (!__hasOwnProp2.call(to2, key) && key !== except) + __defProp2(to2, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable }); } - return to; + return to2; }; var __toCommonJS2 = (mod) => __copyProps2(__defProp2({}, "__esModule", { value: true }), mod); var dist_src_exports = {}; @@ -22942,29 +22942,29 @@ var require_dist_node10 = __commonJS({ var require_utils4 = __commonJS({ "node_modules/.pnpm/@actions+github@6.0.0/node_modules/@actions/github/lib/utils.js"(exports) { "use strict"; - var __createBinding = exports && exports.__createBinding || (Object.create ? function(o, m, k, k2) { - if (k2 === void 0) k2 = k; - var desc = Object.getOwnPropertyDescriptor(m, k); - if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + var __createBinding = exports && exports.__createBinding || (Object.create ? function(o2, m2, k2, k22) { + if (k22 === void 0) k22 = k2; + var desc = Object.getOwnPropertyDescriptor(m2, k2); + if (!desc || ("get" in desc ? !m2.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { - return m[k]; + return m2[k2]; } }; } - Object.defineProperty(o, k2, desc); - } : function(o, m, k, k2) { - if (k2 === void 0) k2 = k; - o[k2] = m[k]; + Object.defineProperty(o2, k22, desc); + } : function(o2, m2, k2, k22) { + if (k22 === void 0) k22 = k2; + o2[k22] = m2[k2]; }); - var __setModuleDefault = exports && exports.__setModuleDefault || (Object.create ? function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); - } : function(o, v) { - o["default"] = v; + var __setModuleDefault = exports && exports.__setModuleDefault || (Object.create ? function(o2, v2) { + Object.defineProperty(o2, "default", { enumerable: true, value: v2 }); + } : function(o2, v2) { + o2["default"] = v2; }); var __importStar = exports && exports.__importStar || function(mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) { - for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + for (var k2 in mod) if (k2 !== "default" && Object.prototype.hasOwnProperty.call(mod, k2)) __createBinding(result, mod, k2); } __setModuleDefault(result, mod); return result; @@ -23002,29 +23002,29 @@ var require_utils4 = __commonJS({ var require_github = __commonJS({ "node_modules/.pnpm/@actions+github@6.0.0/node_modules/@actions/github/lib/github.js"(exports) { "use strict"; - var __createBinding = exports && exports.__createBinding || (Object.create ? function(o, m, k, k2) { - if (k2 === void 0) k2 = k; - var desc = Object.getOwnPropertyDescriptor(m, k); - if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + var __createBinding = exports && exports.__createBinding || (Object.create ? function(o2, m2, k2, k22) { + if (k22 === void 0) k22 = k2; + var desc = Object.getOwnPropertyDescriptor(m2, k2); + if (!desc || ("get" in desc ? !m2.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { - return m[k]; + return m2[k2]; } }; } - Object.defineProperty(o, k2, desc); - } : function(o, m, k, k2) { - if (k2 === void 0) k2 = k; - o[k2] = m[k]; + Object.defineProperty(o2, k22, desc); + } : function(o2, m2, k2, k22) { + if (k22 === void 0) k22 = k2; + o2[k22] = m2[k2]; }); - var __setModuleDefault = exports && exports.__setModuleDefault || (Object.create ? function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); - } : function(o, v) { - o["default"] = v; + var __setModuleDefault = exports && exports.__setModuleDefault || (Object.create ? function(o2, v2) { + Object.defineProperty(o2, "default", { enumerable: true, value: v2 }); + } : function(o2, v2) { + o2["default"] = v2; }); var __importStar = exports && exports.__importStar || function(mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) { - for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + for (var k2 in mod) if (k2 !== "default" && Object.prototype.hasOwnProperty.call(mod, k2)) __createBinding(result, mod, k2); } __setModuleDefault(result, mod); return result; @@ -23235,240 +23235,4123 @@ var ansi_styles_default = ansiStyles; var import_core = __toESM(require_core(), 1); var import_github = __toESM(require_github(), 1); -// node_modules/.pnpm/zod@3.23.8/node_modules/zod/lib/index.mjs -var util; -(function(util2) { - util2.assertEqual = (val) => val; - function assertIs(_arg) { +// node_modules/.pnpm/temporal-polyfill@0.2.4/node_modules/temporal-polyfill/chunks/internal.js +function clampProp(e2, n2, t2, o2, r2) { + return clampEntity(n2, getDefinedProp(e2, n2), t2, o2, r2); +} +function clampEntity(e2, n2, t2, o2, r2, i2) { + const a2 = clampNumber(n2, t2, o2); + if (r2 && n2 !== a2) { + throw new RangeError(numberOutOfRange(e2, n2, t2, o2, i2)); } - util2.assertIs = assertIs; - function assertNever(_x) { - throw new Error(); + return a2; +} +function getDefinedProp(e2, n2) { + const t2 = e2[n2]; + if (void 0 === t2) { + throw new TypeError(missingField(n2)); } - util2.assertNever = assertNever; - util2.arrayToEnum = (items) => { - const obj = {}; - for (const item of items) { - obj[item] = item; - } - return obj; + return t2; +} +function z(e2) { + return null !== e2 && /object|function/.test(typeof e2); +} +function Jn(e2, n2 = Map) { + const t2 = new n2(); + return (n3, ...o2) => { + if (t2.has(n3)) { + return t2.get(n3); + } + const r2 = e2(n3, ...o2); + return t2.set(n3, r2), r2; }; - util2.getValidEnumValues = (obj) => { - const validKeys = util2.objectKeys(obj).filter((k) => typeof obj[obj[k]] !== "number"); - const filtered = {}; - for (const k of validKeys) { - filtered[k] = obj[k]; +} +function D(e2) { + return p({ + name: e2 + }, 1); +} +function p(e2, n2) { + return T((e3) => ({ + value: e3, + configurable: 1, + writable: !n2 + }), e2); +} +function O(e2) { + return T((e3) => ({ + get: e3, + configurable: 1 + }), e2); +} +function h(e2) { + return { + [Symbol.toStringTag]: { + value: e2, + configurable: 1 } - return util2.objectValues(filtered); }; - util2.objectValues = (obj) => { - return util2.objectKeys(obj).map(function(e) { - return obj[e]; - }); - }; - util2.objectKeys = typeof Object.keys === "function" ? (obj) => Object.keys(obj) : (object) => { - const keys = []; - for (const key in object) { - if (Object.prototype.hasOwnProperty.call(object, key)) { - keys.push(key); - } - } - return keys; +} +function zipProps(e2, n2) { + const t2 = {}; + let o2 = e2.length; + for (const r2 of n2) { + t2[e2[--o2]] = r2; + } + return t2; +} +function T(e2, n2, t2) { + const o2 = {}; + for (const r2 in n2) { + o2[r2] = e2(n2[r2], r2, t2); + } + return o2; +} +function b(e2, n2, t2) { + const o2 = {}; + for (let r2 = 0; r2 < n2.length; r2++) { + const i2 = n2[r2]; + o2[i2] = e2(i2, r2, t2); + } + return o2; +} +function remapProps(e2, n2, t2) { + const o2 = {}; + for (let r2 = 0; r2 < e2.length; r2++) { + o2[n2[r2]] = t2[e2[r2]]; + } + return o2; +} +function Vn(e2, n2) { + const t2 = {}; + for (const o2 of e2) { + t2[o2] = n2[o2]; + } + return t2; +} +function V(e2, n2) { + const t2 = {}; + for (const o2 in n2) { + e2.has(o2) || (t2[o2] = n2[o2]); + } + return t2; +} +function nn(e2) { + e2 = { + ...e2 }; - util2.find = (arr, checker) => { - for (const item of arr) { - if (checker(item)) - return item; + const n2 = Object.keys(e2); + for (const t2 of n2) { + void 0 === e2[t2] && delete e2[t2]; + } + return e2; +} +function C(e2, n2) { + for (const t2 of n2) { + if (!(t2 in e2)) { + return 0; } - return void 0; - }; - util2.isInteger = typeof Number.isInteger === "function" ? (val) => Number.isInteger(val) : (val) => typeof val === "number" && isFinite(val) && Math.floor(val) === val; - function joinValues(array, separator = " | ") { - return array.map((val) => typeof val === "string" ? `'${val}'` : val).join(separator); } - util2.joinValues = joinValues; - util2.jsonStringifyReplacer = (_, value) => { - if (typeof value === "bigint") { - return value.toString(); + return 1; +} +function allPropsEqual(e2, n2, t2) { + for (const o2 of e2) { + if (n2[o2] !== t2[o2]) { + return 0; } - return value; - }; -})(util || (util = {})); -var objectUtil; -(function(objectUtil2) { - objectUtil2.mergeShapes = (first, second) => { - return { - ...first, - ...second - // second overwrites first - }; + } + return 1; +} +function zeroOutProps(e2, n2, t2) { + const o2 = { + ...t2 }; -})(objectUtil || (objectUtil = {})); -var ZodParsedType = util.arrayToEnum([ - "string", - "nan", - "number", - "integer", - "float", - "boolean", - "date", - "bigint", - "symbol", - "function", - "undefined", - "null", - "array", - "object", - "unknown", - "promise", - "void", - "never", - "map", - "set" -]); -var getParsedType = (data) => { - const t = typeof data; - switch (t) { - case "undefined": - return ZodParsedType.undefined; - case "string": - return ZodParsedType.string; - case "number": - return isNaN(data) ? ZodParsedType.nan : ZodParsedType.number; - case "boolean": - return ZodParsedType.boolean; - case "function": - return ZodParsedType.function; - case "bigint": - return ZodParsedType.bigint; - case "symbol": - return ZodParsedType.symbol; - case "object": - if (Array.isArray(data)) { - return ZodParsedType.array; - } - if (data === null) { - return ZodParsedType.null; - } - if (data.then && typeof data.then === "function" && data.catch && typeof data.catch === "function") { - return ZodParsedType.promise; - } - if (typeof Map !== "undefined" && data instanceof Map) { - return ZodParsedType.map; - } - if (typeof Set !== "undefined" && data instanceof Set) { - return ZodParsedType.set; - } - if (typeof Date !== "undefined" && data instanceof Date) { - return ZodParsedType.date; - } - return ZodParsedType.object; - default: - return ZodParsedType.unknown; + for (let t3 = 0; t3 < n2; t3++) { + o2[e2[t3]] = 0; } -}; -var ZodIssueCode = util.arrayToEnum([ - "invalid_type", - "invalid_literal", - "custom", - "invalid_union", - "invalid_union_discriminator", - "invalid_enum_value", - "unrecognized_keys", - "invalid_arguments", - "invalid_return_type", - "invalid_date", - "invalid_string", - "too_small", - "too_big", - "invalid_intersection_types", - "not_multiple_of", - "not_finite" -]); -var quotelessJson = (obj) => { - const json = JSON.stringify(obj, null, 2); - return json.replace(/"([^"]+)":/g, "$1:"); -}; -var ZodError = class _ZodError extends Error { - constructor(issues) { - super(); - this.issues = []; - this.addIssue = (sub) => { - this.issues = [...this.issues, sub]; - }; - this.addIssues = (subs = []) => { - this.issues = [...this.issues, ...subs]; - }; - const actualProto = new.target.prototype; - if (Object.setPrototypeOf) { - Object.setPrototypeOf(this, actualProto); - } else { - this.__proto__ = actualProto; - } - this.name = "ZodError"; - this.issues = issues; + return o2; +} +function E(e2, ...n2) { + return (...t2) => e2(...n2, ...t2); +} +function capitalize(e2) { + return e2[0].toUpperCase() + e2.substring(1); +} +function sortStrings(e2) { + return e2.slice().sort(); +} +function padNumber(e2, n2) { + return String(n2).padStart(e2, "0"); +} +function compareNumbers(e2, n2) { + return Math.sign(e2 - n2); +} +function clampNumber(e2, n2, t2) { + return Math.min(Math.max(e2, n2), t2); +} +function divModFloor(e2, n2) { + return [Math.floor(e2 / n2), modFloor(e2, n2)]; +} +function modFloor(e2, n2) { + return (e2 % n2 + n2) % n2; +} +function divModTrunc(e2, n2) { + return [divTrunc(e2, n2), modTrunc(e2, n2)]; +} +function divTrunc(e2, n2) { + return Math.trunc(e2 / n2) || 0; +} +function modTrunc(e2, n2) { + return e2 % n2 || 0; +} +function hasHalf(e2) { + return 0.5 === Math.abs(e2 % 1); +} +function givenFieldsToBigNano(e2, n2, t2) { + let o2 = 0, r2 = 0; + for (let i3 = 0; i3 <= n2; i3++) { + const n3 = e2[t2[i3]], a3 = Xr[i3], s2 = Qr / a3, [c2, u2] = divModTrunc(n3, s2); + o2 += u2 * a3, r2 += c2; + } + const [i2, a2] = divModTrunc(o2, Qr); + return [r2 + i2, a2]; +} +function nanoToGivenFields(e2, n2, t2) { + const o2 = {}; + for (let r2 = n2; r2 >= 0; r2--) { + const n3 = Xr[r2]; + o2[t2[r2]] = divTrunc(e2, n3), e2 = modTrunc(e2, n3); } - get errors() { - return this.issues; + return o2; +} +function un(e2) { + return e2 === X ? si : []; +} +function cn(e2) { + return e2 === X ? li : []; +} +function ln(e2) { + return e2 === X ? ["year", "day"] : []; +} +function l(e2) { + if (void 0 !== e2) { + return m(e2); } - format(_mapper) { - const mapper = _mapper || function(issue) { - return issue.message; - }; - const fieldErrors = { _errors: [] }; - const processError = (error2) => { - for (const issue of error2.issues) { - if (issue.code === "invalid_union") { - issue.unionErrors.map(processError); - } else if (issue.code === "invalid_return_type") { - processError(issue.returnTypeError); - } else if (issue.code === "invalid_arguments") { - processError(issue.argumentsError); - } else if (issue.path.length === 0) { - fieldErrors._errors.push(mapper(issue)); - } else { - let curr = fieldErrors; - let i = 0; - while (i < issue.path.length) { - const el = issue.path[i]; - const terminal = i === issue.path.length - 1; - if (!terminal) { - curr[el] = curr[el] || { _errors: [] }; - } else { - curr[el] = curr[el] || { _errors: [] }; - curr[el]._errors.push(mapper(issue)); - } - curr = curr[el]; - i++; - } - } - } - }; - processError(this); - return fieldErrors; +} +function S(e2) { + if (void 0 !== e2) { + return d(e2); } - static assert(value) { - if (!(value instanceof _ZodError)) { - throw new Error(`Not a ZodError: ${value}`); - } +} +function c(e2) { + if (void 0 !== e2) { + return u(e2); } - toString() { - return this.message; +} +function d(e2) { + return requireNumberIsPositive(u(e2)); +} +function u(e2) { + return requireNumberIsInteger(Ni(e2)); +} +function on(e2) { + if (null == e2) { + throw new TypeError("Cannot be null or undefined"); } - get message() { - return JSON.stringify(this.issues, util.jsonStringifyReplacer, 2); + return e2; +} +function requirePropDefined(e2, n2) { + if (null == n2) { + throw new RangeError(missingField(e2)); } - get isEmpty() { - return this.issues.length === 0; + return n2; +} +function de(e2) { + if (!z(e2)) { + throw new TypeError(hr); } - flatten(mapper = (issue) => issue.message) { - const fieldErrors = {}; - const formErrors = []; - for (const sub of this.issues) { - if (sub.path.length > 0) { - fieldErrors[sub.path[0]] = fieldErrors[sub.path[0]] || []; - fieldErrors[sub.path[0]].push(mapper(sub)); - } else { + return e2; +} +function requireType(e2, n2, t2 = e2) { + if (typeof n2 !== e2) { + throw new TypeError(invalidEntity(t2, n2)); + } + return n2; +} +function requireNumberIsInteger(e2, n2 = "number") { + if (!Number.isInteger(e2)) { + throw new RangeError(expectedInteger(n2, e2)); + } + return e2 || 0; +} +function requireNumberIsPositive(e2, n2 = "number") { + if (e2 <= 0) { + throw new RangeError(expectedPositive(n2, e2)); + } + return e2; +} +function toString(e2) { + if ("symbol" == typeof e2) { + throw new TypeError(pr); + } + return String(e2); +} +function toStringViaPrimitive(e2, n2) { + return z(e2) ? String(e2) : m(e2, n2); +} +function toBigInt(e2) { + if ("string" == typeof e2) { + return BigInt(e2); + } + if ("bigint" != typeof e2) { + throw new TypeError(invalidBigInt(e2)); + } + return e2; +} +function toNumber(e2, n2 = "number") { + if ("bigint" == typeof e2) { + throw new TypeError(forbiddenBigIntToNumber(n2)); + } + if (e2 = Number(e2), !Number.isFinite(e2)) { + throw new RangeError(expectedFinite(n2, e2)); + } + return e2; +} +function toInteger(e2, n2) { + return Math.trunc(toNumber(e2, n2)) || 0; +} +function toStrictInteger(e2, n2) { + return requireNumberIsInteger(toNumber(e2, n2), n2); +} +function toPositiveInteger(e2, n2) { + return requireNumberIsPositive(toInteger(e2, n2), n2); +} +function createBigNano(e2, n2) { + let [t2, o2] = divModTrunc(n2, Qr), r2 = e2 + t2; + const i2 = Math.sign(r2); + return i2 && i2 === -Math.sign(o2) && (r2 -= i2, o2 += i2 * Qr), [r2, o2]; +} +function addBigNanos(e2, n2, t2 = 1) { + return createBigNano(e2[0] + n2[0] * t2, e2[1] + n2[1] * t2); +} +function moveBigNano(e2, n2) { + return createBigNano(e2[0], e2[1] + n2); +} +function re(e2, n2) { + return addBigNanos(n2, e2, -1); +} +function te(e2, n2) { + return compareNumbers(e2[0], n2[0]) || compareNumbers(e2[1], n2[1]); +} +function bigNanoOutside(e2, n2, t2) { + return -1 === te(e2, n2) || 1 === te(e2, t2); +} +function bigIntToBigNano(e2, n2 = 1) { + const t2 = BigInt(Qr / n2); + return [Number(e2 / t2), Number(e2 % t2) * n2]; +} +function he(e2, n2 = 1) { + const t2 = Qr / n2, [o2, r2] = divModTrunc(e2, t2); + return [o2, r2 * n2]; +} +function bigNanoToBigInt(e2, n2 = 1) { + const [t2, o2] = e2, r2 = Math.floor(o2 / n2), i2 = Qr / n2; + return BigInt(t2) * BigInt(i2) + BigInt(r2); +} +function oe(e2, n2 = 1, t2) { + const [o2, r2] = e2, [i2, a2] = divModTrunc(r2, n2); + return o2 * (Qr / n2) + (i2 + (t2 ? a2 / n2 : 0)); +} +function divModBigNano(e2, n2, t2 = divModFloor) { + const [o2, r2] = e2, [i2, a2] = t2(r2, n2); + return [o2 * (Qr / n2) + i2, a2]; +} +function hashIntlFormatParts(e2, n2) { + const t2 = e2.formatToParts(n2), o2 = {}; + for (const e3 of t2) { + o2[e3.type] = e3.value; + } + return o2; +} +function checkIsoYearMonthInBounds(e2) { + return clampProp(e2, "isoYear", Wi, Li, 1), e2.isoYear === Wi ? clampProp(e2, "isoMonth", 4, 12, 1) : e2.isoYear === Li && clampProp(e2, "isoMonth", 1, 9, 1), e2; +} +function checkIsoDateInBounds(e2) { + return checkIsoDateTimeInBounds({ + ...e2, + ...Dt, + isoHour: 12 + }), e2; +} +function checkIsoDateTimeInBounds(e2) { + const n2 = clampProp(e2, "isoYear", Wi, Li, 1), t2 = n2 === Wi ? 1 : n2 === Li ? -1 : 0; + return t2 && checkEpochNanoInBounds(isoToEpochNano({ + ...e2, + isoDay: e2.isoDay + t2, + isoNanosecond: e2.isoNanosecond - t2 + })), e2; +} +function checkEpochNanoInBounds(e2) { + if (!e2 || bigNanoOutside(e2, Ui, Ai)) { + throw new RangeError(Cr); + } + return e2; +} +function isoTimeFieldsToNano(e2) { + return givenFieldsToBigNano(e2, 5, j)[1]; +} +function nanoToIsoTimeAndDay(e2) { + const [n2, t2] = divModFloor(e2, Qr); + return [nanoToGivenFields(t2, 5, j), n2]; +} +function epochNanoToSec(e2) { + return epochNanoToSecMod(e2)[0]; +} +function epochNanoToSecMod(e2) { + return divModBigNano(e2, _r); +} +function isoToEpochMilli(e2) { + return isoArgsToEpochMilli(e2.isoYear, e2.isoMonth, e2.isoDay, e2.isoHour, e2.isoMinute, e2.isoSecond, e2.isoMillisecond); +} +function isoToEpochNano(e2) { + const n2 = isoToEpochMilli(e2); + if (void 0 !== n2) { + const [t2, o2] = divModTrunc(n2, Gr); + return [t2, o2 * be + (e2.isoMicrosecond || 0) * Vr + (e2.isoNanosecond || 0)]; + } +} +function isoToEpochNanoWithOffset(e2, n2) { + const [t2, o2] = nanoToIsoTimeAndDay(isoTimeFieldsToNano(e2) - n2); + return checkEpochNanoInBounds(isoToEpochNano({ + ...e2, + isoDay: e2.isoDay + o2, + ...t2 + })); +} +function isoArgsToEpochSec(...e2) { + return isoArgsToEpochMilli(...e2) / Hr; +} +function isoArgsToEpochMilli(...e2) { + const [n2, t2] = isoToLegacyDate(...e2), o2 = n2.valueOf(); + if (!isNaN(o2)) { + return o2 - t2 * Gr; + } +} +function isoToLegacyDate(e2, n2 = 1, t2 = 1, o2 = 0, r2 = 0, i2 = 0, a2 = 0) { + const s2 = e2 === Wi ? 1 : e2 === Li ? -1 : 0, c2 = /* @__PURE__ */ new Date(); + return c2.setUTCHours(o2, r2, i2, a2), c2.setUTCFullYear(e2, n2 - 1, t2 + s2), [c2, s2]; +} +function Ie(e2, n2) { + let [t2, o2] = moveBigNano(e2, n2); + o2 < 0 && (o2 += Qr, t2 -= 1); + const [r2, i2] = divModFloor(o2, be), [a2, s2] = divModFloor(i2, Vr); + return epochMilliToIso(t2 * Gr + r2, a2, s2); +} +function epochMilliToIso(e2, n2 = 0, t2 = 0) { + const o2 = Math.ceil(Math.max(0, Math.abs(e2) - qi) / Gr) * Math.sign(e2), r2 = new Date(e2 - o2 * Gr); + return zipProps(Bi, [r2.getUTCFullYear(), r2.getUTCMonth() + 1, r2.getUTCDate() + o2, r2.getUTCHours(), r2.getUTCMinutes(), r2.getUTCSeconds(), r2.getUTCMilliseconds(), n2, t2]); +} +function computeIsoDateParts(e2) { + return [e2.isoYear, e2.isoMonth, e2.isoDay]; +} +function computeIsoMonthsInYear() { + return $i; +} +function computeIsoDaysInMonth(e2, n2) { + switch (n2) { + case 2: + return computeIsoInLeapYear(e2) ? 29 : 28; + case 4: + case 6: + case 9: + case 11: + return 30; + } + return 31; +} +function computeIsoDaysInYear(e2) { + return computeIsoInLeapYear(e2) ? 366 : 365; +} +function computeIsoInLeapYear(e2) { + return e2 % 4 == 0 && (e2 % 100 != 0 || e2 % 400 == 0); +} +function computeIsoDayOfWeek(e2) { + const [n2, t2] = isoToLegacyDate(e2.isoYear, e2.isoMonth, e2.isoDay); + return modFloor(n2.getUTCDay() - t2, 7) || 7; +} +function computeGregoryEraParts({ isoYear: e2 }) { + return e2 < 1 ? ["bce", 1 - e2] : ["ce", e2]; +} +function computeJapaneseEraParts(e2) { + const n2 = isoToEpochMilli(e2); + if (n2 < Gi) { + return computeGregoryEraParts(e2); + } + const t2 = hashIntlFormatParts(Wa(Ti), n2), { era: o2, eraYear: r2 } = parseIntlYear(t2, Ti); + return [o2, r2]; +} +function checkIsoDateTimeFields(e2) { + return checkIsoDateFields(e2), constrainIsoTimeFields(e2, 1), e2; +} +function checkIsoDateFields(e2) { + return constrainIsoDateFields(e2, 1), e2; +} +function isIsoDateFieldsValid(e2) { + return allPropsEqual(wi, e2, constrainIsoDateFields(e2)); +} +function constrainIsoDateFields(e2, n2) { + const { isoYear: t2 } = e2, o2 = clampProp(e2, "isoMonth", 1, computeIsoMonthsInYear(), n2); + return { + isoYear: t2, + isoMonth: o2, + isoDay: clampProp(e2, "isoDay", 1, computeIsoDaysInMonth(t2, o2), n2) + }; +} +function constrainIsoTimeFields(e2, n2) { + return zipProps(j, [clampProp(e2, "isoHour", 0, 23, n2), clampProp(e2, "isoMinute", 0, 59, n2), clampProp(e2, "isoSecond", 0, 59, n2), clampProp(e2, "isoMillisecond", 0, 999, n2), clampProp(e2, "isoMicrosecond", 0, 999, n2), clampProp(e2, "isoNanosecond", 0, 999, n2)]); +} +function H(e2) { + return void 0 === e2 ? 0 : la(de(e2)); +} +function wn(e2, n2 = 0) { + e2 = normalizeOptions(e2); + const t2 = fa(e2), o2 = da(e2, n2); + return [la(e2), o2, t2]; +} +function ve(e2) { + return fa(normalizeOptions(e2)); +} +function _t(e2) { + return e2 = normalizeOptions(e2), ca(e2, 9, 6, 1); +} +function refineDiffOptions(e2, n2, t2, o2 = 9, r2 = 0, i2 = 4) { + n2 = normalizeOptions(n2); + let a2 = ca(n2, o2, r2), s2 = parseRoundingIncInteger(n2), c2 = ga(n2, i2); + const u2 = sa(n2, o2, r2, 1); + return null == a2 ? a2 = Math.max(t2, u2) : checkLargestSmallestUnit(a2, u2), s2 = refineRoundingInc(s2, u2, 1), e2 && (c2 = ((e3) => e3 < 4 ? (e3 + 2) % 4 : e3)(c2)), [a2, u2, s2, c2]; +} +function refineRoundingOptions(e2, n2 = 6, t2) { + let o2 = parseRoundingIncInteger(e2 = normalizeOptionsOrString(e2, Vi)); + const r2 = ga(e2, 7); + let i2 = sa(e2, n2); + return i2 = requirePropDefined(Vi, i2), o2 = refineRoundingInc(o2, i2, void 0, t2), [i2, o2, r2]; +} +function refineDateDisplayOptions(e2) { + return ma(normalizeOptions(e2)); +} +function refineTimeDisplayOptions(e2, n2) { + return refineTimeDisplayTuple(normalizeOptions(e2), n2); +} +function refineTimeDisplayTuple(e2, n2 = 4) { + const t2 = refineSubsecDigits(e2); + return [ga(e2, 4), ...refineSmallestUnitAndSubsecDigits(sa(e2, n2), t2)]; +} +function refineSmallestUnitAndSubsecDigits(e2, n2) { + return null != e2 ? [Xr[e2], e2 < 4 ? 9 - 3 * e2 : -1] : [void 0 === n2 ? 1 : 10 ** (9 - n2), n2]; +} +function parseRoundingIncInteger(e2) { + const n2 = e2[Ji]; + return void 0 === n2 ? 1 : toInteger(n2, Ji); +} +function refineRoundingInc(e2, n2, t2, o2) { + const r2 = o2 ? Qr : Xr[n2 + 1]; + if (r2) { + const t3 = Xr[n2]; + if (r2 % ((e2 = clampEntity(Ji, e2, 1, r2 / t3 - (o2 ? 0 : 1), 1)) * t3)) { + throw new RangeError(invalidEntity(Ji, e2)); + } + } else { + e2 = clampEntity(Ji, e2, 1, t2 ? 10 ** 9 : 1, 1); + } + return e2; +} +function refineSubsecDigits(e2) { + let n2 = e2[Ki]; + if (void 0 !== n2) { + if ("number" != typeof n2) { + if ("auto" === toString(n2)) { + return; + } + throw new RangeError(invalidEntity(Ki, n2)); + } + n2 = clampEntity(Ki, Math.floor(n2), 0, 9, 1); + } + return n2; +} +function normalizeOptions(e2) { + return void 0 === e2 ? {} : de(e2); +} +function normalizeOptionsOrString(e2, n2) { + return "string" == typeof e2 ? { + [n2]: e2 + } : de(e2); +} +function U(e2) { + if (void 0 !== e2) { + if (z(e2)) { + return Object.assign(/* @__PURE__ */ Object.create(null), e2); + } + throw new TypeError(hr); + } +} +function overrideOverflowOptions(e2, n2) { + return e2 && Object.assign(/* @__PURE__ */ Object.create(null), e2, { + overflow: ea[n2] + }); +} +function refineUnitOption(e2, n2, t2 = 9, o2 = 0, r2) { + let i2 = n2[e2]; + if (void 0 === i2) { + return r2 ? o2 : void 0; + } + if (i2 = toString(i2), "auto" === i2) { + return r2 ? o2 : null; + } + let a2 = $r[i2]; + if (void 0 === a2 && (a2 = Si[i2]), void 0 === a2) { + throw new RangeError(invalidChoice(e2, i2, $r)); + } + return clampEntity(e2, a2, o2, t2, 1, Et), a2; +} +function refineChoiceOption(e2, n2, t2, o2 = 0) { + const r2 = t2[e2]; + if (void 0 === r2) { + return o2; + } + const i2 = toString(r2), a2 = n2[i2]; + if (void 0 === a2) { + throw new RangeError(invalidChoice(e2, i2, n2)); + } + return a2; +} +function checkLargestSmallestUnit(e2, n2) { + if (n2 > e2) { + throw new RangeError(Ur); + } +} +function _(e2) { + return { + branding: Oe, + epochNanoseconds: e2 + }; +} +function Yn(e2, n2, t2) { + return { + branding: Te, + calendar: t2, + timeZone: n2, + epochNanoseconds: e2 + }; +} +function ee(e2, n2 = e2.calendar) { + return { + branding: We, + calendar: n2, + ...Vn(Ci, e2) + }; +} +function v(e2, n2 = e2.calendar) { + return { + branding: J, + calendar: n2, + ...Vn(ki, e2) + }; +} +function createPlainYearMonthSlots(e2, n2 = e2.calendar) { + return { + branding: L, + calendar: n2, + ...Vn(ki, e2) + }; +} +function createPlainMonthDaySlots(e2, n2 = e2.calendar) { + return { + branding: q, + calendar: n2, + ...Vn(ki, e2) + }; +} +function Ge(e2) { + return { + branding: xe, + ...Vn(Yi, e2) + }; +} +function Vt(e2) { + return { + branding: qt, + sign: computeDurationSign(e2), + ...Vn(yi, e2) + }; +} +function M(e2) { + return epochNanoToSec(e2.epochNanoseconds); +} +function y(e2) { + return divModBigNano(e2.epochNanoseconds, be)[0]; +} +function N(e2) { + return bigNanoToBigInt(e2.epochNanoseconds, Vr); +} +function B(e2) { + return bigNanoToBigInt(e2.epochNanoseconds); +} +function extractEpochNano(e2) { + return e2.epochNanoseconds; +} +function I(e2) { + return "string" == typeof e2 ? e2 : m(e2.id); +} +function isIdLikeEqual(e2, n2) { + return e2 === n2 || I(e2) === I(n2); +} +function Ut(e2, n2, t2, o2, r2) { + const i2 = getLargestDurationUnit(o2), [a2, s2] = ((e3, n3) => { + const t3 = n3((e3 = normalizeOptionsOrString(e3, _i))[Qi]); + let o3 = ua(e3); + return o3 = requirePropDefined(_i, o3), [o3, t3]; + })(r2, e2); + if (isUniformUnit(Math.max(a2, i2), s2)) { + return ((e3, n3) => oe(durationFieldsToBigNano(e3), Xr[n3], 1))(o2, a2); + } + if (!s2) { + throw new RangeError(zr); + } + const [c2, u2, l2] = createMarkerSystem(n2, t2, s2), f2 = createMarkerToEpochNano(l2), d2 = createMoveMarker(u2, l2); + return ((e3, n3, t3, o3, r3, i3) => { + const a3 = computeDurationSign(e3), [s3, c3] = clampRelativeDuration(Oi(t3, e3), t3, a3, o3, r3, i3), u3 = computeEpochNanoFrac(n3, s3, c3); + return e3[F[t3]] + u3 * a3; + })(...spanDuration(o2, a2, c2, f2, d2, createDiffMarkers(u2, l2)), a2, c2, f2, d2); +} +function clampRelativeDuration(e2, n2, t2, o2, r2, i2) { + const a2 = { + ...Fi, + [F[n2]]: t2 + }, s2 = i2(o2, e2), c2 = i2(s2, a2); + return [r2(s2), r2(c2)]; +} +function computeEpochNanoFrac(e2, n2, t2) { + const o2 = oe(re(n2, t2)); + if (!o2) { + throw new RangeError(vr); + } + return oe(re(n2, e2)) / o2; +} +function ce(e2, n2) { + const [t2, o2, r2] = refineRoundingOptions(n2, 5, 1); + return _(roundBigNano(e2.epochNanoseconds, t2, o2, r2, 1)); +} +function Pn(e2, n2, t2) { + let { epochNanoseconds: o2, timeZone: r2, calendar: i2 } = n2; + const [a2, s2, c2] = refineRoundingOptions(t2); + if (0 === a2 && 1 === s2) { + return n2; + } + const u2 = e2(r2); + if (6 === a2) { + o2 = ((e3, n3, t3, o3) => { + const r3 = fn(t3, n3), [i3, a3] = e3(r3), s3 = t3.epochNanoseconds, c3 = we(n3, i3), u3 = we(n3, a3); + if (bigNanoOutside(s3, c3, u3)) { + throw new RangeError(vr); + } + return roundWithMode(computeEpochNanoFrac(s3, c3, u3), o3) ? u3 : c3; + })(computeDayInterval, u2, n2, c2); + } else { + const e3 = u2.getOffsetNanosecondsFor(o2); + o2 = getMatchingInstantFor(u2, roundDateTime(Ie(o2, e3), a2, s2, c2), e3, 2, 0, 1); + } + return Yn(o2, r2, i2); +} +function dt(e2, n2) { + return ee(roundDateTime(e2, ...refineRoundingOptions(n2)), e2.calendar); +} +function Ee(e2, n2) { + const [t2, o2, r2] = refineRoundingOptions(n2, 5); + var i2; + return Ge((i2 = r2, roundTimeToNano(e2, computeNanoInc(t2, o2), i2)[0])); +} +function dn(e2, n2) { + const t2 = e2(n2.timeZone), o2 = fn(n2, t2), [r2, i2] = computeDayInterval(o2), a2 = oe(re(we(t2, r2), we(t2, i2)), Kr, 1); + if (a2 <= 0) { + throw new RangeError(vr); + } + return a2; +} +function Cn(e2, n2) { + const { timeZone: t2, calendar: o2 } = n2, r2 = ((e3, n3, t3) => we(n3, e3(fn(t3, n3))))(computeDayFloor, e2(t2), n2); + return Yn(r2, t2, o2); +} +function roundDateTime(e2, n2, t2, o2) { + return roundDateTimeToNano(e2, computeNanoInc(n2, t2), o2); +} +function roundDateTimeToNano(e2, n2, t2) { + const [o2, r2] = roundTimeToNano(e2, n2, t2); + return checkIsoDateTimeInBounds({ + ...moveByDays(e2, r2), + ...o2 + }); +} +function roundTimeToNano(e2, n2, t2) { + return nanoToIsoTimeAndDay(roundByInc(isoTimeFieldsToNano(e2), n2, t2)); +} +function roundToMinute(e2) { + return roundByInc(e2, Jr, 7); +} +function computeNanoInc(e2, n2) { + return Xr[e2] * n2; +} +function computeDayInterval(e2) { + const n2 = computeDayFloor(e2); + return [n2, moveByDays(n2, 1)]; +} +function computeDayFloor(e2) { + return Zi(6, e2); +} +function roundDayTimeDurationByInc(e2, n2, t2) { + const o2 = Math.min(getLargestDurationUnit(e2), 6); + return nanoToDurationDayTimeFields(roundBigNanoByInc(durationFieldsToBigNano(e2, o2), n2, t2), o2); +} +function roundRelativeDuration(e2, n2, t2, o2, r2, i2, a2, s2, c2) { + if (0 === o2 && 1 === r2) { + return e2; + } + const u2 = o2 > 6 ? nudgeRelativeDuration : isZonedEpochSlots(a2) && o2 < 6 ? nudgeZonedTimeDuration : nudgeDayTimeDuration; + let [l2, f2, d2] = u2(e2, n2, t2, o2, r2, i2, a2, s2, c2); + return d2 && (l2 = ((e3, n3, t3, o3, r3, i3, a3) => { + const s3 = computeDurationSign(e3); + for (let c3 = o3 + 1; c3 <= t3; c3++) { + if (7 === c3 && 7 !== t3) { + continue; + } + const o4 = Oi(c3, e3); + o4[F[c3]] += s3; + const u3 = oe(re(i3(a3(r3, o4)), n3)); + if (u3 && Math.sign(u3) !== s3) { + break; + } + e3 = o4; + } + return e3; + })(l2, f2, t2, Math.max(6, o2), a2, s2, c2)), l2; +} +function roundBigNano(e2, n2, t2, o2, r2) { + if (6 === n2) { + const n3 = ((e3) => e3[0] + e3[1] / Qr)(e2); + return [roundByInc(n3, t2, o2), 0]; + } + return roundBigNanoByInc(e2, computeNanoInc(n2, t2), o2, r2); +} +function roundBigNanoByInc(e2, n2, t2, o2) { + let [r2, i2] = e2; + o2 && i2 < 0 && (i2 += Qr, r2 -= 1); + const [a2, s2] = divModFloor(roundByInc(i2, n2, t2), Qr); + return createBigNano(r2 + a2, s2); +} +function roundByInc(e2, n2, t2) { + return roundWithMode(e2 / n2, t2) * n2; +} +function roundWithMode(e2, n2) { + return Ta[n2](e2); +} +function nudgeDayTimeDuration(e2, n2, t2, o2, r2, i2) { + const a2 = computeDurationSign(e2), s2 = durationFieldsToBigNano(e2), c2 = roundBigNano(s2, o2, r2, i2), u2 = re(s2, c2), l2 = Math.sign(c2[0] - s2[0]) === a2, f2 = nanoToDurationDayTimeFields(c2, Math.min(t2, 6)); + return [{ + ...e2, + ...f2 + }, addBigNanos(n2, u2), l2]; +} +function nudgeZonedTimeDuration(e2, n2, t2, o2, r2, i2, a2, s2, c2) { + const u2 = computeDurationSign(e2); + let [l2, f2] = durationFieldsToBigNano(e2, 5); + const d2 = computeNanoInc(o2, r2); + let m2 = roundByInc(f2, d2, i2); + const [p2, h2] = clampRelativeDuration({ + ...e2, + ...bi + }, 6, u2, a2, s2, c2), g2 = m2 - oe(re(p2, h2)); + g2 && Math.sign(g2) !== u2 ? n2 = moveBigNano(p2, m2) : (l2 += u2, m2 = roundByInc(g2, d2, i2), n2 = moveBigNano(h2, m2)); + const T2 = nanoToDurationTimeFields(m2); + return [{ + ...e2, + ...T2, + days: e2.days + l2 + }, n2, Boolean(l2)]; +} +function nudgeRelativeDuration(e2, n2, t2, o2, r2, i2, a2, s2, c2) { + const u2 = computeDurationSign(e2), l2 = F[o2], f2 = Oi(o2, e2), d2 = divTrunc(e2[l2], r2) * r2; + f2[l2] = d2; + const [m2, p2] = clampRelativeDuration(f2, o2, r2 * u2, a2, s2, c2), h2 = d2 + computeEpochNanoFrac(n2, m2, p2) * u2 * r2, g2 = roundByInc(h2, r2, i2), T2 = Math.sign(g2 - h2) === u2; + return f2[l2] = g2, [f2, T2 ? p2 : m2, T2]; +} +function me(e2, n2, t2, o2) { + const [r2, i2, a2, s2] = ((e3) => { + const n3 = refineTimeDisplayTuple(e3 = normalizeOptions(e3)); + return [e3.timeZone, ...n3]; + })(o2), c2 = void 0 !== r2; + return ((e3, n3, t3, o3, r3, i3) => { + t3 = roundBigNanoByInc(t3, r3, o3, 1); + const a3 = n3.getOffsetNanosecondsFor(t3); + return formatIsoDateTimeFields(Ie(t3, a3), i3) + (e3 ? Fe(roundToMinute(a3)) : "Z"); + })(c2, n2(c2 ? e2(r2) : Da), t2.epochNanoseconds, i2, a2, s2); +} +function In(e2, n2, t2) { + const [o2, r2, i2, a2, s2, c2] = ((e3) => { + e3 = normalizeOptions(e3); + const n3 = ma(e3), t3 = refineSubsecDigits(e3), o3 = ha(e3), r3 = ga(e3, 4), i3 = sa(e3, 4); + return [n3, pa(e3), o3, r3, ...refineSmallestUnitAndSubsecDigits(i3, t3)]; + })(t2); + return ((e3, n3, t3, o3, r3, i3, a3, s3, c3, u2) => { + o3 = roundBigNanoByInc(o3, c3, s3, 1); + const l2 = e3(t3).getOffsetNanosecondsFor(o3); + return formatIsoDateTimeFields(Ie(o3, l2), u2) + Fe(roundToMinute(l2), a3) + ((e4, n4) => 1 !== n4 ? "[" + (2 === n4 ? "!" : "") + I(e4) + "]" : "")(t3, i3) + formatCalendar(n3, r3); + })(e2, n2.calendar, n2.timeZone, n2.epochNanoseconds, o2, r2, i2, a2, s2, c2); +} +function Tt(e2, n2) { + const [t2, o2, r2, i2] = ((e3) => (e3 = normalizeOptions(e3), [ma(e3), ...refineTimeDisplayTuple(e3)]))(n2); + return a2 = e2.calendar, s2 = t2, c2 = i2, formatIsoDateTimeFields(roundDateTimeToNano(e2, r2, o2), c2) + formatCalendar(a2, s2); + var a2, s2, c2; +} +function yt(e2, n2) { + return t2 = e2.calendar, o2 = e2, r2 = refineDateDisplayOptions(n2), formatIsoDateFields(o2) + formatCalendar(t2, r2); + var t2, o2, r2; +} +function et(e2, n2) { + return formatDateLikeIso(e2.calendar, formatIsoYearMonthFields, e2, refineDateDisplayOptions(n2)); +} +function W(e2, n2) { + return formatDateLikeIso(e2.calendar, formatIsoMonthDayFields, e2, refineDateDisplayOptions(n2)); +} +function qe(e2, n2) { + const [t2, o2, r2] = refineTimeDisplayOptions(n2); + return i2 = r2, formatIsoTimeFields(roundTimeToNano(e2, o2, t2)[0], i2); + var i2; +} +function zt(e2, n2) { + const [t2, o2, r2] = refineTimeDisplayOptions(n2, 3); + return o2 > 1 && (e2 = { + ...e2, + ...roundDayTimeDurationByInc(e2, o2, t2) + }), ((e3, n3) => { + const { sign: t3 } = e3, o3 = -1 === t3 ? negateDurationFields(e3) : e3, { hours: r3, minutes: i2 } = o3, [a2, s2] = divModBigNano(durationFieldsToBigNano(o3, 3), _r, divModTrunc); + checkDurationTimeUnit(a2); + const c2 = formatSubsecNano(s2, n3), u2 = n3 >= 0 || !t3 || c2; + return (t3 < 0 ? "-" : "") + "P" + formatDurationFragments({ + Y: formatDurationNumber(o3.years), + M: formatDurationNumber(o3.months), + W: formatDurationNumber(o3.weeks), + D: formatDurationNumber(o3.days) + }) + (r3 || i2 || a2 || u2 ? "T" + formatDurationFragments({ + H: formatDurationNumber(r3), + M: formatDurationNumber(i2), + S: formatDurationNumber(a2, u2) + c2 + }) : ""); + })(e2, r2); +} +function formatDateLikeIso(e2, n2, t2, o2) { + const r2 = I(e2), i2 = o2 > 1 || 0 === o2 && r2 !== X; + return 1 === o2 ? r2 === X ? n2(t2) : formatIsoDateFields(t2) : i2 ? formatIsoDateFields(t2) + formatCalendarId(r2, 2 === o2) : n2(t2); +} +function formatDurationFragments(e2) { + const n2 = []; + for (const t2 in e2) { + const o2 = e2[t2]; + o2 && n2.push(o2, t2); + } + return n2.join(""); +} +function formatIsoDateTimeFields(e2, n2) { + return formatIsoDateFields(e2) + "T" + formatIsoTimeFields(e2, n2); +} +function formatIsoDateFields(e2) { + return formatIsoYearMonthFields(e2) + "-" + xr(e2.isoDay); +} +function formatIsoYearMonthFields(e2) { + const { isoYear: n2 } = e2; + return (n2 < 0 || n2 > 9999 ? getSignStr(n2) + padNumber(6, Math.abs(n2)) : padNumber(4, n2)) + "-" + xr(e2.isoMonth); +} +function formatIsoMonthDayFields(e2) { + return xr(e2.isoMonth) + "-" + xr(e2.isoDay); +} +function formatIsoTimeFields(e2, n2) { + const t2 = [xr(e2.isoHour), xr(e2.isoMinute)]; + return -1 !== n2 && t2.push(xr(e2.isoSecond) + ((e3, n3, t3, o2) => formatSubsecNano(e3 * be + n3 * Vr + t3, o2))(e2.isoMillisecond, e2.isoMicrosecond, e2.isoNanosecond, n2)), t2.join(":"); +} +function Fe(e2, n2 = 0) { + if (1 === n2) { + return ""; + } + const [t2, o2] = divModFloor(Math.abs(e2), Kr), [r2, i2] = divModFloor(o2, Jr), [a2, s2] = divModFloor(i2, _r); + return getSignStr(e2) + xr(t2) + ":" + xr(r2) + (a2 || s2 ? ":" + xr(a2) + formatSubsecNano(s2) : ""); +} +function formatCalendar(e2, n2) { + if (1 !== n2) { + const t2 = I(e2); + if (n2 > 1 || 0 === n2 && t2 !== X) { + return formatCalendarId(t2, 2 === n2); + } + } + return ""; +} +function formatCalendarId(e2, n2) { + return "[" + (n2 ? "!" : "") + "u-ca=" + e2 + "]"; +} +function formatSubsecNano(e2, n2) { + let t2 = padNumber(9, e2); + return t2 = void 0 === n2 ? t2.replace(ya, "") : t2.slice(0, n2), t2 ? "." + t2 : ""; +} +function getSignStr(e2) { + return e2 < 0 ? "-" : "+"; +} +function formatDurationNumber(e2, n2) { + return e2 || n2 ? e2.toLocaleString("fullwide", { + useGrouping: 0 + }) : ""; +} +function _zonedEpochSlotsToIso(e2, n2) { + const { epochNanoseconds: t2 } = e2, o2 = (n2.getOffsetNanosecondsFor ? n2 : n2(e2.timeZone)).getOffsetNanosecondsFor(t2), r2 = Ie(t2, o2); + return { + calendar: e2.calendar, + ...r2, + offsetNanoseconds: o2 + }; +} +function mn(e2, n2) { + const t2 = fn(n2, e2); + return { + calendar: n2.calendar, + ...Vn(Ci, t2), + offset: Fe(t2.offsetNanoseconds), + timeZone: n2.timeZone + }; +} +function getMatchingInstantFor(e2, n2, t2, o2 = 0, r2 = 0, i2, a2) { + if (void 0 !== t2 && 1 === o2 && (1 === o2 || a2)) { + return isoToEpochNanoWithOffset(n2, t2); + } + const s2 = e2.getPossibleInstantsFor(n2); + if (void 0 !== t2 && 3 !== o2) { + const e3 = ((e4, n3, t3, o3) => { + const r3 = isoToEpochNano(n3); + o3 && (t3 = roundToMinute(t3)); + for (const n4 of e4) { + let e5 = oe(re(n4, r3)); + if (o3 && (e5 = roundToMinute(e5)), e5 === t3) { + return n4; + } + } + })(s2, n2, t2, i2); + if (void 0 !== e3) { + return e3; + } + if (0 === o2) { + throw new RangeError(kr); + } + } + return a2 ? isoToEpochNano(n2) : we(e2, n2, r2, s2); +} +function we(e2, n2, t2 = 0, o2 = e2.getPossibleInstantsFor(n2)) { + if (1 === o2.length) { + return o2[0]; + } + if (1 === t2) { + throw new RangeError(Yr); + } + if (o2.length) { + return o2[3 === t2 ? 1 : 0]; + } + const r2 = isoToEpochNano(n2), i2 = ((e3, n3) => { + const t3 = e3.getOffsetNanosecondsFor(moveBigNano(n3, -Qr)); + return ne(e3.getOffsetNanosecondsFor(moveBigNano(n3, Qr)) - t3); + })(e2, r2), a2 = i2 * (2 === t2 ? -1 : 1); + return (o2 = e2.getPossibleInstantsFor(Ie(r2, a2)))[2 === t2 ? 0 : o2.length - 1]; +} +function ae(e2) { + if (Math.abs(e2) >= Qr) { + throw new RangeError(wr); + } + return e2; +} +function ne(e2) { + if (e2 > Qr) { + throw new RangeError(Br); + } + return e2; +} +function se(e2, n2, t2) { + return _(checkEpochNanoInBounds(addBigNanos(n2.epochNanoseconds, ((e3) => { + if (durationHasDateParts(e3)) { + throw new RangeError(qr); + } + return durationFieldsToBigNano(e3, 5); + })(e2 ? negateDurationFields(t2) : t2)))); +} +function hn(e2, n2, t2, o2, r2, i2 = /* @__PURE__ */ Object.create(null)) { + const a2 = n2(o2.timeZone), s2 = e2(o2.calendar); + return { + ...o2, + ...moveZonedEpochs(s2, a2, o2, t2 ? negateDurationFields(r2) : r2, i2) + }; +} +function ct(e2, n2, t2, o2, r2 = /* @__PURE__ */ Object.create(null)) { + const { calendar: i2 } = t2; + return ee(moveDateTime(e2(i2), t2, n2 ? negateDurationFields(o2) : o2, r2), i2); +} +function bt(e2, n2, t2, o2, r2) { + const { calendar: i2 } = t2; + return v(moveDate(e2(i2), t2, n2 ? negateDurationFields(o2) : o2, r2), i2); +} +function Qe(e2, n2, t2, o2, r2 = /* @__PURE__ */ Object.create(null)) { + const i2 = t2.calendar, a2 = e2(i2); + let s2 = moveToDayOfMonthUnsafe(a2, t2); + n2 && (o2 = xt(o2)), o2.sign < 0 && (s2 = a2.dateAdd(s2, { + ...Fi, + months: 1 + }), s2 = moveByDays(s2, -1)); + const c2 = a2.dateAdd(s2, o2, r2); + return createPlainYearMonthSlots(moveToDayOfMonthUnsafe(a2, c2), i2); +} +function Ye(e2, n2, t2) { + return Ge(moveTime(n2, e2 ? negateDurationFields(t2) : t2)[0]); +} +function moveZonedEpochs(e2, n2, t2, o2, r2) { + const i2 = durationFieldsToBigNano(o2, 5); + let a2 = t2.epochNanoseconds; + if (durationHasDateParts(o2)) { + const s2 = fn(t2, n2); + a2 = addBigNanos(we(n2, { + ...moveDate(e2, s2, { + ...o2, + ...bi + }, r2), + ...Vn(j, s2) + }), i2); + } else { + a2 = addBigNanos(a2, i2), H(r2); + } + return { + epochNanoseconds: checkEpochNanoInBounds(a2) + }; +} +function moveDateTime(e2, n2, t2, o2) { + const [r2, i2] = moveTime(n2, t2); + return checkIsoDateTimeInBounds({ + ...moveDate(e2, n2, { + ...t2, + ...bi, + days: t2.days + i2 + }, o2), + ...r2 + }); +} +function moveDate(e2, n2, t2, o2) { + if (t2.years || t2.months || t2.weeks) { + return e2.dateAdd(n2, t2, o2); + } + H(o2); + const r2 = t2.days + durationFieldsToBigNano(t2, 5)[0]; + return r2 ? checkIsoDateInBounds(moveByDays(n2, r2)) : n2; +} +function moveToDayOfMonthUnsafe(e2, n2, t2 = 1) { + return moveByDays(n2, t2 - e2.day(n2)); +} +function moveTime(e2, n2) { + const [t2, o2] = durationFieldsToBigNano(n2, 5), [r2, i2] = nanoToIsoTimeAndDay(isoTimeFieldsToNano(e2) + o2); + return [r2, t2 + i2]; +} +function moveByDays(e2, n2) { + return n2 ? { + ...e2, + ...epochMilliToIso(isoToEpochMilli(e2) + n2 * Gr) + } : e2; +} +function createMarkerSystem(e2, n2, t2) { + const o2 = e2(t2.calendar); + return isZonedEpochSlots(t2) ? [t2, o2, n2(t2.timeZone)] : [{ + ...t2, + ...Dt + }, o2]; +} +function createMarkerToEpochNano(e2) { + return e2 ? extractEpochNano : isoToEpochNano; +} +function createMoveMarker(e2, n2) { + return n2 ? E(moveZonedEpochs, e2, n2) : E(moveDateTime, e2); +} +function createDiffMarkers(e2, n2) { + return n2 ? E(diffZonedEpochsExact, e2, n2) : E(diffDateTimesExact, e2); +} +function isZonedEpochSlots(e2) { + return e2 && e2.epochNanoseconds; +} +function isUniformUnit(e2, n2) { + return e2 <= 6 - (isZonedEpochSlots(n2) ? 1 : 0); +} +function spanDuration(e2, n2, t2, o2, r2, i2) { + const a2 = r2(t2, e2); + return [i2(t2, a2, n2), o2(a2)]; +} +function Wt(e2, n2, t2, o2, r2, i2, a2) { + const s2 = e2(normalizeOptions(a2).relativeTo), c2 = Math.max(getLargestDurationUnit(r2), getLargestDurationUnit(i2)); + if (isUniformUnit(c2, s2)) { + return Vt(checkDurationUnits(((e3, n3, t3, o3) => { + const r3 = addBigNanos(durationFieldsToBigNano(e3), durationFieldsToBigNano(n3), o3 ? -1 : 1); + if (!Number.isFinite(r3[0])) { + throw new RangeError(Cr); + } + return { + ...Fi, + ...nanoToDurationDayTimeFields(r3, t3) + }; + })(r2, i2, c2, o2))); + } + if (!s2) { + throw new RangeError(zr); + } + o2 && (i2 = negateDurationFields(i2)); + const [u2, l2, f2] = createMarkerSystem(n2, t2, s2), d2 = createMoveMarker(l2, f2), m2 = createDiffMarkers(l2, f2), p2 = d2(u2, r2); + return Vt(m2(u2, d2(p2, i2), c2)); +} +function Gt(e2, n2, t2, o2, r2) { + const i2 = getLargestDurationUnit(o2), [a2, s2, c2, u2, l2] = ((e3, n3, t3) => { + e3 = normalizeOptionsOrString(e3, Vi); + let o3 = ca(e3); + const r3 = t3(e3[Qi]); + let i3 = parseRoundingIncInteger(e3); + const a3 = ga(e3, 7); + let s3 = sa(e3); + if (void 0 === o3 && void 0 === s3) { + throw new RangeError(Ar); + } + return null == s3 && (s3 = 0), null == o3 && (o3 = Math.max(s3, n3)), checkLargestSmallestUnit(o3, s3), i3 = refineRoundingInc(i3, s3, 1), [o3, s3, i3, a3, r3]; + })(r2, i2, e2); + if (isUniformUnit(Math.max(i2, a2), l2)) { + return Vt(checkDurationUnits(((e3, n3, t3, o3, r3) => { + const i3 = roundBigNano(durationFieldsToBigNano(e3), t3, o3, r3); + return { + ...Fi, + ...nanoToDurationDayTimeFields(i3, n3) + }; + })(o2, a2, s2, c2, u2))); + } + if (!l2) { + throw new RangeError(zr); + } + const [f2, d2, m2] = createMarkerSystem(n2, t2, l2), p2 = createMarkerToEpochNano(m2), h2 = createMoveMarker(d2, m2), g2 = createDiffMarkers(d2, m2); + let T2 = 0; + o2.weeks && 7 === s2 && (T2 = o2.weeks, o2 = { + ...o2, + weeks: 0 + }); + let [D2, I2] = spanDuration(o2, a2, f2, p2, h2, g2); + const M2 = o2.sign, N2 = computeDurationSign(D2); + if (M2 && N2 && M2 !== N2) { + throw new RangeError(vr); + } + return N2 && (D2 = roundRelativeDuration(D2, I2, a2, s2, c2, u2, f2, p2, h2)), D2.weeks += T2, Vt(D2); +} +function Rt(e2) { + return -1 === e2.sign ? xt(e2) : e2; +} +function xt(e2) { + return Vt(negateDurationFields(e2)); +} +function negateDurationFields(e2) { + const n2 = {}; + for (const t2 of F) { + n2[t2] = -1 * e2[t2] || 0; + } + return n2; +} +function Jt(e2) { + return !e2.sign; +} +function computeDurationSign(e2, n2 = F) { + let t2 = 0; + for (const o2 of n2) { + const n3 = Math.sign(e2[o2]); + if (n3) { + if (t2 && t2 !== n3) { + throw new RangeError(Rr); + } + t2 = n3; + } + } + return t2; +} +function checkDurationUnits(e2) { + for (const n2 of Ei) { + clampEntity(n2, e2[n2], -Pa, Pa, 1); + } + return checkDurationTimeUnit(oe(durationFieldsToBigNano(e2), _r)), e2; +} +function checkDurationTimeUnit(e2) { + if (!Number.isSafeInteger(e2)) { + throw new RangeError(Zr); + } +} +function durationFieldsToBigNano(e2, n2 = 6) { + return givenFieldsToBigNano(e2, n2, F); +} +function nanoToDurationDayTimeFields(e2, n2 = 6) { + const [t2, o2] = e2, r2 = nanoToGivenFields(o2, n2, F); + if (r2[F[n2]] += t2 * (Qr / Xr[n2]), !Number.isFinite(r2[F[n2]])) { + throw new RangeError(Cr); + } + return r2; +} +function nanoToDurationTimeFields(e2, n2 = 5) { + return nanoToGivenFields(e2, n2, F); +} +function durationHasDateParts(e2) { + return Boolean(computeDurationSign(e2, vi)); +} +function getLargestDurationUnit(e2) { + let n2 = 9; + for (; n2 > 0 && !e2[F[n2]]; n2--) { + } + return n2; +} +function createSplitTuple(e2, n2) { + return [e2, n2]; +} +function computePeriod(e2) { + const n2 = Math.floor(e2 / Ia) * Ia; + return [n2, n2 + Ia]; +} +function pe(e2) { + const n2 = parseDateTimeLike(e2 = toStringViaPrimitive(e2)); + if (!n2) { + throw new RangeError(failedParse(e2)); + } + let t2; + if (n2.O) { + t2 = 0; + } else { + if (!n2.offset) { + throw new RangeError(failedParse(e2)); + } + t2 = parseOffsetNano(n2.offset); + } + return n2.timeZone && parseOffsetNanoMaybe(n2.timeZone, 1), _(isoToEpochNanoWithOffset(checkIsoDateTimeFields(n2), t2)); +} +function Xt(e2) { + const n2 = parseDateTimeLike(m(e2)); + if (!n2) { + throw new RangeError(failedParse(e2)); + } + if (n2.timeZone) { + return finalizeZonedDateTime(n2, n2.offset ? parseOffsetNano(n2.offset) : void 0); + } + if (n2.O) { + throw new RangeError(failedParse(e2)); + } + return finalizeDate(n2); +} +function Mn(e2, n2) { + const t2 = parseDateTimeLike(m(e2)); + if (!t2 || !t2.timeZone) { + throw new RangeError(failedParse(e2)); + } + const { offset: o2 } = t2, r2 = o2 ? parseOffsetNano(o2) : void 0, [, i2, a2] = wn(n2); + return finalizeZonedDateTime(t2, r2, i2, a2); +} +function parseOffsetNano(e2) { + const n2 = parseOffsetNanoMaybe(e2); + if (void 0 === n2) { + throw new RangeError(failedParse(e2)); + } + return n2; +} +function Ct(e2) { + const n2 = parseDateTimeLike(m(e2)); + if (!n2 || n2.O) { + throw new RangeError(failedParse(e2)); + } + return ee(finalizeDateTime(n2)); +} +function At(e2) { + const n2 = parseDateTimeLike(m(e2)); + if (!n2 || n2.O) { + throw new RangeError(failedParse(e2)); + } + return v(n2.I ? finalizeDateTime(n2) : finalizeDate(n2)); +} +function ot(e2, n2) { + const t2 = parseYearMonthOnly(m(n2)); + if (t2) { + return requireIsoCalendar(t2), createPlainYearMonthSlots(checkIsoYearMonthInBounds(checkIsoDateFields(t2))); + } + const o2 = At(n2); + return createPlainYearMonthSlots(moveToDayOfMonthUnsafe(e2(o2.calendar), o2)); +} +function requireIsoCalendar(e2) { + if (e2.calendar !== X) { + throw new RangeError(invalidSubstring(e2.calendar)); + } +} +function Q(e2, n2) { + const t2 = parseMonthDayOnly(m(n2)); + if (t2) { + return requireIsoCalendar(t2), createPlainMonthDaySlots(checkIsoDateFields(t2)); + } + const o2 = At(n2), { calendar: r2 } = o2, i2 = e2(r2), [a2, s2, c2] = i2.v(o2), [u2, l2] = i2.$(a2, s2), [f2, d2] = i2.k(u2, l2, c2); + return createPlainMonthDaySlots(checkIsoDateInBounds(i2.L(f2, d2, c2)), r2); +} +function ze(e2) { + let n2, t2 = ((e3) => { + const n3 = Za.exec(e3); + return n3 ? (organizeAnnotationParts(n3[10]), organizeTimeParts(n3)) : void 0; + })(m(e2)); + if (!t2) { + if (t2 = parseDateTimeLike(e2), !t2) { + throw new RangeError(failedParse(e2)); + } + if (!t2.I) { + throw new RangeError(failedParse(e2)); + } + if (t2.O) { + throw new RangeError(invalidSubstring("Z")); + } + requireIsoCalendar(t2); + } + if ((n2 = parseYearMonthOnly(e2)) && isIsoDateFieldsValid(n2)) { + throw new RangeError(failedParse(e2)); + } + if ((n2 = parseMonthDayOnly(e2)) && isIsoDateFieldsValid(n2)) { + throw new RangeError(failedParse(e2)); + } + return Ge(constrainIsoTimeFields(t2, 1)); +} +function Kt(e2) { + const n2 = ((e3) => { + const n3 = qa.exec(e3); + return n3 ? ((e4) => { + function parseUnit(e5, r3, i2) { + let a2 = 0, s2 = 0; + if (i2 && ([a2, o2] = divModFloor(o2, Xr[i2])), void 0 !== e5) { + if (t2) { + throw new RangeError(invalidSubstring(e5)); + } + s2 = ((e6) => { + const n5 = parseInt(e6); + if (!Number.isFinite(n5)) { + throw new RangeError(invalidSubstring(e6)); + } + return n5; + })(e5), n4 = 1, r3 && (o2 = parseSubsecNano(r3) * (Xr[i2] / _r), t2 = 1); + } + return a2 + s2; + } + let n4 = 0, t2 = 0, o2 = 0, r2 = { + ...zipProps(F, [parseUnit(e4[2]), parseUnit(e4[3]), parseUnit(e4[4]), parseUnit(e4[5]), parseUnit(e4[6], e4[7], 5), parseUnit(e4[8], e4[9], 4), parseUnit(e4[10], e4[11], 3)]), + ...nanoToGivenFields(o2, 2, F) + }; + if (!n4) { + throw new RangeError(noValidFields(F)); + } + return parseSign(e4[1]) < 0 && (r2 = negateDurationFields(r2)), r2; + })(n3) : void 0; + })(m(e2)); + if (!n2) { + throw new RangeError(failedParse(e2)); + } + return Vt(checkDurationUnits(n2)); +} +function sn(e2) { + const n2 = parseDateTimeLike(e2) || parseYearMonthOnly(e2) || parseMonthDayOnly(e2); + return n2 ? n2.calendar : e2; +} +function Ne(e2) { + const n2 = parseDateTimeLike(e2); + return n2 && (n2.timeZone || n2.O && Da || n2.offset) || e2; +} +function finalizeZonedDateTime(e2, n2, t2 = 0, o2 = 0) { + const r2 = ye(e2.timeZone), i2 = ie(r2); + return Yn(getMatchingInstantFor(i2, checkIsoDateTimeFields(e2), n2, t2, o2, !i2.R, e2.O), r2, an(e2.calendar)); +} +function finalizeDateTime(e2) { + return resolveSlotsCalendar(checkIsoDateTimeInBounds(checkIsoDateTimeFields(e2))); +} +function finalizeDate(e2) { + return resolveSlotsCalendar(checkIsoDateInBounds(checkIsoDateFields(e2))); +} +function resolveSlotsCalendar(e2) { + return { + ...e2, + calendar: an(e2.calendar) + }; +} +function parseDateTimeLike(e2) { + const n2 = Ca.exec(e2); + return n2 ? ((e3) => { + const n3 = e3[10], t2 = "Z" === (n3 || "").toUpperCase(); + return { + isoYear: organizeIsoYearParts(e3), + isoMonth: parseInt(e3[4]), + isoDay: parseInt(e3[5]), + ...organizeTimeParts(e3.slice(5)), + ...organizeAnnotationParts(e3[16]), + I: Boolean(e3[6]), + O: t2, + offset: t2 ? void 0 : n3 + }; + })(n2) : void 0; +} +function parseYearMonthOnly(e2) { + const n2 = ka.exec(e2); + return n2 ? ((e3) => ({ + isoYear: organizeIsoYearParts(e3), + isoMonth: parseInt(e3[4]), + isoDay: 1, + ...organizeAnnotationParts(e3[5]) + }))(n2) : void 0; +} +function parseMonthDayOnly(e2) { + const n2 = Ya.exec(e2); + return n2 ? ((e3) => ({ + isoYear: xi, + isoMonth: parseInt(e3[1]), + isoDay: parseInt(e3[2]), + ...organizeAnnotationParts(e3[3]) + }))(n2) : void 0; +} +function parseOffsetNanoMaybe(e2, n2) { + const t2 = Ra.exec(e2); + return t2 ? ((e3, n3) => { + const t3 = e3[4] || e3[5]; + if (n3 && t3) { + throw new RangeError(invalidSubstring(t3)); + } + return ae((parseInt0(e3[2]) * Kr + parseInt0(e3[3]) * Jr + parseInt0(e3[4]) * _r + parseSubsecNano(e3[5] || "")) * parseSign(e3[1])); + })(t2, n2) : void 0; +} +function organizeIsoYearParts(e2) { + const n2 = parseSign(e2[1]), t2 = parseInt(e2[2] || e2[3]); + if (n2 < 0 && !t2) { + throw new RangeError(invalidSubstring(-0)); + } + return n2 * t2; +} +function organizeTimeParts(e2) { + const n2 = parseInt0(e2[3]); + return { + ...nanoToIsoTimeAndDay(parseSubsecNano(e2[4] || ""))[0], + isoHour: parseInt0(e2[1]), + isoMinute: parseInt0(e2[2]), + isoSecond: 60 === n2 ? 59 : n2 + }; +} +function organizeAnnotationParts(e2) { + let n2, t2; + const o2 = []; + if (e2.replace(za, (e3, r2, i2) => { + const a2 = Boolean(r2), [s2, c2] = i2.split("=").reverse(); + if (c2) { + if ("u-ca" === c2) { + o2.push(s2), n2 || (n2 = a2); + } else if (a2 || /[A-Z]/.test(c2)) { + throw new RangeError(invalidSubstring(e3)); + } + } else { + if (t2) { + throw new RangeError(invalidSubstring(e3)); + } + t2 = s2; + } + return ""; + }), o2.length > 1 && n2) { + throw new RangeError(invalidSubstring(e2)); + } + return { + timeZone: t2, + calendar: o2[0] || X + }; +} +function parseSubsecNano(e2) { + return parseInt(e2.padEnd(9, "0")); +} +function createRegExp(e2) { + return new RegExp(`^${e2}$`, "i"); +} +function parseSign(e2) { + return e2 && "+" !== e2 ? -1 : 1; +} +function parseInt0(e2) { + return void 0 === e2 ? 0 : parseInt(e2); +} +function Me(e2) { + return ye(m(e2)); +} +function ye(e2) { + const n2 = getTimeZoneEssence(e2); + return "number" == typeof n2 ? Fe(n2) : n2 ? ((e3) => { + if (Ua.test(e3)) { + throw new RangeError(br); + } + return e3.toLowerCase().split("/").map((e4, n3) => (e4.length <= 3 || /\d/.test(e4)) && !/etc|yap/.test(e4) ? e4.toUpperCase() : e4.replace(/baja|dumont|[a-z]+/g, (e5, t2) => e5.length <= 2 && !n3 || "in" === e5 || "chat" === e5 ? e5.toUpperCase() : e5.length > 2 || !t2 ? capitalize(e5).replace(/island|noronha|murdo|rivadavia|urville/, capitalize) : e5)).join("/"); + })(e2) : Da; +} +function getTimeZoneAtomic(e2) { + const n2 = getTimeZoneEssence(e2); + return "number" == typeof n2 ? n2 : n2 ? n2.resolvedOptions().timeZone : Da; +} +function getTimeZoneEssence(e2) { + const n2 = parseOffsetNanoMaybe(e2 = e2.toUpperCase(), 1); + return void 0 !== n2 ? n2 : e2 !== Da ? Aa(e2) : void 0; +} +function Ze(e2, n2) { + return te(e2.epochNanoseconds, n2.epochNanoseconds); +} +function yn(e2, n2) { + return te(e2.epochNanoseconds, n2.epochNanoseconds); +} +function $t(e2, n2, t2, o2, r2, i2) { + const a2 = e2(normalizeOptions(i2).relativeTo), s2 = Math.max(getLargestDurationUnit(o2), getLargestDurationUnit(r2)); + if (allPropsEqual(F, o2, r2)) { + return 0; + } + if (isUniformUnit(s2, a2)) { + return te(durationFieldsToBigNano(o2), durationFieldsToBigNano(r2)); + } + if (!a2) { + throw new RangeError(zr); + } + const [c2, u2, l2] = createMarkerSystem(n2, t2, a2), f2 = createMarkerToEpochNano(l2), d2 = createMoveMarker(u2, l2); + return te(f2(d2(c2, o2)), f2(d2(c2, r2))); +} +function gt(e2, n2) { + return rt(e2, n2) || He(e2, n2); +} +function rt(e2, n2) { + return compareNumbers(isoToEpochMilli(e2), isoToEpochMilli(n2)); +} +function He(e2, n2) { + return compareNumbers(isoTimeFieldsToNano(e2), isoTimeFieldsToNano(n2)); +} +function ue(e2, n2) { + return !Ze(e2, n2); +} +function gn(e2, n2) { + return !yn(e2, n2) && !!je(e2.timeZone, n2.timeZone) && isIdLikeEqual(e2.calendar, n2.calendar); +} +function ft(e2, n2) { + return !gt(e2, n2) && isIdLikeEqual(e2.calendar, n2.calendar); +} +function It(e2, n2) { + return !rt(e2, n2) && isIdLikeEqual(e2.calendar, n2.calendar); +} +function $e(e2, n2) { + return !rt(e2, n2) && isIdLikeEqual(e2.calendar, n2.calendar); +} +function x(e2, n2) { + return !rt(e2, n2) && isIdLikeEqual(e2.calendar, n2.calendar); +} +function Ve(e2, n2) { + return !He(e2, n2); +} +function je(e2, n2) { + if (e2 === n2) { + return 1; + } + const t2 = I(e2), o2 = I(n2); + if (t2 === o2) { + return 1; + } + try { + return getTimeZoneAtomic(t2) === getTimeZoneAtomic(o2); + } catch (e3) { + } +} +function le(e2, n2, t2, o2) { + const r2 = refineDiffOptions(e2, U(o2), 3, 5), i2 = diffEpochNanos(n2.epochNanoseconds, t2.epochNanoseconds, ...r2); + return Vt(e2 ? negateDurationFields(i2) : i2); +} +function Dn(e2, n2, t2, o2, r2, i2) { + const a2 = getCommonCalendarSlot(o2.calendar, r2.calendar), s2 = U(i2), [c2, u2, l2, f2] = refineDiffOptions(t2, s2, 5), d2 = o2.epochNanoseconds, m2 = r2.epochNanoseconds, p2 = te(m2, d2); + let h2; + if (p2) { + if (c2 < 6) { + h2 = diffEpochNanos(d2, m2, c2, u2, l2, f2); + } else { + const t3 = n2(((e3, n3) => { + if (!je(e3, n3)) { + throw new RangeError(Fr); + } + return e3; + })(o2.timeZone, r2.timeZone)), i3 = e2(a2); + h2 = diffZonedEpochsBig(i3, t3, o2, r2, p2, c2, s2), h2 = roundRelativeDuration(h2, m2, c2, u2, l2, f2, o2, extractEpochNano, E(moveZonedEpochs, i3, t3)); + } + } else { + h2 = Fi; + } + return Vt(t2 ? negateDurationFields(h2) : h2); +} +function ut(e2, n2, t2, o2, r2) { + const i2 = getCommonCalendarSlot(t2.calendar, o2.calendar), a2 = U(r2), [s2, c2, u2, l2] = refineDiffOptions(n2, a2, 6), f2 = isoToEpochNano(t2), d2 = isoToEpochNano(o2), m2 = te(d2, f2); + let p2; + if (m2) { + if (s2 <= 6) { + p2 = diffEpochNanos(f2, d2, s2, c2, u2, l2); + } else { + const n3 = e2(i2); + p2 = diffDateTimesBig(n3, t2, o2, m2, s2, a2), p2 = roundRelativeDuration(p2, d2, s2, c2, u2, l2, t2, isoToEpochNano, E(moveDateTime, n3)); + } + } else { + p2 = Fi; + } + return Vt(n2 ? negateDurationFields(p2) : p2); +} +function Ft(e2, n2, t2, o2, r2) { + const i2 = getCommonCalendarSlot(t2.calendar, o2.calendar), a2 = U(r2); + return diffDateLike(n2, () => e2(i2), t2, o2, ...refineDiffOptions(n2, a2, 6, 9, 6), a2); +} +function Xe(e2, n2, t2, o2, r2) { + const i2 = getCommonCalendarSlot(t2.calendar, o2.calendar), a2 = U(r2), s2 = refineDiffOptions(n2, a2, 9, 9, 8), c2 = e2(i2); + return diffDateLike(n2, () => c2, moveToDayOfMonthUnsafe(c2, t2), moveToDayOfMonthUnsafe(c2, o2), ...s2, a2); +} +function diffDateLike(e2, n2, t2, o2, r2, i2, a2, s2, c2) { + const u2 = isoToEpochNano(t2), l2 = isoToEpochNano(o2); + let f2; + if (te(l2, u2)) { + if (6 === r2) { + f2 = diffEpochNanos(u2, l2, r2, i2, a2, s2); + } else { + const e3 = n2(); + f2 = e3.dateUntil(t2, o2, r2, c2), 6 === i2 && 1 === a2 || (f2 = roundRelativeDuration(f2, l2, r2, i2, a2, s2, t2, isoToEpochNano, E(moveDate, e3))); + } + } else { + f2 = Fi; + } + return Vt(e2 ? negateDurationFields(f2) : f2); +} +function Ae(e2, n2, t2, o2) { + const r2 = U(o2), [i2, a2, s2, c2] = refineDiffOptions(e2, r2, 5, 5), u2 = roundByInc(diffTimes(n2, t2), computeNanoInc(a2, s2), c2), l2 = { + ...Fi, + ...nanoToDurationTimeFields(u2, i2) + }; + return Vt(e2 ? negateDurationFields(l2) : l2); +} +function diffZonedEpochsExact(e2, n2, t2, o2, r2, i2) { + const a2 = te(o2.epochNanoseconds, t2.epochNanoseconds); + return a2 ? r2 < 6 ? diffEpochNanosExact(t2.epochNanoseconds, o2.epochNanoseconds, r2) : diffZonedEpochsBig(e2, n2, t2, o2, a2, r2, i2) : Fi; +} +function diffDateTimesExact(e2, n2, t2, o2, r2) { + const i2 = isoToEpochNano(n2), a2 = isoToEpochNano(t2), s2 = te(a2, i2); + return s2 ? o2 <= 6 ? diffEpochNanosExact(i2, a2, o2) : diffDateTimesBig(e2, n2, t2, s2, o2, r2) : Fi; +} +function diffZonedEpochsBig(e2, n2, t2, o2, r2, i2, a2) { + const [s2, c2, u2] = ((e3, n3, t3, o3) => { + function updateMid() { + return l3 = { + ...moveByDays(a3, c3++ * -o3), + ...i3 + }, f3 = we(e3, l3), te(s3, f3) === -o3; + } + const r3 = fn(n3, e3), i3 = Vn(j, r3), a3 = fn(t3, e3), s3 = t3.epochNanoseconds; + let c3 = 0; + const u3 = diffTimes(r3, a3); + let l3, f3; + if (Math.sign(u3) === -o3 && c3++, updateMid() && (-1 === o3 || updateMid())) { + throw new RangeError(vr); + } + const d2 = oe(re(f3, s3)); + return [r3, l3, d2]; + })(n2, t2, o2, r2); + var l2, f2; + return { + ...6 === i2 ? (l2 = s2, f2 = c2, { + ...Fi, + days: diffDays(l2, f2) + }) : e2.dateUntil(s2, c2, i2, a2), + ...nanoToDurationTimeFields(u2) + }; +} +function diffDateTimesBig(e2, n2, t2, o2, r2, i2) { + let a2 = n2, s2 = diffTimes(n2, t2); + return Math.sign(s2) === -o2 && (a2 = moveByDays(n2, o2), s2 += Qr * o2), { + ...e2.dateUntil(a2, t2, r2, i2), + ...nanoToDurationTimeFields(s2) + }; +} +function diffEpochNanos(e2, n2, t2, o2, r2, i2) { + return { + ...Fi, + ...nanoToDurationDayTimeFields(roundBigNano(re(e2, n2), o2, r2, i2), t2) + }; +} +function diffEpochNanosExact(e2, n2, t2) { + return { + ...Fi, + ...nanoToDurationDayTimeFields(re(e2, n2), t2) + }; +} +function diffDays(e2, n2) { + return diffEpochMilliByDay(isoToEpochMilli(e2), isoToEpochMilli(n2)); +} +function diffEpochMilliByDay(e2, n2) { + return Math.trunc((n2 - e2) / Gr); +} +function diffTimes(e2, n2) { + return isoTimeFieldsToNano(n2) - isoTimeFieldsToNano(e2); +} +function getCommonCalendarSlot(e2, n2) { + if (!isIdLikeEqual(e2, n2)) { + throw new RangeError(Er); + } + return e2; +} +function createIntlCalendar(e2) { + function epochMilliToIntlFields(e3) { + return ((e4, n3) => ({ + ...parseIntlYear(e4, n3), + o: e4.month, + day: parseInt(e4.day) + }))(hashIntlFormatParts(n2, e3), t2); + } + const n2 = Wa(e2), t2 = computeCalendarIdBase(e2); + return { + id: e2, + h: createIntlFieldCache(epochMilliToIntlFields), + l: createIntlYearDataCache(epochMilliToIntlFields) + }; +} +function createIntlFieldCache(e2) { + return Jn((n2) => { + const t2 = isoToEpochMilli(n2); + return e2(t2); + }, WeakMap); +} +function createIntlYearDataCache(e2) { + const n2 = e2(0).year - ji; + return Jn((t2) => { + let o2, r2 = isoArgsToEpochMilli(t2 - n2); + const i2 = [], a2 = []; + do { + r2 += 400 * Gr; + } while ((o2 = e2(r2)).year <= t2); + do { + r2 += (1 - o2.day) * Gr, o2.year === t2 && (i2.push(r2), a2.push(o2.o)), r2 -= Gr; + } while ((o2 = e2(r2)).year >= t2); + return { + i: i2.reverse(), + u: Wr(a2.reverse()) + }; + }); +} +function parseIntlYear(e2, n2) { + let t2, o2, r2 = parseIntlPartsYear(e2); + if (e2.era) { + const a2 = Di[n2]; + void 0 !== a2 && (i2 = (i2 = e2.era).normalize("NFD").toLowerCase().replace(/[^a-z0-9]/g, ""), t2 = Ii[i2] || i2, o2 = r2, r2 = eraYearToYear(o2, a2[t2] || 0)); + } + var i2; + return { + era: t2, + eraYear: o2, + year: r2 + }; +} +function parseIntlPartsYear(e2) { + return parseInt(e2.relatedYear || e2.year); +} +function computeIntlDateParts(e2) { + const { year: n2, o: t2, day: o2 } = this.h(e2), { u: r2 } = this.l(n2); + return [n2, r2[t2] + 1, o2]; +} +function computeIntlEpochMilli(e2, n2 = 1, t2 = 1) { + return this.l(e2).i[n2 - 1] + (t2 - 1) * Gr; +} +function computeIntlLeapMonth(e2) { + const n2 = queryMonthStrings(this, e2), t2 = queryMonthStrings(this, e2 - 1), o2 = n2.length; + if (o2 > t2.length) { + const e3 = getCalendarLeapMonthMeta(this); + if (e3 < 0) { + return -e3; + } + for (let e4 = 0; e4 < o2; e4++) { + if (n2[e4] !== t2[e4]) { + return e4 + 1; + } + } + } +} +function computeIntlDaysInYear(e2) { + return diffEpochMilliByDay(computeIntlEpochMilli.call(this, e2), computeIntlEpochMilli.call(this, e2 + 1)); +} +function computeIntlDaysInMonth(e2, n2) { + const { i: t2 } = this.l(e2); + let o2 = n2 + 1, r2 = t2; + return o2 > t2.length && (o2 = 1, r2 = this.l(e2 + 1).i), diffEpochMilliByDay(t2[n2 - 1], r2[o2 - 1]); +} +function computeIntlMonthsInYear(e2) { + return this.l(e2).i.length; +} +function queryMonthStrings(e2, n2) { + return Object.keys(e2.l(n2).u); +} +function rn(e2) { + return an(m(e2)); +} +function an(e2) { + if ((e2 = e2.toLowerCase()) !== X && e2 !== gi && computeCalendarIdBase(e2) !== computeCalendarIdBase(Wa(e2).resolvedOptions().calendar)) { + throw new RangeError(invalidCalendar(e2)); + } + return e2; +} +function computeCalendarIdBase(e2) { + return "islamicc" === e2 && (e2 = "islamic"), e2.split("-")[0]; +} +function computeNativeWeekOfYear(e2) { + return this.m(e2)[0]; +} +function computeNativeYearOfWeek(e2) { + return this.m(e2)[1]; +} +function computeNativeDayOfYear(e2) { + const [n2] = this.v(e2); + return diffEpochMilliByDay(this.p(n2), isoToEpochMilli(e2)) + 1; +} +function parseMonthCode(e2) { + const n2 = ja.exec(e2); + if (!n2) { + throw new RangeError(invalidMonthCode(e2)); + } + return [parseInt(n2[1]), Boolean(n2[2])]; +} +function monthCodeNumberToMonth(e2, n2, t2) { + return e2 + (n2 || t2 && e2 >= t2 ? 1 : 0); +} +function monthToMonthCodeNumber(e2, n2) { + return e2 - (n2 && e2 >= n2 ? 1 : 0); +} +function eraYearToYear(e2, n2) { + return (n2 + e2) * (Math.sign(n2) || 1) || 0; +} +function getCalendarEraOrigins(e2) { + return Di[getCalendarIdBase(e2)]; +} +function getCalendarLeapMonthMeta(e2) { + return Mi[getCalendarIdBase(e2)]; +} +function getCalendarIdBase(e2) { + return computeCalendarIdBase(e2.id || X); +} +function Qt(e2, n2, t2, o2) { + const r2 = refineCalendarFields(t2, o2, en, [], ri); + if (void 0 !== r2.timeZone) { + const o3 = t2.dateFromFields(r2), i2 = refineTimeBag(r2), a2 = e2(r2.timeZone); + return { + epochNanoseconds: getMatchingInstantFor(n2(a2), { + ...o3, + ...i2 + }, void 0 !== r2.offset ? parseOffsetNano(r2.offset) : void 0), + timeZone: a2 + }; + } + return { + ...t2.dateFromFields(r2), + ...Dt + }; +} +function jn(e2, n2, t2, o2, r2, i2) { + const a2 = refineCalendarFields(t2, r2, en, ti, ri), s2 = e2(a2.timeZone), [c2, u2, l2] = wn(i2), f2 = t2.dateFromFields(a2, overrideOverflowOptions(i2, c2)), d2 = refineTimeBag(a2, c2); + return Yn(getMatchingInstantFor(n2(s2), { + ...f2, + ...d2 + }, void 0 !== a2.offset ? parseOffsetNano(a2.offset) : void 0, u2, l2), s2, o2); +} +function Pt(e2, n2, t2) { + const o2 = refineCalendarFields(e2, n2, en, [], w), r2 = H(t2); + return ee(checkIsoDateTimeInBounds({ + ...e2.dateFromFields(o2, overrideOverflowOptions(t2, r2)), + ...refineTimeBag(o2, r2) + })); +} +function Yt(e2, n2, t2, o2 = []) { + const r2 = refineCalendarFields(e2, n2, en, o2); + return e2.dateFromFields(r2, t2); +} +function nt(e2, n2, t2, o2) { + const r2 = refineCalendarFields(e2, n2, fi, o2); + return e2.yearMonthFromFields(r2, t2); +} +function K(e2, n2, t2, o2, r2 = []) { + const i2 = refineCalendarFields(e2, t2, en, r2); + return n2 && void 0 !== i2.month && void 0 === i2.monthCode && void 0 === i2.year && (i2.year = xi), e2.monthDayFromFields(i2, o2); +} +function Ue(e2, n2) { + const t2 = H(n2); + return Ge(refineTimeBag(refineFields(e2, ei, [], 1), t2)); +} +function Ht(e2) { + const n2 = refineFields(e2, yi); + return Vt(checkDurationUnits({ + ...Fi, + ...n2 + })); +} +function refineCalendarFields(e2, n2, t2, o2 = [], r2 = []) { + return refineFields(n2, [...e2.fields(t2), ...r2].sort(), o2); +} +function refineFields(e2, n2, t2, o2 = !t2) { + const r2 = {}; + let i2, a2 = 0; + for (const o3 of n2) { + if (o3 === i2) { + throw new RangeError(duplicateFields(o3)); + } + if ("constructor" === o3 || "__proto__" === o3) { + throw new RangeError(tn(o3)); + } + let n3 = e2[o3]; + if (void 0 !== n3) { + a2 = 1, Ha[o3] && (n3 = Ha[o3](n3, o3)), r2[o3] = n3; + } else if (t2) { + if (t2.includes(o3)) { + throw new TypeError(missingField(o3)); + } + r2[o3] = hi[o3]; + } + i2 = o3; + } + if (o2 && !a2) { + throw new TypeError(noValidFields(n2)); + } + return r2; +} +function refineTimeBag(e2, n2) { + return constrainIsoTimeFields(Va({ + ...hi, + ...e2 + }), n2); +} +function Sn(e2, n2, t2, o2, r2, i2) { + const a2 = U(i2), { calendar: s2, timeZone: c2 } = t2; + return Yn(((e3, n3, t3, o3, r3) => { + const i3 = mergeCalendarFields(e3, t3, o3, en, oi, ni), [a3, s3, c3] = wn(r3, 2); + return getMatchingInstantFor(n3, { + ...e3.dateFromFields(i3, overrideOverflowOptions(r3, a3)), + ...refineTimeBag(i3, a3) + }, parseOffsetNano(i3.offset), s3, c3); + })(e2(s2), n2(c2), o2, r2, a2), c2, s2); +} +function at(e2, n2, t2, o2, r2) { + const i2 = U(r2); + return ee(((e3, n3, t3, o3) => { + const r3 = mergeCalendarFields(e3, n3, t3, en, w), i3 = H(o3); + return checkIsoDateTimeInBounds({ + ...e3.dateFromFields(r3, overrideOverflowOptions(o3, i3)), + ...refineTimeBag(r3, i3) + }); + })(e2(n2.calendar), t2, o2, i2)); +} +function Zt(e2, n2, t2, o2, r2) { + const i2 = U(r2); + return ((e3, n3, t3, o3) => { + const r3 = mergeCalendarFields(e3, n3, t3, en); + return e3.dateFromFields(r3, o3); + })(e2(n2.calendar), t2, o2, i2); +} +function Ke(e2, n2, t2, o2, r2) { + const i2 = U(r2); + return createPlainYearMonthSlots(((e3, n3, t3, o3) => { + const r3 = mergeCalendarFields(e3, n3, t3, fi); + return e3.yearMonthFromFields(r3, o3); + })(e2(n2.calendar), t2, o2, i2)); +} +function k(e2, n2, t2, o2, r2) { + const i2 = U(r2); + return ((e3, n3, t3, o3) => { + const r3 = mergeCalendarFields(e3, n3, t3, en); + return e3.monthDayFromFields(r3, o3); + })(e2(n2.calendar), t2, o2, i2); +} +function Be(e2, n2, t2) { + return Ge(((e3, n3, t3) => { + const o2 = H(t3); + return refineTimeBag({ + ...Vn(ei, e3), + ...refineFields(n3, ei) + }, o2); + })(e2, n2, t2)); +} +function kt(e2, n2) { + return Vt((t2 = e2, o2 = n2, checkDurationUnits({ + ...t2, + ...refineFields(o2, yi) + }))); + var t2, o2; +} +function mergeCalendarFields(e2, n2, t2, o2, r2 = [], i2 = []) { + const a2 = [...e2.fields(o2), ...r2].sort(); + let s2 = refineFields(n2, a2, i2); + const c2 = refineFields(t2, a2); + return s2 = e2.mergeFields(s2, c2), refineFields(s2, a2, []); +} +function convertToPlainMonthDay(e2, n2) { + const t2 = refineCalendarFields(e2, n2, pi); + return e2.monthDayFromFields(t2); +} +function convertToPlainYearMonth(e2, n2, t2) { + const o2 = refineCalendarFields(e2, n2, di); + return e2.yearMonthFromFields(o2, t2); +} +function convertToIso(e2, n2, t2, o2, r2) { + n2 = Vn(t2 = e2.fields(t2), n2), o2 = refineFields(o2, r2 = e2.fields(r2), []); + let i2 = e2.mergeFields(n2, o2); + return i2 = refineFields(i2, [...t2, ...r2].sort(), []), e2.dateFromFields(i2); +} +function refineYear(e2, n2) { + let { era: t2, eraYear: o2, year: r2 } = n2; + const i2 = getCalendarEraOrigins(e2); + if (void 0 !== t2 || void 0 !== o2) { + if (void 0 === t2 || void 0 === o2) { + throw new TypeError(Dr); + } + if (!i2) { + throw new RangeError(gr); + } + const e3 = i2[t2]; + if (void 0 === e3) { + throw new RangeError(invalidEra(t2)); + } + const n3 = eraYearToYear(o2, e3); + if (void 0 !== r2 && r2 !== n3) { + throw new RangeError(Ir); + } + r2 = n3; + } else if (void 0 === r2) { + throw new TypeError(missingYear(i2)); + } + return r2; +} +function refineMonth(e2, n2, t2, o2) { + let { month: r2, monthCode: i2 } = n2; + if (void 0 !== i2) { + const n3 = ((e3, n4, t3, o3) => { + const r3 = e3.P(t3), [i3, a2] = parseMonthCode(n4); + let s2 = monthCodeNumberToMonth(i3, a2, r3); + if (a2) { + const n5 = getCalendarLeapMonthMeta(e3); + if (void 0 === n5) { + throw new RangeError(Pr); + } + if (n5 > 0) { + if (s2 > n5) { + throw new RangeError(Pr); + } + if (void 0 === r3) { + if (1 === o3) { + throw new RangeError(Pr); + } + s2--; + } + } else { + if (s2 !== -n5) { + throw new RangeError(Pr); + } + if (void 0 === r3 && 1 === o3) { + throw new RangeError(Pr); + } + } + } + return s2; + })(e2, i2, t2, o2); + if (void 0 !== r2 && r2 !== n3) { + throw new RangeError(Mr); + } + r2 = n3, o2 = 1; + } else if (void 0 === r2) { + throw new TypeError(Nr); + } + return clampEntity("month", r2, 1, e2.j(t2), o2); +} +function refineDay(e2, n2, t2, o2, r2) { + return clampProp(n2, "day", 1, e2.N(o2, t2), r2); +} +function spliceFields(e2, n2, t2, o2) { + let r2 = 0; + const i2 = []; + for (const e3 of t2) { + void 0 !== n2[e3] ? r2 = 1 : i2.push(e3); + } + if (Object.assign(e2, n2), r2) { + for (const n3 of o2 || i2) { + delete e2[n3]; + } + } +} +function Se(e2) { + return _(checkEpochNanoInBounds(bigIntToBigNano(toBigInt(e2)))); +} +function vn(e2, n2, t2, o2, r2 = X) { + return Yn(checkEpochNanoInBounds(bigIntToBigNano(toBigInt(t2))), n2(o2), e2(r2)); +} +function pt(e2, n2, t2, o2, r2 = 0, i2 = 0, a2 = 0, s2 = 0, c2 = 0, u2 = 0, l2 = X) { + return ee(checkIsoDateTimeInBounds(checkIsoDateTimeFields(T(toInteger, zipProps(Bi, [n2, t2, o2, r2, i2, a2, s2, c2, u2])))), e2(l2)); +} +function Nt(e2, n2, t2, o2, r2 = X) { + return v(checkIsoDateInBounds(checkIsoDateFields(T(toInteger, { + isoYear: n2, + isoMonth: t2, + isoDay: o2 + }))), e2(r2)); +} +function tt(e2, n2, t2, o2 = X, r2 = 1) { + const i2 = toInteger(n2), a2 = toInteger(t2), s2 = e2(o2); + return createPlainYearMonthSlots(checkIsoYearMonthInBounds(checkIsoDateFields({ + isoYear: i2, + isoMonth: a2, + isoDay: toInteger(r2) + })), s2); +} +function G(e2, n2, t2, o2 = X, r2 = xi) { + const i2 = toInteger(n2), a2 = toInteger(t2), s2 = e2(o2); + return createPlainMonthDaySlots(checkIsoDateInBounds(checkIsoDateFields({ + isoYear: toInteger(r2), + isoMonth: i2, + isoDay: a2 + })), s2); +} +function ke(e2 = 0, n2 = 0, t2 = 0, o2 = 0, r2 = 0, i2 = 0) { + return Ge(constrainIsoTimeFields(T(toInteger, zipProps(j, [e2, n2, t2, o2, r2, i2])), 1)); +} +function Lt(e2 = 0, n2 = 0, t2 = 0, o2 = 0, r2 = 0, i2 = 0, a2 = 0, s2 = 0, c2 = 0, u2 = 0) { + return Vt(checkDurationUnits(T(toStrictInteger, zipProps(F, [e2, n2, t2, o2, r2, i2, a2, s2, c2, u2])))); +} +function fe(e2, n2, t2 = X) { + return Yn(e2.epochNanoseconds, n2, t2); +} +function Zn(e2) { + return _(e2.epochNanoseconds); +} +function ht(e2, n2) { + return ee(fn(n2, e2)); +} +function Bt(e2, n2) { + return v(fn(n2, e2)); +} +function bn(e2, n2, t2) { + return convertToPlainYearMonth(e2(n2.calendar), t2); +} +function Fn(e2, n2, t2) { + return convertToPlainMonthDay(e2(n2.calendar), t2); +} +function Re(e2, n2) { + return Ge(fn(n2, e2)); +} +function mt(e2, n2, t2, o2) { + const r2 = ((e3, n3, t3, o3) => { + const r3 = ve(o3); + return we(e3(n3), t3, r3); + })(e2, t2, n2, o2); + return Yn(checkEpochNanoInBounds(r2), t2, n2.calendar); +} +function St(e2, n2, t2) { + const o2 = e2(n2.calendar); + return createPlainYearMonthSlots({ + ...n2, + ...convertToPlainYearMonth(o2, t2) + }); +} +function Ot(e2, n2, t2) { + return convertToPlainMonthDay(e2(n2.calendar), t2); +} +function vt(e2, n2, t2, o2, r2) { + const i2 = e2(r2.timeZone), a2 = r2.plainTime, s2 = void 0 !== a2 ? n2(a2) : Dt; + return Yn(we(t2(i2), { + ...o2, + ...s2 + }), i2, o2.calendar); +} +function wt(e2, n2 = Dt) { + return ee(checkIsoDateTimeInBounds({ + ...e2, + ...n2 + })); +} +function jt(e2, n2, t2) { + return convertToPlainYearMonth(e2(n2.calendar), t2); +} +function Mt(e2, n2, t2) { + return convertToPlainMonthDay(e2(n2.calendar), t2); +} +function _e(e2, n2, t2, o2) { + return ((e3, n3, t3) => convertToIso(e3, n3, di, de(t3), li))(e2(n2.calendar), t2, o2); +} +function R(e2, n2, t2, o2) { + return ((e3, n3, t3) => convertToIso(e3, n3, pi, de(t3), si))(e2(n2.calendar), t2, o2); +} +function Je(e2, n2, t2, o2, r2) { + const i2 = de(r2), a2 = n2(i2.plainDate), s2 = e2(i2.timeZone); + return Yn(we(t2(s2), { + ...a2, + ...o2 + }), s2, a2.calendar); +} +function Le(e2, n2) { + return ee(checkIsoDateTimeInBounds({ + ...e2, + ...n2 + })); +} +function De(e2) { + return _(checkEpochNanoInBounds(he(e2, _r))); +} +function Pe(e2) { + return _(checkEpochNanoInBounds(he(e2, be))); +} +function Ce(e2) { + return _(checkEpochNanoInBounds(bigIntToBigNano(toBigInt(e2), Vr))); +} +function ge(e2) { + return _(checkEpochNanoInBounds(bigIntToBigNano(toBigInt(e2)))); +} +function pn(e2, n2, t2 = Dt) { + const o2 = n2.timeZone, r2 = e2(o2), i2 = { + ...fn(n2, r2), + ...t2 + }; + return Yn(getMatchingInstantFor(r2, i2, i2.offsetNanoseconds, 2), o2, n2.calendar); +} +function Tn(e2, n2, t2) { + const o2 = n2.timeZone, r2 = e2(o2), i2 = { + ...fn(n2, r2), + ...t2 + }, a2 = getPreferredCalendarSlot(n2.calendar, t2.calendar); + return Yn(getMatchingInstantFor(r2, i2, i2.offsetNanoseconds, 2), o2, a2); +} +function lt(e2, n2 = Dt) { + return ee({ + ...e2, + ...n2 + }); +} +function st(e2, n2) { + return ee({ + ...e2, + ...n2 + }, getPreferredCalendarSlot(e2.calendar, n2.calendar)); +} +function it(e2, n2) { + return { + ...e2, + calendar: n2 + }; +} +function On(e2, n2) { + return { + ...e2, + timeZone: n2 + }; +} +function getPreferredCalendarSlot(e2, n2) { + if (e2 === n2) { + return e2; + } + const t2 = I(e2), o2 = I(n2); + if (t2 === o2 || t2 === X) { + return n2; + } + if (o2 === X) { + return e2; + } + throw new RangeError(Er); +} +function createNativeOpsCreator(e2, n2) { + return (t2) => t2 === X ? e2 : t2 === gi || t2 === Ti ? Object.assign(Object.create(e2), { + id: t2 + }) : Object.assign(Object.create(n2), La(t2)); +} +function createOptionsTransformer(e2, n2, t2) { + const o2 = new Set(t2); + return (r2) => (((e3, n3) => { + for (const t3 of n3) { + if (t3 in e3) { + return 1; + } + } + return 0; + })(r2 = V(o2, r2), e2) || Object.assign(r2, n2), t2 && (r2.timeZone = Da, ["full", "long"].includes(r2.timeStyle) && (r2.timeStyle = "medium")), r2); +} +function e(e2, n2 = qn) { + const [t2, , , o2] = e2; + return (r2, i2 = ys, ...a2) => { + const s2 = n2(o2 && o2(...a2), r2, i2, t2), c2 = s2.resolvedOptions(); + return [s2, ...toEpochMillis(e2, c2, a2)]; + }; +} +function qn(e2, n2, t2, o2) { + if (t2 = o2(t2), e2) { + if (void 0 !== t2.timeZone) { + throw new TypeError(Lr); + } + t2.timeZone = e2; + } + return new En(n2, t2); +} +function toEpochMillis(e2, n2, t2) { + const [, o2, r2] = e2; + return t2.map((e3) => (e3.calendar && ((e4, n3, t3) => { + if ((t3 || e4 !== X) && e4 !== n3) { + throw new RangeError(Er); + } + })(I(e3.calendar), n2.calendar, r2), o2(e3, n2))); +} +function An(e2) { + const n2 = Bn(); + return Ie(n2, e2.getOffsetNanosecondsFor(n2)); +} +function Bn() { + return he(Date.now(), be); +} +function Nn() { + return Ps || (Ps = new En().resolvedOptions().timeZone); +} +var expectedInteger = (e2, n2) => `Non-integer ${e2}: ${n2}`; +var expectedPositive = (e2, n2) => `Non-positive ${e2}: ${n2}`; +var expectedFinite = (e2, n2) => `Non-finite ${e2}: ${n2}`; +var forbiddenBigIntToNumber = (e2) => `Cannot convert bigint to ${e2}`; +var invalidBigInt = (e2) => `Invalid bigint: ${e2}`; +var pr = "Cannot convert Symbol to string"; +var hr = "Invalid object"; +var numberOutOfRange = (e2, n2, t2, o2, r2) => r2 ? numberOutOfRange(e2, r2[n2], r2[t2], r2[o2]) : invalidEntity(e2, n2) + `; must be between ${t2}-${o2}`; +var invalidEntity = (e2, n2) => `Invalid ${e2}: ${n2}`; +var missingField = (e2) => `Missing ${e2}`; +var tn = (e2) => `Invalid field ${e2}`; +var duplicateFields = (e2) => `Duplicate field ${e2}`; +var noValidFields = (e2) => "No valid fields: " + e2.join(); +var Z = "Invalid bag"; +var invalidChoice = (e2, n2, t2) => invalidEntity(e2, n2) + "; must be " + Object.keys(t2).join(); +var A = "Cannot use valueOf"; +var P = "Invalid calling context"; +var gr = "Forbidden era/eraYear"; +var Dr = "Mismatching era/eraYear"; +var Ir = "Mismatching year/eraYear"; +var invalidEra = (e2) => `Invalid era: ${e2}`; +var missingYear = (e2) => "Missing year" + (e2 ? "/era/eraYear" : ""); +var invalidMonthCode = (e2) => `Invalid monthCode: ${e2}`; +var Mr = "Mismatching month/monthCode"; +var Nr = "Missing month/monthCode"; +var yr = "Cannot guess year"; +var Pr = "Invalid leap month"; +var g = "Invalid protocol"; +var vr = "Invalid protocol results"; +var Er = "Mismatching Calendars"; +var invalidCalendar = (e2) => `Invalid Calendar: ${e2}`; +var Fr = "Mismatching TimeZones"; +var br = "Forbidden ICU TimeZone"; +var wr = "Out-of-bounds offset"; +var Br = "Out-of-bounds TimeZone gap"; +var kr = "Invalid TimeZone offset"; +var Yr = "Ambiguous offset"; +var Cr = "Out-of-bounds date"; +var Zr = "Out-of-bounds duration"; +var Rr = "Cannot mix duration signs"; +var zr = "Missing relativeTo"; +var qr = "Cannot use large units"; +var Ar = "Required smallestUnit or largestUnit"; +var Ur = "smallestUnit > largestUnit"; +var failedParse = (e2) => `Cannot parse: ${e2}`; +var invalidSubstring = (e2) => `Invalid substring: ${e2}`; +var Ln = (e2) => `Cannot format ${e2}`; +var kn = "Mismatching types for formatting"; +var Lr = "Cannot specify TimeZone"; +var Wr = /* @__PURE__ */ E(b, (e2, n2) => n2); +var jr = /* @__PURE__ */ E(b, (e2, n2, t2) => t2); +var xr = /* @__PURE__ */ E(padNumber, 2); +var $r = { + nanosecond: 0, + microsecond: 1, + millisecond: 2, + second: 3, + minute: 4, + hour: 5, + day: 6, + week: 7, + month: 8, + year: 9 +}; +var Et = /* @__PURE__ */ Object.keys($r); +var Gr = 864e5; +var Hr = 1e3; +var Vr = 1e3; +var be = 1e6; +var _r = 1e9; +var Jr = 6e10; +var Kr = 36e11; +var Qr = 864e11; +var Xr = [1, Vr, be, _r, Jr, Kr, Qr]; +var w = /* @__PURE__ */ Et.slice(0, 6); +var ei = /* @__PURE__ */ sortStrings(w); +var ni = ["offset"]; +var ti = ["timeZone"]; +var oi = /* @__PURE__ */ w.concat(ni); +var ri = /* @__PURE__ */ oi.concat(ti); +var ii = ["era", "eraYear"]; +var ai = /* @__PURE__ */ ii.concat(["year"]); +var si = ["year"]; +var ci = ["monthCode"]; +var ui = /* @__PURE__ */ ["month"].concat(ci); +var li = ["day"]; +var fi = /* @__PURE__ */ ui.concat(si); +var di = /* @__PURE__ */ ci.concat(si); +var en = /* @__PURE__ */ li.concat(fi); +var mi = /* @__PURE__ */ li.concat(ui); +var pi = /* @__PURE__ */ li.concat(ci); +var hi = /* @__PURE__ */ jr(w, 0); +var X = "iso8601"; +var gi = "gregory"; +var Ti = "japanese"; +var Di = { + [gi]: { + bce: -1, + ce: 0 + }, + [Ti]: { + bce: -1, + ce: 0, + meiji: 1867, + taisho: 1911, + showa: 1925, + heisei: 1988, + reiwa: 2018 + }, + ethioaa: { + era0: 0 + }, + ethiopic: { + era0: 0, + era1: 5500 + }, + coptic: { + era0: -1, + era1: 0 + }, + roc: { + beforeroc: -1, + minguo: 0 + }, + buddhist: { + be: 0 + }, + islamic: { + ah: 0 + }, + indian: { + saka: 0 + }, + persian: { + ap: 0 + } +}; +var Ii = { + bc: "bce", + ad: "ce" +}; +var Mi = { + chinese: 13, + dangi: 13, + hebrew: -6 +}; +var m = /* @__PURE__ */ E(requireType, "string"); +var f = /* @__PURE__ */ E(requireType, "boolean"); +var Ni = /* @__PURE__ */ E(requireType, "number"); +var $ = /* @__PURE__ */ E(requireType, "function"); +var F = /* @__PURE__ */ Et.map((e2) => e2 + "s"); +var yi = /* @__PURE__ */ sortStrings(F); +var Pi = /* @__PURE__ */ F.slice(0, 6); +var vi = /* @__PURE__ */ F.slice(6); +var Ei = /* @__PURE__ */ vi.slice(1); +var Si = /* @__PURE__ */ Wr(F); +var Fi = /* @__PURE__ */ jr(F, 0); +var bi = /* @__PURE__ */ jr(Pi, 0); +var Oi = /* @__PURE__ */ E(zeroOutProps, F); +var j = ["isoNanosecond", "isoMicrosecond", "isoMillisecond", "isoSecond", "isoMinute", "isoHour"]; +var wi = ["isoDay", "isoMonth", "isoYear"]; +var Bi = /* @__PURE__ */ j.concat(wi); +var ki = /* @__PURE__ */ sortStrings(wi); +var Yi = /* @__PURE__ */ sortStrings(j); +var Ci = /* @__PURE__ */ sortStrings(Bi); +var Dt = /* @__PURE__ */ jr(Yi, 0); +var Zi = /* @__PURE__ */ E(zeroOutProps, Bi); +var En = Intl.DateTimeFormat; +var Ri = "en-GB"; +var zi = 1e8; +var qi = zi * Gr; +var Ai = [zi, 0]; +var Ui = [-zi, 0]; +var Li = 275760; +var Wi = -271821; +var ji = 1970; +var xi = 1972; +var $i = 12; +var Gi = /* @__PURE__ */ isoArgsToEpochMilli(1868, 9, 8); +var Hi = /* @__PURE__ */ Jn(computeJapaneseEraParts, WeakMap); +var Vi = "smallestUnit"; +var _i = "unit"; +var Ji = "roundingIncrement"; +var Ki = "fractionalSecondDigits"; +var Qi = "relativeTo"; +var Xi = { + constrain: 0, + reject: 1 +}; +var ea = /* @__PURE__ */ Object.keys(Xi); +var na = { + compatible: 0, + reject: 1, + earlier: 2, + later: 3 +}; +var ta = { + reject: 0, + use: 1, + prefer: 2, + ignore: 3 +}; +var oa = { + auto: 0, + never: 1, + critical: 2, + always: 3 +}; +var ra = { + auto: 0, + never: 1, + critical: 2 +}; +var ia = { + auto: 0, + never: 1 +}; +var aa = { + floor: 0, + halfFloor: 1, + ceil: 2, + halfCeil: 3, + trunc: 4, + halfTrunc: 5, + expand: 6, + halfExpand: 7, + halfEven: 8 +}; +var sa = /* @__PURE__ */ E(refineUnitOption, Vi); +var ca = /* @__PURE__ */ E(refineUnitOption, "largestUnit"); +var ua = /* @__PURE__ */ E(refineUnitOption, _i); +var la = /* @__PURE__ */ E(refineChoiceOption, "overflow", Xi); +var fa = /* @__PURE__ */ E(refineChoiceOption, "disambiguation", na); +var da = /* @__PURE__ */ E(refineChoiceOption, "offset", ta); +var ma = /* @__PURE__ */ E(refineChoiceOption, "calendarName", oa); +var pa = /* @__PURE__ */ E(refineChoiceOption, "timeZoneName", ra); +var ha = /* @__PURE__ */ E(refineChoiceOption, "offset", ia); +var ga = /* @__PURE__ */ E(refineChoiceOption, "roundingMode", aa); +var L = "PlainYearMonth"; +var q = "PlainMonthDay"; +var J = "PlainDate"; +var We = "PlainDateTime"; +var xe = "PlainTime"; +var Te = "ZonedDateTime"; +var Oe = "Instant"; +var qt = "Duration"; +var Ta = [Math.floor, (e2) => hasHalf(e2) ? Math.floor(e2) : Math.round(e2), Math.ceil, (e2) => hasHalf(e2) ? Math.ceil(e2) : Math.round(e2), Math.trunc, (e2) => hasHalf(e2) ? Math.trunc(e2) || 0 : Math.round(e2), (e2) => e2 < 0 ? Math.floor(e2) : Math.ceil(e2), (e2) => Math.sign(e2) * Math.round(Math.abs(e2)) || 0, (e2) => hasHalf(e2) ? (e2 = Math.trunc(e2) || 0) + e2 % 2 : Math.round(e2)]; +var Da = "UTC"; +var Ia = 5184e3; +var Ma = /* @__PURE__ */ isoArgsToEpochSec(1847); +var Na = /* @__PURE__ */ isoArgsToEpochSec(/* @__PURE__ */ (/* @__PURE__ */ new Date()).getUTCFullYear() + 10); +var ya = /0+$/; +var fn = /* @__PURE__ */ Jn(_zonedEpochSlotsToIso, WeakMap); +var Pa = 2 ** 32 - 1; +var ie = /* @__PURE__ */ Jn((e2) => { + const n2 = getTimeZoneEssence(e2); + return "object" == typeof n2 ? new IntlTimeZone(n2) : new FixedTimeZone(n2 || 0); +}); +var FixedTimeZone = class { + constructor(e2) { + this.R = e2; + } + getOffsetNanosecondsFor() { + return this.R; + } + getPossibleInstantsFor(e2) { + return [isoToEpochNanoWithOffset(e2, this.R)]; + } + B() { + } +}; +var IntlTimeZone = class { + constructor(e2) { + this.q = ((e3) => { + function getOffsetSec(e4) { + const i2 = clampNumber(e4, o2, r2), [a2, s2] = computePeriod(i2), c2 = n2(a2), u2 = n2(s2); + return c2 === u2 ? c2 : pinch(t2(a2, s2), c2, u2, e4); + } + function pinch(n3, t3, o3, r3) { + let i2, a2; + for (; (void 0 === r3 || void 0 === (i2 = r3 < n3[0] ? t3 : r3 >= n3[1] ? o3 : void 0)) && (a2 = n3[1] - n3[0]); ) { + const t4 = n3[0] + Math.floor(a2 / 2); + e3(t4) === o3 ? n3[1] = t4 : n3[0] = t4 + 1; + } + return i2; + } + const n2 = Jn(e3), t2 = Jn(createSplitTuple); + let o2 = Ma, r2 = Na; + return { + J(e4) { + const n3 = getOffsetSec(e4 - 86400), t3 = getOffsetSec(e4 + 86400), o3 = e4 - n3, r3 = e4 - t3; + if (n3 === t3) { + return [o3]; + } + const i2 = getOffsetSec(o3); + return i2 === getOffsetSec(r3) ? [e4 - i2] : n3 > t3 ? [o3, r3] : []; + }, + _: getOffsetSec, + B(e4, i2) { + const a2 = clampNumber(e4, o2, r2); + let [s2, c2] = computePeriod(a2); + const u2 = Ia * i2, l2 = i2 < 0 ? () => c2 > o2 || (o2 = a2, 0) : () => s2 < r2 || (r2 = a2, 0); + for (; l2(); ) { + const o3 = n2(s2), r3 = n2(c2); + if (o3 !== r3) { + const n3 = t2(s2, c2); + pinch(n3, o3, r3); + const a3 = n3[0]; + if ((compareNumbers(a3, e4) || 1) === i2) { + return a3; + } + } + s2 += u2, c2 += u2; + } + } + }; + })(/* @__PURE__ */ ((e3) => (n2) => { + const t2 = hashIntlFormatParts(e3, n2 * Hr); + return isoArgsToEpochSec(parseIntlPartsYear(t2), parseInt(t2.month), parseInt(t2.day), parseInt(t2.hour), parseInt(t2.minute), parseInt(t2.second)) - n2; + })(e2)); + } + getOffsetNanosecondsFor(e2) { + return this.q._(epochNanoToSec(e2)) * _r; + } + getPossibleInstantsFor(e2) { + const [n2, t2] = [isoArgsToEpochSec((o2 = e2).isoYear, o2.isoMonth, o2.isoDay, o2.isoHour, o2.isoMinute, o2.isoSecond), o2.isoMillisecond * be + o2.isoMicrosecond * Vr + o2.isoNanosecond]; + var o2; + return this.q.J(n2).map((e3) => checkEpochNanoInBounds(moveBigNano(he(e3, _r), t2))); + } + B(e2, n2) { + const [t2, o2] = epochNanoToSecMod(e2), r2 = this.q.B(t2 + (n2 > 0 || o2 ? 1 : 0), n2); + if (void 0 !== r2) { + return he(r2, _r); + } + } +}; +var va = "([+\u2212-])"; +var Ea = "(?:[.,](\\d{1,9}))?"; +var Sa = `(?:(?:${va}(\\d{6}))|(\\d{4}))-?(\\d{2})`; +var Fa = "(\\d{2})(?::?(\\d{2})(?::?(\\d{2})" + Ea + ")?)?"; +var ba = va + Fa; +var Oa = Sa + "-?(\\d{2})(?:[T ]" + Fa + "(Z|" + ba + ")?)?"; +var wa = "\\[(!?)([^\\]]*)\\]"; +var Ba = `((?:${wa}){0,9})`; +var ka = /* @__PURE__ */ createRegExp(Sa + Ba); +var Ya = /* @__PURE__ */ createRegExp("(?:--)?(\\d{2})-?(\\d{2})" + Ba); +var Ca = /* @__PURE__ */ createRegExp(Oa + Ba); +var Za = /* @__PURE__ */ createRegExp("T?" + Fa + "(?:" + ba + ")?" + Ba); +var Ra = /* @__PURE__ */ createRegExp(ba); +var za = /* @__PURE__ */ new RegExp(wa, "g"); +var qa = /* @__PURE__ */ createRegExp(`${va}?P(\\d+Y)?(\\d+M)?(\\d+W)?(\\d+D)?(?:T(?:(\\d+)${Ea}H)?(?:(\\d+)${Ea}M)?(?:(\\d+)${Ea}S)?)?`); +var Aa = /* @__PURE__ */ Jn((e2) => new En(Ri, { + timeZone: e2, + era: "short", + year: "numeric", + month: "numeric", + day: "numeric", + hour: "numeric", + minute: "numeric", + second: "numeric" +})); +var Ua = /^(AC|AE|AG|AR|AS|BE|BS|CA|CN|CS|CT|EA|EC|IE|IS|JS|MI|NE|NS|PL|PN|PR|PS|SS|VS)T$/; +var La = /* @__PURE__ */ Jn(createIntlCalendar); +var Wa = /* @__PURE__ */ Jn((e2) => new En(Ri, { + calendar: e2, + timeZone: Da, + era: "short", + year: "numeric", + month: "short", + day: "numeric" +})); +var ja = /^M(\d{2})(L?)$/; +var xa = { + era: toStringViaPrimitive, + eraYear: toInteger, + year: toInteger, + month: toPositiveInteger, + monthCode: toStringViaPrimitive, + day: toPositiveInteger +}; +var $a = /* @__PURE__ */ jr(w, toInteger); +var Ga = /* @__PURE__ */ jr(F, toStrictInteger); +var Ha = /* @__PURE__ */ Object.assign({}, xa, $a, Ga, { + offset: toStringViaPrimitive +}); +var Va = /* @__PURE__ */ E(remapProps, w, j); +var _a = { + dateAdd(e2, n2, t2) { + const o2 = H(t2); + let r2, { years: i2, months: a2, weeks: s2, days: c2 } = n2; + if (c2 += durationFieldsToBigNano(n2, 5)[0], i2 || a2) { + r2 = ((e3, n3, t3, o3, r3) => { + let [i3, a3, s3] = e3.v(n3); + if (t3) { + const [n4, o4] = e3.$(i3, a3); + i3 += t3, a3 = monthCodeNumberToMonth(n4, o4, e3.P(i3)), a3 = clampEntity("month", a3, 1, e3.j(i3), r3); + } + return o3 && ([i3, a3] = e3.G(i3, a3, o3)), s3 = clampEntity("day", s3, 1, e3.N(i3, a3), r3), e3.p(i3, a3, s3); + })(this, e2, i2, a2, o2); + } else { + if (!s2 && !c2) { + return e2; + } + r2 = isoToEpochMilli(e2); + } + return r2 += (7 * s2 + c2) * Gr, checkIsoDateInBounds(epochMilliToIso(r2)); + }, + dateUntil(e2, n2, t2) { + if (t2 <= 7) { + let o3 = 0, r3 = diffDays({ + ...e2, + ...Dt + }, { + ...n2, + ...Dt + }); + return 7 === t2 && ([o3, r3] = divModTrunc(r3, 7)), { + ...Fi, + weeks: o3, + days: r3 + }; + } + const o2 = this.v(e2), r2 = this.v(n2); + let [i2, a2, s2] = ((e3, n3, t3, o3, r3, i3, a3) => { + let s3 = r3 - n3, c2 = i3 - t3, u2 = a3 - o3; + if (s3 || c2) { + const l2 = Math.sign(s3 || c2); + let f2 = e3.N(r3, i3), d2 = 0; + if (Math.sign(u2) === -l2) { + const o4 = f2; + [r3, i3] = e3.G(r3, i3, -l2), s3 = r3 - n3, c2 = i3 - t3, f2 = e3.N(r3, i3), d2 = l2 < 0 ? -o4 : f2; + } + if (u2 = a3 - Math.min(o3, f2) + d2, s3) { + const [o4, a4] = e3.$(n3, t3), [u3, f3] = e3.$(r3, i3); + if (c2 = u3 - o4 || Number(f3) - Number(a4), Math.sign(c2) === -l2) { + const t4 = l2 < 0 && -e3.j(r3); + s3 = (r3 -= l2) - n3, c2 = i3 - monthCodeNumberToMonth(o4, a4, e3.P(r3)) + (t4 || e3.j(r3)); + } + } + } + return [s3, c2, u2]; + })(this, ...o2, ...r2); + return 8 === t2 && (a2 += this.V(i2, o2[0]), i2 = 0), { + ...Fi, + years: i2, + months: a2, + days: s2 + }; + }, + dateFromFields(e2, n2) { + const t2 = H(n2), o2 = refineYear(this, e2), r2 = refineMonth(this, e2, o2, t2), i2 = refineDay(this, e2, r2, o2, t2); + return v(checkIsoDateInBounds(this.L(o2, r2, i2)), this.id || X); + }, + yearMonthFromFields(e2, n2) { + const t2 = H(n2), o2 = refineYear(this, e2), r2 = refineMonth(this, e2, o2, t2); + return createPlainYearMonthSlots(checkIsoYearMonthInBounds(this.L(o2, r2, 1)), this.id || X); + }, + monthDayFromFields(e2, n2) { + const t2 = H(n2), o2 = !this.id, { monthCode: r2, year: i2, month: a2 } = e2; + let s2, c2, u2, l2, f2; + if (void 0 !== r2) { + [s2, c2] = parseMonthCode(r2), f2 = getDefinedProp(e2, "day"); + const n3 = this.k(s2, c2, f2); + if (!n3) { + throw new RangeError(yr); + } + if ([u2, l2] = n3, void 0 !== a2 && a2 !== l2) { + throw new RangeError(Mr); + } + o2 && (l2 = clampEntity("month", l2, 1, $i, 1), f2 = clampEntity("day", f2, 1, computeIsoDaysInMonth(void 0 !== i2 ? i2 : u2, l2), t2)); + } else { + u2 = void 0 === i2 && o2 ? xi : refineYear(this, e2), l2 = refineMonth(this, e2, u2, t2), f2 = refineDay(this, e2, l2, u2, t2); + const n3 = this.P(u2); + c2 = l2 === n3, s2 = monthToMonthCodeNumber(l2, n3); + const r3 = this.k(s2, c2, f2); + if (!r3) { + throw new RangeError(yr); + } + [u2, l2] = r3; + } + return createPlainMonthDaySlots(checkIsoDateInBounds(this.L(u2, l2, f2)), this.id || X); + }, + fields(e2) { + return getCalendarEraOrigins(this) && e2.includes("year") ? [...e2, ...ii] : e2; + }, + mergeFields(e2, n2) { + const t2 = Object.assign(/* @__PURE__ */ Object.create(null), e2); + return spliceFields(t2, n2, ui), getCalendarEraOrigins(this) && (spliceFields(t2, n2, ai), this.id === Ti && spliceFields(t2, n2, mi, ii)), t2; + }, + inLeapYear(e2) { + const [n2] = this.v(e2); + return this.K(n2); + }, + monthsInYear(e2) { + const [n2] = this.v(e2); + return this.j(n2); + }, + daysInMonth(e2) { + const [n2, t2] = this.v(e2); + return this.N(n2, t2); + }, + daysInYear(e2) { + const [n2] = this.v(e2); + return this.X(n2); + }, + dayOfYear: computeNativeDayOfYear, + era(e2) { + return this.nn(e2)[0]; + }, + eraYear(e2) { + return this.nn(e2)[1]; + }, + monthCode(e2) { + const [n2, t2] = this.v(e2), [o2, r2] = this.$(n2, t2); + return ((e3, n3) => "M" + xr(e3) + (n3 ? "L" : ""))(o2, r2); + }, + dayOfWeek: computeIsoDayOfWeek, + daysInWeek() { + return 7; + } +}; +var Ja = { + dayOfYear: computeNativeDayOfYear, + v: computeIsoDateParts, + p: isoArgsToEpochMilli +}; +var Ka = /* @__PURE__ */ Object.assign({}, Ja, { + weekOfYear: computeNativeWeekOfYear, + yearOfWeek: computeNativeYearOfWeek, + m(e2) { + function computeWeekShift(e3) { + return (7 - e3 < n2 ? 7 : 0) - e3; + } + function computeWeeksInYear(e3) { + const n3 = computeIsoDaysInYear(l2 + e3), t3 = e3 || 1, o3 = computeWeekShift(modFloor(a2 + n3 * t3, 7)); + return c2 = (n3 + (o3 - s2) * t3) / 7; + } + const n2 = this.id ? 1 : 4, t2 = computeIsoDayOfWeek(e2), o2 = this.dayOfYear(e2), r2 = modFloor(t2 - 1, 7), i2 = o2 - 1, a2 = modFloor(r2 - i2, 7), s2 = computeWeekShift(a2); + let c2, u2 = Math.floor((i2 - s2) / 7) + 1, l2 = e2.isoYear; + return u2 ? u2 > computeWeeksInYear(0) && (u2 = 1, l2++) : (u2 = computeWeeksInYear(-1), l2--), [u2, l2, c2]; + } +}); +var Qa = { + dayOfYear: computeNativeDayOfYear, + v: computeIntlDateParts, + p: computeIntlEpochMilli, + weekOfYear: computeNativeWeekOfYear, + yearOfWeek: computeNativeYearOfWeek, + m() { + return []; + } +}; +var Y = /* @__PURE__ */ createNativeOpsCreator(/* @__PURE__ */ Object.assign({}, _a, Ka, { + v: computeIsoDateParts, + nn(e2) { + return this.id === gi ? computeGregoryEraParts(e2) : this.id === Ti ? Hi(e2) : []; + }, + $: (e2, n2) => [n2, 0], + k(e2, n2) { + if (!n2) { + return [xi, e2]; + } + }, + K: computeIsoInLeapYear, + P() { + }, + j: computeIsoMonthsInYear, + V: (e2) => e2 * $i, + N: computeIsoDaysInMonth, + X: computeIsoDaysInYear, + L: (e2, n2, t2) => ({ + isoYear: e2, + isoMonth: n2, + isoDay: t2 + }), + p: isoArgsToEpochMilli, + G: (e2, n2, t2) => (e2 += divTrunc(t2, $i), (n2 += modTrunc(t2, $i)) < 1 ? (e2--, n2 += $i) : n2 > $i && (e2++, n2 -= $i), [e2, n2]), + year(e2) { + return e2.isoYear; + }, + month(e2) { + return e2.isoMonth; + }, + day: (e2) => e2.isoDay +}), /* @__PURE__ */ Object.assign({}, _a, Qa, { + v: computeIntlDateParts, + nn(e2) { + const n2 = this.h(e2); + return [n2.era, n2.eraYear]; + }, + $(e2, n2) { + const t2 = computeIntlLeapMonth.call(this, e2); + return [monthToMonthCodeNumber(n2, t2), t2 === n2]; + }, + k(e2, n2, t2) { + let [o2, r2, i2] = computeIntlDateParts.call(this, { + isoYear: xi, + isoMonth: $i, + isoDay: 31 + }); + const a2 = computeIntlLeapMonth.call(this, o2), s2 = r2 === a2; + 1 === (compareNumbers(e2, monthToMonthCodeNumber(r2, a2)) || compareNumbers(Number(n2), Number(s2)) || compareNumbers(t2, i2)) && o2--; + for (let r3 = 0; r3 < 100; r3++) { + const i3 = o2 - r3, a3 = computeIntlLeapMonth.call(this, i3), s3 = monthCodeNumberToMonth(e2, n2, a3); + if (n2 === (s3 === a3) && t2 <= computeIntlDaysInMonth.call(this, i3, s3)) { + return [i3, s3]; + } + } + }, + K(e2) { + const n2 = computeIntlDaysInYear.call(this, e2); + return n2 > computeIntlDaysInYear.call(this, e2 - 1) && n2 > computeIntlDaysInYear.call(this, e2 + 1); + }, + P: computeIntlLeapMonth, + j: computeIntlMonthsInYear, + V(e2, n2) { + const t2 = n2 + e2, o2 = Math.sign(e2), r2 = o2 < 0 ? -1 : 0; + let i2 = 0; + for (let e3 = n2; e3 !== t2; e3 += o2) { + i2 += computeIntlMonthsInYear.call(this, e3 + r2); + } + return i2; + }, + N: computeIntlDaysInMonth, + X: computeIntlDaysInYear, + L(e2, n2, t2) { + return epochMilliToIso(computeIntlEpochMilli.call(this, e2, n2, t2)); + }, + p: computeIntlEpochMilli, + G(e2, n2, t2) { + if (t2) { + if (n2 += t2, !Number.isSafeInteger(n2)) { + throw new RangeError(Cr); + } + if (t2 < 0) { + for (; n2 < 1; ) { + n2 += computeIntlMonthsInYear.call(this, --e2); + } + } else { + let t3; + for (; n2 > (t3 = computeIntlMonthsInYear.call(this, e2)); ) { + n2 -= t3, e2++; + } + } + } + return [e2, n2]; + }, + year(e2) { + return this.h(e2).year; + }, + month(e2) { + const { year: n2, o: t2 } = this.h(e2), { u: o2 } = this.l(n2); + return o2[t2] + 1; + }, + day(e2) { + return this.h(e2).day; + } +})); +var Xa = "numeric"; +var es = ["timeZoneName"]; +var ns = { + month: Xa, + day: Xa +}; +var ts = { + year: Xa, + month: Xa +}; +var os = /* @__PURE__ */ Object.assign({}, ts, { + day: Xa +}); +var rs = { + hour: Xa, + minute: Xa, + second: Xa +}; +var is = /* @__PURE__ */ Object.assign({}, os, rs); +var as = /* @__PURE__ */ Object.assign({}, is, { + timeZoneName: "short" +}); +var ss = /* @__PURE__ */ Object.keys(ts); +var cs = /* @__PURE__ */ Object.keys(ns); +var us = /* @__PURE__ */ Object.keys(os); +var ls = /* @__PURE__ */ Object.keys(rs); +var fs = ["dateStyle"]; +var ds = /* @__PURE__ */ ss.concat(fs); +var ms = /* @__PURE__ */ cs.concat(fs); +var ps = /* @__PURE__ */ us.concat(fs, ["weekday"]); +var hs = /* @__PURE__ */ ls.concat(["dayPeriod", "timeStyle"]); +var gs = /* @__PURE__ */ ps.concat(hs); +var Ts = /* @__PURE__ */ gs.concat(es); +var Ds = /* @__PURE__ */ es.concat(hs); +var Is = /* @__PURE__ */ es.concat(ps); +var Ms = /* @__PURE__ */ es.concat(["day", "weekday"], hs); +var Ns = /* @__PURE__ */ es.concat(["year", "weekday"], hs); +var ys = {}; +var t = [/* @__PURE__ */ createOptionsTransformer(gs, is), y]; +var s = [/* @__PURE__ */ createOptionsTransformer(Ts, as), y, 0, (e2, n2) => { + const t2 = I(e2.timeZone); + if (n2 && I(n2.timeZone) !== t2) { + throw new RangeError(Fr); + } + return t2; +}]; +var n = [/* @__PURE__ */ createOptionsTransformer(gs, is, es), isoToEpochMilli]; +var o = [/* @__PURE__ */ createOptionsTransformer(ps, os, Ds), isoToEpochMilli]; +var r = [/* @__PURE__ */ createOptionsTransformer(hs, rs, Is), (e2) => isoTimeFieldsToNano(e2) / be]; +var a = [/* @__PURE__ */ createOptionsTransformer(ds, ts, Ms), isoToEpochMilli, 1]; +var i = [/* @__PURE__ */ createOptionsTransformer(ms, ns, Ns), isoToEpochMilli, 1]; +var Ps; + +// node_modules/.pnpm/temporal-polyfill@0.2.4/node_modules/temporal-polyfill/chunks/classApi.js +function createSlotClass(e2, t2, n2, o2, r2) { + function Class(...e3) { + if (!(this instanceof Class)) { + throw new TypeError(P); + } + oo(this, t2(...e3)); + } + function bindMethod(e3, t3) { + return Object.defineProperties(function(...t4) { + return e3.call(this, getSpecificSlots(this), ...t4); + }, D(t3)); + } + function getSpecificSlots(t3) { + const n3 = no(t3); + if (!n3 || n3.branding !== e2) { + throw new TypeError(P); + } + return n3; + } + return Object.defineProperties(Class.prototype, { + ...O(T(bindMethod, n2)), + ...p(T(bindMethod, o2)), + ...h("Temporal." + e2) + }), Object.defineProperties(Class, { + ...p(r2), + ...D(e2) + }), [Class, (e3) => { + const t3 = Object.create(Class.prototype); + return oo(t3, e3), t3; + }, getSpecificSlots]; +} +function createProtocolValidator(e2) { + return e2 = e2.concat("id").sort(), (t2) => { + if (!C(t2, e2)) { + throw new TypeError(g); + } + return t2; + }; +} +function rejectInvalidBag(e2) { + if (no(e2) || void 0 !== e2.calendar || void 0 !== e2.timeZone) { + throw new TypeError(Z); + } + return e2; +} +function createCalendarFieldMethods(e2, t2) { + const n2 = {}; + for (const o2 in e2) { + n2[o2] = ({ F: e3 }, n3) => { + const r2 = no(n3) || {}, { branding: a2 } = r2, i2 = a2 === J || t2.includes(a2) ? r2 : toPlainDateSlots(n3); + return e3[o2](i2); + }; + } + return n2; +} +function createCalendarGetters(e2) { + const t2 = {}; + for (const n2 in e2) { + t2[n2] = (e3) => { + const { calendar: t3 } = e3; + return (o2 = t3, "string" == typeof o2 ? Y(o2) : (r2 = o2, Object.assign(Object.create(co), { + C: r2 + })))[n2](e3); + var o2, r2; + }; + } + return t2; +} +function neverValueOf() { + throw new TypeError(A); +} +function createCalendarFromSlots({ calendar: e2 }) { + return "string" == typeof e2 ? new lr(e2) : e2; +} +function toPlainMonthDaySlots(e2, t2) { + if (t2 = U(t2), z(e2)) { + const n3 = no(e2); + if (n3 && n3.branding === q) { + return H(t2), n3; + } + const o2 = extractCalendarSlotFromBag(e2); + return K(Qo(o2 || X), !o2, e2, t2); + } + const n2 = Q(Y, e2); + return H(t2), n2; +} +function getOffsetNanosecondsForAdapter(e2, t2, n2) { + return o2 = t2.call(e2, Co(_(n2))), ae(u(o2)); + var o2; +} +function createAdapterOps(e2, t2 = ho) { + const n2 = Object.keys(t2).sort(), o2 = {}; + for (const r2 of n2) { + o2[r2] = E(t2[r2], e2, $(e2[r2])); + } + return o2; +} +function createTimeZoneOps(e2, t2) { + return "string" == typeof e2 ? ie(e2) : createAdapterOps(e2, t2); +} +function createTimeZoneOffsetOps(e2) { + return createTimeZoneOps(e2, Do); +} +function toInstantSlots(e2) { + if (z(e2)) { + const t2 = no(e2); + if (t2) { + switch (t2.branding) { + case Oe: + return t2; + case Te: + return _(t2.epochNanoseconds); + } + } + } + return pe(e2); +} +function getImplTransition(e2, t2, n2) { + const o2 = t2.B(toInstantSlots(n2).epochNanoseconds, e2); + return o2 ? Co(_(o2)) : null; +} +function refineTimeZoneSlot(e2) { + return z(e2) ? (no(e2) || {}).timeZone || Fo(e2) : ((e3) => ye(Ne(m(e3))))(e2); +} +function toPlainTimeSlots(e2, t2) { + if (z(e2)) { + const n2 = no(e2) || {}; + switch (n2.branding) { + case xe: + return H(t2), n2; + case We: + return H(t2), Ge(n2); + case Te: + return H(t2), Re(createTimeZoneOffsetOps, n2); + } + return Ue(e2, t2); + } + return H(t2), ze(e2); +} +function optionalToPlainTimeFields(e2) { + return void 0 === e2 ? void 0 : toPlainTimeSlots(e2); +} +function toPlainYearMonthSlots(e2, t2) { + if (t2 = U(t2), z(e2)) { + const n3 = no(e2); + return n3 && n3.branding === L ? (H(t2), n3) : nt(Ho(getCalendarSlotFromBag(e2)), e2, t2); + } + const n2 = ot(Y, e2); + return H(t2), n2; +} +function toPlainDateTimeSlots(e2, t2) { + if (t2 = U(t2), z(e2)) { + const n3 = no(e2) || {}; + switch (n3.branding) { + case We: + return H(t2), n3; + case J: + return H(t2), ee({ + ...n3, + ...Dt + }); + case Te: + return H(t2), ht(createTimeZoneOffsetOps, n3); + } + return Pt(Ko(getCalendarSlotFromBag(e2)), e2, t2); + } + const n2 = Ct(e2); + return H(t2), n2; +} +function toPlainDateSlots(e2, t2) { + if (t2 = U(t2), z(e2)) { + const n3 = no(e2) || {}; + switch (n3.branding) { + case J: + return H(t2), n3; + case We: + return H(t2), v(n3); + case Te: + return H(t2), Bt(createTimeZoneOffsetOps, n3); + } + return Yt(Ko(getCalendarSlotFromBag(e2)), e2, t2); + } + const n2 = At(e2); + return H(t2), n2; +} +function dayAdapter(e2, t2, n2) { + return d(t2.call(e2, Yo(v(n2, e2)))); +} +function createCompoundOpsCreator(e2) { + return (t2) => "string" == typeof t2 ? Y(t2) : ((e3, t3) => { + const n2 = Object.keys(t3).sort(), o2 = {}; + for (const r2 of n2) { + o2[r2] = E(t3[r2], e3, e3[r2]); + } + return o2; + })(t2, e2); +} +function toDurationSlots(e2) { + if (z(e2)) { + const t2 = no(e2); + return t2 && t2.branding === qt ? t2 : Ht(e2); + } + return Kt(e2); +} +function refinePublicRelativeTo(e2) { + if (void 0 !== e2) { + if (z(e2)) { + const t2 = no(e2) || {}; + switch (t2.branding) { + case Te: + case J: + return t2; + case We: + return v(t2); + } + const n2 = getCalendarSlotFromBag(e2); + return { + ...Qt(refineTimeZoneSlot, createTimeZoneOps, Ko(n2), e2), + calendar: n2 + }; + } + return Xt(e2); + } +} +function getCalendarSlotFromBag(e2) { + return extractCalendarSlotFromBag(e2) || X; +} +function extractCalendarSlotFromBag(e2) { + const { calendar: t2 } = e2; + if (void 0 !== t2) { + return refineCalendarSlot(t2); + } +} +function refineCalendarSlot(e2) { + return z(e2) ? (no(e2) || {}).calendar || cr(e2) : ((e3) => an(sn(m(e3))))(e2); +} +function toZonedDateTimeSlots(e2, t2) { + if (t2 = U(t2), z(e2)) { + const n2 = no(e2); + if (n2 && n2.branding === Te) { + return wn(t2), n2; + } + const o2 = getCalendarSlotFromBag(e2); + return jn(refineTimeZoneSlot, createTimeZoneOps, Ko(o2), o2, e2, t2); + } + return Mn(e2, t2); +} +function adaptDateMethods(e2) { + return T((e3) => (t2) => e3(slotsToIso(t2)), e2); +} +function slotsToIso(e2) { + return fn(e2, createTimeZoneOffsetOps); +} +function createDateTimeFormatClass() { + const e2 = En.prototype, t2 = Object.getOwnPropertyDescriptors(e2), n2 = Object.getOwnPropertyDescriptors(En), DateTimeFormat = function(e3, t3 = {}) { + if (!(this instanceof DateTimeFormat)) { + return new DateTimeFormat(e3, t3); + } + Or.set(this, ((e4, t4 = {}) => { + const n3 = new En(e4, t4), o2 = n3.resolvedOptions(), r2 = o2.locale, a2 = Vn(Object.keys(t4), o2), i2 = Jn(createFormatPrepperForBranding), prepFormat = (...e5) => { + let t5; + const o3 = e5.map((e6, n4) => { + const o4 = no(e6), r3 = (o4 || {}).branding; + if (n4 && t5 && t5 !== r3) { + throw new TypeError(kn); + } + return t5 = r3, o4; + }); + return t5 ? i2(t5)(r2, a2, ...o3) : [n3, ...e5]; + }; + return prepFormat.U = n3, prepFormat; + })(e3, t3)); + }; + for (const e3 in t2) { + const n3 = t2[e3], o2 = e3.startsWith("format") && createFormatMethod(e3); + "function" == typeof n3.value ? n3.value = "constructor" === e3 ? DateTimeFormat : o2 || createProxiedMethod(e3) : o2 && (n3.get = function() { + return o2.bind(this); + }); + } + return n2.prototype.value = Object.create(e2, t2), Object.defineProperties(DateTimeFormat, n2), DateTimeFormat; +} +function createFormatMethod(e2) { + return function(...t2) { + const n2 = Or.get(this), [o2, ...r2] = n2(...t2); + return o2[e2](...r2); + }; +} +function createProxiedMethod(e2) { + return function(...t2) { + return Or.get(this).U[e2](...t2); + }; +} +function createFormatPrepperForBranding(t2) { + const n2 = xn[t2]; + if (!n2) { + throw new TypeError(Ln(t2)); + } + return e(n2, Jn(qn)); +} +var xn = { + Instant: t, + PlainDateTime: n, + PlainDate: o, + PlainTime: r, + PlainYearMonth: a, + PlainMonthDay: i +}; +var Rn = /* @__PURE__ */ e(t); +var Wn = /* @__PURE__ */ e(s); +var Gn = /* @__PURE__ */ e(n); +var Un = /* @__PURE__ */ e(o); +var zn = /* @__PURE__ */ e(r); +var Hn = /* @__PURE__ */ e(a); +var Kn = /* @__PURE__ */ e(i); +var Qn = { + era: l, + eraYear: c, + year: u, + month: d, + daysInMonth: d, + daysInYear: d, + inLeapYear: f, + monthsInYear: d +}; +var Xn = { + monthCode: m +}; +var $n = { + day: d +}; +var _n = { + dayOfWeek: d, + dayOfYear: d, + weekOfYear: S, + yearOfWeek: c, + daysInWeek: d +}; +var eo = /* @__PURE__ */ Object.assign({}, Qn, Xn, $n, _n); +var to = /* @__PURE__ */ new WeakMap(); +var no = /* @__PURE__ */ to.get.bind(to); +var oo = /* @__PURE__ */ to.set.bind(to); +var ro = { + ...createCalendarFieldMethods(Qn, [L]), + ...createCalendarFieldMethods(_n, []), + ...createCalendarFieldMethods(Xn, [L, q]), + ...createCalendarFieldMethods($n, [q]) +}; +var ao = /* @__PURE__ */ createCalendarGetters(eo); +var io = /* @__PURE__ */ createCalendarGetters({ + ...Qn, + ...Xn +}); +var so = /* @__PURE__ */ createCalendarGetters({ + ...Xn, + ...$n +}); +var lo = { + calendarId: (e2) => I(e2.calendar) +}; +var co = /* @__PURE__ */ T((e2, t2) => function(n2) { + const { C: o2 } = this; + return e2(o2[t2](Yo(v(n2, o2)))); +}, eo); +var uo = /* @__PURE__ */ b((e2) => (t2) => t2[e2], F.concat("sign")); +var fo = /* @__PURE__ */ b((e2, t2) => (e3) => e3[j[t2]], w); +var mo = { + epochSeconds: M, + epochMilliseconds: y, + epochMicroseconds: N, + epochNanoseconds: B +}; +var So = /* @__PURE__ */ E(V, /* @__PURE__ */ new Set(["branding"])); +var [Oo, To, po] = createSlotClass(q, E(G, refineCalendarSlot), { + ...lo, + ...so +}, { + getISOFields: So, + getCalendar: createCalendarFromSlots, + with(e2, t2, n2) { + return To(k(_o, e2, this, rejectInvalidBag(t2), n2)); + }, + equals: (e2, t2) => x(e2, toPlainMonthDaySlots(t2)), + toPlainDate(e2, t2) { + return Yo(R($o, e2, this, t2)); + }, + toLocaleString(e2, t2, n2) { + const [o2, r2] = Kn(t2, n2, e2); + return o2.format(r2); + }, + toString: W, + toJSON: (e2) => W(e2), + valueOf: neverValueOf +}, { + from: (e2, t2) => To(toPlainMonthDaySlots(e2, t2)) +}); +var ho = { + getOffsetNanosecondsFor: getOffsetNanosecondsForAdapter, + getPossibleInstantsFor(e2, t2, n2) { + const o2 = [...t2.call(e2, No(ee(n2, X)))].map((e3) => go(e3).epochNanoseconds), r2 = o2.length; + return r2 > 1 && (o2.sort(te), ne(oe(re(o2[0], o2[r2 - 1])))), o2; + } +}; +var Do = { + getOffsetNanosecondsFor: getOffsetNanosecondsForAdapter +}; +var [Po, Co, go] = createSlotClass(Oe, Se, mo, { + add: (e2, t2) => Co(se(0, e2, toDurationSlots(t2))), + subtract: (e2, t2) => Co(se(1, e2, toDurationSlots(t2))), + until: (e2, t2, n2) => ar(le(0, e2, toInstantSlots(t2), n2)), + since: (e2, t2, n2) => ar(le(1, e2, toInstantSlots(t2), n2)), + round: (e2, t2) => Co(ce(e2, t2)), + equals: (e2, t2) => ue(e2, toInstantSlots(t2)), + toZonedDateTime(e2, t2) { + const n2 = de(t2); + return dr(fe(e2, refineTimeZoneSlot(n2.timeZone), refineCalendarSlot(n2.calendar))); + }, + toZonedDateTimeISO: (e2, t2) => dr(fe(e2, refineTimeZoneSlot(t2))), + toLocaleString(e2, t2, n2) { + const [o2, r2] = Rn(t2, n2, e2); + return o2.format(r2); + }, + toString: (e2, t2) => me(refineTimeZoneSlot, createTimeZoneOffsetOps, e2, t2), + toJSON: (e2) => me(refineTimeZoneSlot, createTimeZoneOffsetOps, e2), + valueOf: neverValueOf +}, { + from: (e2) => Co(toInstantSlots(e2)), + fromEpochSeconds: (e2) => Co(De(e2)), + fromEpochMilliseconds: (e2) => Co(Pe(e2)), + fromEpochMicroseconds: (e2) => Co(Ce(e2)), + fromEpochNanoseconds: (e2) => Co(ge(e2)), + compare: (e2, t2) => Ze(toInstantSlots(e2), toInstantSlots(t2)) +}); +var [Zo, bo] = createSlotClass("TimeZone", (e2) => { + const t2 = Me(e2); + return { + branding: "TimeZone", + id: t2, + F: ie(t2) + }; +}, { + id: (e2) => e2.id +}, { + getPossibleInstantsFor: ({ F: e2 }, t2) => e2.getPossibleInstantsFor(toPlainDateTimeSlots(t2)).map((e3) => Co(_(e3))), + getOffsetNanosecondsFor: ({ F: e2 }, t2) => e2.getOffsetNanosecondsFor(toInstantSlots(t2).epochNanoseconds), + getOffsetStringFor(e2, t2) { + const n2 = toInstantSlots(t2).epochNanoseconds, o2 = createAdapterOps(this, Do).getOffsetNanosecondsFor(n2); + return Fe(o2); + }, + getPlainDateTimeFor(e2, t2, n2 = X) { + const o2 = toInstantSlots(t2).epochNanoseconds, r2 = createAdapterOps(this, Do).getOffsetNanosecondsFor(o2); + return No(ee(Ie(o2, r2), refineCalendarSlot(n2))); + }, + getInstantFor(e2, t2, n2) { + const o2 = toPlainDateTimeSlots(t2), r2 = ve(n2), a2 = createAdapterOps(this); + return Co(_(we(a2, o2, r2))); + }, + getNextTransition: ({ F: e2 }, t2) => getImplTransition(1, e2, t2), + getPreviousTransition: ({ F: e2 }, t2) => getImplTransition(-1, e2, t2), + equals(e2, t2) { + return !!je(this, refineTimeZoneSlot(t2)); + }, + toString: (e2) => e2.id, + toJSON: (e2) => e2.id +}, { + from(e2) { + const t2 = refineTimeZoneSlot(e2); + return "string" == typeof t2 ? new Zo(t2) : t2; + } +}); +var Fo = /* @__PURE__ */ createProtocolValidator(Object.keys(ho)); +var [Io, vo] = createSlotClass(xe, ke, fo, { + getISOFields: So, + with(e2, t2, n2) { + return vo(Be(this, rejectInvalidBag(t2), n2)); + }, + add: (e2, t2) => vo(Ye(0, e2, toDurationSlots(t2))), + subtract: (e2, t2) => vo(Ye(1, e2, toDurationSlots(t2))), + until: (e2, t2, n2) => ar(Ae(0, e2, toPlainTimeSlots(t2), n2)), + since: (e2, t2, n2) => ar(Ae(1, e2, toPlainTimeSlots(t2), n2)), + round: (e2, t2) => vo(Ee(e2, t2)), + equals: (e2, t2) => Ve(e2, toPlainTimeSlots(t2)), + toZonedDateTime: (e2, t2) => dr(Je(refineTimeZoneSlot, toPlainDateSlots, createTimeZoneOps, e2, t2)), + toPlainDateTime: (e2, t2) => No(Le(e2, toPlainDateSlots(t2))), + toLocaleString(e2, t2, n2) { + const [o2, r2] = zn(t2, n2, e2); + return o2.format(r2); + }, + toString: qe, + toJSON: (e2) => qe(e2), + valueOf: neverValueOf +}, { + from: (e2, t2) => vo(toPlainTimeSlots(e2, t2)), + compare: (e2, t2) => He(toPlainTimeSlots(e2), toPlainTimeSlots(t2)) +}); +var [wo, jo, Mo] = createSlotClass(L, E(tt, refineCalendarSlot), { + ...lo, + ...io +}, { + getISOFields: So, + getCalendar: createCalendarFromSlots, + with(e2, t2, n2) { + return jo(Ke(Xo, e2, this, rejectInvalidBag(t2), n2)); + }, + add: (e2, t2, n2) => jo(Qe(nr, 0, e2, toDurationSlots(t2), n2)), + subtract: (e2, t2, n2) => jo(Qe(nr, 1, e2, toDurationSlots(t2), n2)), + until: (e2, t2, n2) => ar(Xe(or, 0, e2, toPlainYearMonthSlots(t2), n2)), + since: (e2, t2, n2) => ar(Xe(or, 1, e2, toPlainYearMonthSlots(t2), n2)), + equals: (e2, t2) => $e(e2, toPlainYearMonthSlots(t2)), + toPlainDate(e2, t2) { + return Yo(_e($o, e2, this, t2)); + }, + toLocaleString(e2, t2, n2) { + const [o2, r2] = Hn(t2, n2, e2); + return o2.format(r2); + }, + toString: et, + toJSON: (e2) => et(e2), + valueOf: neverValueOf +}, { + from: (e2, t2) => jo(toPlainYearMonthSlots(e2, t2)), + compare: (e2, t2) => rt(toPlainYearMonthSlots(e2), toPlainYearMonthSlots(t2)) +}); +var [yo, No] = createSlotClass(We, E(pt, refineCalendarSlot), { + ...lo, + ...ao, + ...fo +}, { + getISOFields: So, + getCalendar: createCalendarFromSlots, + with(e2, t2, n2) { + return No(at($o, e2, this, rejectInvalidBag(t2), n2)); + }, + withCalendar: (e2, t2) => No(it(e2, refineCalendarSlot(t2))), + withPlainDate: (e2, t2) => No(st(e2, toPlainDateSlots(t2))), + withPlainTime: (e2, t2) => No(lt(e2, optionalToPlainTimeFields(t2))), + add: (e2, t2, n2) => No(ct(er, 0, e2, toDurationSlots(t2), n2)), + subtract: (e2, t2, n2) => No(ct(er, 1, e2, toDurationSlots(t2), n2)), + until: (e2, t2, n2) => ar(ut(tr, 0, e2, toPlainDateTimeSlots(t2), n2)), + since: (e2, t2, n2) => ar(ut(tr, 1, e2, toPlainDateTimeSlots(t2), n2)), + round: (e2, t2) => No(dt(e2, t2)), + equals: (e2, t2) => ft(e2, toPlainDateTimeSlots(t2)), + toZonedDateTime: (e2, t2, n2) => dr(mt(createTimeZoneOps, e2, refineTimeZoneSlot(t2), n2)), + toPlainDate: (e2) => Yo(v(e2)), + toPlainTime: (e2) => vo(Ge(e2)), + toPlainYearMonth(e2) { + return jo(St(Ho, e2, this)); + }, + toPlainMonthDay(e2) { + return To(Ot(Qo, e2, this)); + }, + toLocaleString(e2, t2, n2) { + const [o2, r2] = Gn(t2, n2, e2); + return o2.format(r2); + }, + toString: Tt, + toJSON: (e2) => Tt(e2), + valueOf: neverValueOf +}, { + from: (e2, t2) => No(toPlainDateTimeSlots(e2, t2)), + compare: (e2, t2) => gt(toPlainDateTimeSlots(e2), toPlainDateTimeSlots(t2)) +}); +var [Bo, Yo, Ao] = createSlotClass(J, E(Nt, refineCalendarSlot), { + ...lo, + ...ao +}, { + getISOFields: So, + getCalendar: createCalendarFromSlots, + with(e2, t2, n2) { + return Yo(Zt($o, e2, this, rejectInvalidBag(t2), n2)); + }, + withCalendar: (e2, t2) => Yo(it(e2, refineCalendarSlot(t2))), + add: (e2, t2, n2) => Yo(bt(er, 0, e2, toDurationSlots(t2), n2)), + subtract: (e2, t2, n2) => Yo(bt(er, 1, e2, toDurationSlots(t2), n2)), + until: (e2, t2, n2) => ar(Ft(tr, 0, e2, toPlainDateSlots(t2), n2)), + since: (e2, t2, n2) => ar(Ft(tr, 1, e2, toPlainDateSlots(t2), n2)), + equals: (e2, t2) => It(e2, toPlainDateSlots(t2)), + toZonedDateTime(e2, t2) { + const n2 = !z(t2) || t2 instanceof Zo ? { + timeZone: t2 + } : t2; + return dr(vt(refineTimeZoneSlot, toPlainTimeSlots, createTimeZoneOps, e2, n2)); + }, + toPlainDateTime: (e2, t2) => No(wt(e2, optionalToPlainTimeFields(t2))), + toPlainYearMonth(e2) { + return jo(jt(Ho, e2, this)); + }, + toPlainMonthDay(e2) { + return To(Mt(Qo, e2, this)); + }, + toLocaleString(e2, t2, n2) { + const [o2, r2] = Un(t2, n2, e2); + return o2.format(r2); + }, + toString: yt, + toJSON: (e2) => yt(e2), + valueOf: neverValueOf +}, { + from: (e2, t2) => Yo(toPlainDateSlots(e2, t2)), + compare: (e2, t2) => rt(toPlainDateSlots(e2), toPlainDateSlots(t2)) +}); +var Eo = { + fields(e2, t2, n2) { + return [...t2.call(e2, n2)]; + } +}; +var Vo = /* @__PURE__ */ Object.assign({ + dateFromFields(e2, t2, n2, o2) { + return Ao(t2.call(e2, Object.assign(/* @__PURE__ */ Object.create(null), n2), o2)); + } +}, Eo); +var Jo = /* @__PURE__ */ Object.assign({ + yearMonthFromFields(e2, t2, n2, o2) { + return Mo(t2.call(e2, Object.assign(/* @__PURE__ */ Object.create(null), n2), o2)); + } +}, Eo); +var Lo = /* @__PURE__ */ Object.assign({ + monthDayFromFields(e2, t2, n2, o2) { + return po(t2.call(e2, Object.assign(/* @__PURE__ */ Object.create(null), n2), o2)); + } +}, Eo); +var qo = { + mergeFields(e2, t2, n2, o2) { + return de(t2.call(e2, Object.assign(/* @__PURE__ */ Object.create(null), n2), Object.assign(/* @__PURE__ */ Object.create(null), o2))); + } +}; +var ko = /* @__PURE__ */ Object.assign({}, Vo, qo); +var xo = /* @__PURE__ */ Object.assign({}, Jo, qo); +var Ro = /* @__PURE__ */ Object.assign({}, Lo, qo); +var Wo = { + dateAdd(e2, t2, n2, o2, r2) { + return Ao(t2.call(e2, Yo(v(n2, e2)), ar(Vt(o2)), r2)); + } +}; +var Go = /* @__PURE__ */ Object.assign({}, Wo, { + dateUntil(e2, t2, n2, o2, r2, a2) { + return ir(t2.call(e2, Yo(v(n2, e2)), Yo(v(o2, e2)), Object.assign(/* @__PURE__ */ Object.create(null), a2, { + largestUnit: Et[r2] + }))); + } +}); +var Uo = /* @__PURE__ */ Object.assign({}, Wo, { + day: dayAdapter +}); +var zo = /* @__PURE__ */ Object.assign({}, Go, { + day: dayAdapter +}); +var Ho = /* @__PURE__ */ createCompoundOpsCreator(Jo); +var Ko = /* @__PURE__ */ createCompoundOpsCreator(Vo); +var Qo = /* @__PURE__ */ createCompoundOpsCreator(Lo); +var Xo = /* @__PURE__ */ createCompoundOpsCreator(xo); +var $o = /* @__PURE__ */ createCompoundOpsCreator(ko); +var _o = /* @__PURE__ */ createCompoundOpsCreator(Ro); +var er = /* @__PURE__ */ createCompoundOpsCreator(Wo); +var tr = /* @__PURE__ */ createCompoundOpsCreator(Go); +var nr = /* @__PURE__ */ createCompoundOpsCreator(Uo); +var or = /* @__PURE__ */ createCompoundOpsCreator(zo); +var [rr, ar, ir] = createSlotClass(qt, Lt, { + ...uo, + blank: Jt +}, { + with: (e2, t2) => ar(kt(e2, t2)), + negated: (e2) => ar(xt(e2)), + abs: (e2) => ar(Rt(e2)), + add: (e2, t2, n2) => ar(Wt(refinePublicRelativeTo, tr, createTimeZoneOps, 0, e2, toDurationSlots(t2), n2)), + subtract: (e2, t2, n2) => ar(Wt(refinePublicRelativeTo, tr, createTimeZoneOps, 1, e2, toDurationSlots(t2), n2)), + round: (e2, t2) => ar(Gt(refinePublicRelativeTo, tr, createTimeZoneOps, e2, t2)), + total: (e2, t2) => Ut(refinePublicRelativeTo, tr, createTimeZoneOps, e2, t2), + toLocaleString(e2, t2, n2) { + return Intl.DurationFormat ? new Intl.DurationFormat(t2, n2).format(this) : zt(e2); + }, + toString: zt, + toJSON: (e2) => zt(e2), + valueOf: neverValueOf +}, { + from: (e2) => ar(toDurationSlots(e2)), + compare: (e2, t2, n2) => $t(refinePublicRelativeTo, er, createTimeZoneOps, toDurationSlots(e2), toDurationSlots(t2), n2) +}); +var sr = { + toString: (e2) => e2.id, + toJSON: (e2) => e2.id, + ...ro, + dateAdd: ({ id: e2, F: t2 }, n2, o2, r2) => Yo(v(t2.dateAdd(toPlainDateSlots(n2), toDurationSlots(o2), r2), e2)), + dateUntil: ({ F: e2 }, t2, n2, o2) => ar(Vt(e2.dateUntil(toPlainDateSlots(t2), toPlainDateSlots(n2), _t(o2)))), + dateFromFields: ({ id: e2, F: t2 }, n2, o2) => Yo(Yt(t2, n2, o2, ln(e2))), + yearMonthFromFields: ({ id: e2, F: t2 }, n2, o2) => jo(nt(t2, n2, o2, un(e2))), + monthDayFromFields: ({ id: e2, F: t2 }, n2, o2) => To(K(t2, 0, n2, o2, cn(e2))), + fields({ F: e2 }, t2) { + const n2 = new Set(en), o2 = []; + for (const e3 of t2) { + if (m(e3), !n2.has(e3)) { + throw new RangeError(tn(e3)); + } + n2.delete(e3), o2.push(e3); + } + return e2.fields(o2); + }, + mergeFields: ({ F: e2 }, t2, n2) => e2.mergeFields(nn(on(t2)), nn(on(n2))) +}; +var [lr] = createSlotClass("Calendar", (e2) => { + const t2 = rn(e2); + return { + branding: "Calendar", + id: t2, + F: Y(t2) + }; +}, { + id: (e2) => e2.id +}, sr, { + from(e2) { + const t2 = refineCalendarSlot(e2); + return "string" == typeof t2 ? new lr(t2) : t2; + } +}); +var cr = /* @__PURE__ */ createProtocolValidator(Object.keys(sr).slice(4)); +var [ur, dr] = createSlotClass(Te, E(vn, refineCalendarSlot, refineTimeZoneSlot), { + ...mo, + ...lo, + ...adaptDateMethods(ao), + ...adaptDateMethods(fo), + offset: (e2) => Fe(slotsToIso(e2).offsetNanoseconds), + offsetNanoseconds: (e2) => slotsToIso(e2).offsetNanoseconds, + timeZoneId: (e2) => I(e2.timeZone), + hoursInDay: (e2) => dn(createTimeZoneOps, e2) +}, { + getISOFields: (e2) => mn(createTimeZoneOffsetOps, e2), + getCalendar: createCalendarFromSlots, + getTimeZone: ({ timeZone: e2 }) => "string" == typeof e2 ? new Zo(e2) : e2, + with(e2, t2, n2) { + return dr(Sn($o, createTimeZoneOps, e2, this, rejectInvalidBag(t2), n2)); + }, + withCalendar: (e2, t2) => dr(it(e2, refineCalendarSlot(t2))), + withTimeZone: (e2, t2) => dr(On(e2, refineTimeZoneSlot(t2))), + withPlainDate: (e2, t2) => dr(Tn(createTimeZoneOps, e2, toPlainDateSlots(t2))), + withPlainTime: (e2, t2) => dr(pn(createTimeZoneOps, e2, optionalToPlainTimeFields(t2))), + add: (e2, t2, n2) => dr(hn(er, createTimeZoneOps, 0, e2, toDurationSlots(t2), n2)), + subtract: (e2, t2, n2) => dr(hn(er, createTimeZoneOps, 1, e2, toDurationSlots(t2), n2)), + until: (e2, t2, n2) => ar(Vt(Dn(tr, createTimeZoneOps, 0, e2, toZonedDateTimeSlots(t2), n2))), + since: (e2, t2, n2) => ar(Vt(Dn(tr, createTimeZoneOps, 1, e2, toZonedDateTimeSlots(t2), n2))), + round: (e2, t2) => dr(Pn(createTimeZoneOps, e2, t2)), + startOfDay: (e2) => dr(Cn(createTimeZoneOps, e2)), + equals: (e2, t2) => gn(e2, toZonedDateTimeSlots(t2)), + toInstant: (e2) => Co(Zn(e2)), + toPlainDateTime: (e2) => No(ht(createTimeZoneOffsetOps, e2)), + toPlainDate: (e2) => Yo(Bt(createTimeZoneOffsetOps, e2)), + toPlainTime: (e2) => vo(Re(createTimeZoneOffsetOps, e2)), + toPlainYearMonth(e2) { + return jo(bn(Ho, e2, this)); + }, + toPlainMonthDay(e2) { + return To(Fn(Qo, e2, this)); + }, + toLocaleString(e2, t2, n2 = {}) { + const [o2, r2] = Wn(t2, n2, e2); + return o2.format(r2); + }, + toString: (e2, t2) => In(createTimeZoneOffsetOps, e2, t2), + toJSON: (e2) => In(createTimeZoneOffsetOps, e2), + valueOf: neverValueOf +}, { + from: (e2, t2) => dr(toZonedDateTimeSlots(e2, t2)), + compare: (e2, t2) => yn(toZonedDateTimeSlots(e2), toZonedDateTimeSlots(t2)) +}); +var fr = /* @__PURE__ */ Object.defineProperties({}, { + ...h("Temporal.Now"), + ...p({ + timeZoneId: () => Nn(), + instant: () => Co(_(Bn())), + zonedDateTime: (e2, t2 = Nn()) => dr(Yn(Bn(), refineTimeZoneSlot(t2), refineCalendarSlot(e2))), + zonedDateTimeISO: (e2 = Nn()) => dr(Yn(Bn(), refineTimeZoneSlot(e2), X)), + plainDateTime: (e2, t2 = Nn()) => No(ee(An(createTimeZoneOffsetOps(refineTimeZoneSlot(t2))), refineCalendarSlot(e2))), + plainDateTimeISO: (e2 = Nn()) => No(ee(An(createTimeZoneOffsetOps(refineTimeZoneSlot(e2))), X)), + plainDate: (e2, t2 = Nn()) => Yo(v(An(createTimeZoneOffsetOps(refineTimeZoneSlot(t2))), refineCalendarSlot(e2))), + plainDateISO: (e2 = Nn()) => Yo(v(An(createTimeZoneOffsetOps(refineTimeZoneSlot(e2))), X)), + plainTimeISO: (e2 = Nn()) => vo(Ge(An(createTimeZoneOffsetOps(refineTimeZoneSlot(e2))))) + }) +}); +var mr = /* @__PURE__ */ Object.defineProperties({}, { + ...h("Temporal"), + ...p({ + PlainYearMonth: wo, + PlainMonthDay: Oo, + PlainDate: Bo, + PlainTime: Io, + PlainDateTime: yo, + ZonedDateTime: ur, + Instant: Po, + Calendar: lr, + TimeZone: Zo, + Duration: rr, + Now: fr + }) +}); +var Sr = /* @__PURE__ */ createDateTimeFormatClass(); +var Or = /* @__PURE__ */ new WeakMap(); +var Tr = /* @__PURE__ */ Object.defineProperties(Object.create(Intl), p({ + DateTimeFormat: Sr +})); + +// node_modules/.pnpm/zod@3.23.8/node_modules/zod/lib/index.mjs +var util; +(function(util2) { + util2.assertEqual = (val) => val; + function assertIs(_arg) { + } + util2.assertIs = assertIs; + function assertNever(_x) { + throw new Error(); + } + util2.assertNever = assertNever; + util2.arrayToEnum = (items) => { + const obj = {}; + for (const item of items) { + obj[item] = item; + } + return obj; + }; + util2.getValidEnumValues = (obj) => { + const validKeys = util2.objectKeys(obj).filter((k2) => typeof obj[obj[k2]] !== "number"); + const filtered = {}; + for (const k2 of validKeys) { + filtered[k2] = obj[k2]; + } + return util2.objectValues(filtered); + }; + util2.objectValues = (obj) => { + return util2.objectKeys(obj).map(function(e2) { + return obj[e2]; + }); + }; + util2.objectKeys = typeof Object.keys === "function" ? (obj) => Object.keys(obj) : (object) => { + const keys = []; + for (const key in object) { + if (Object.prototype.hasOwnProperty.call(object, key)) { + keys.push(key); + } + } + return keys; + }; + util2.find = (arr, checker) => { + for (const item of arr) { + if (checker(item)) + return item; + } + return void 0; + }; + util2.isInteger = typeof Number.isInteger === "function" ? (val) => Number.isInteger(val) : (val) => typeof val === "number" && isFinite(val) && Math.floor(val) === val; + function joinValues(array, separator = " | ") { + return array.map((val) => typeof val === "string" ? `'${val}'` : val).join(separator); + } + util2.joinValues = joinValues; + util2.jsonStringifyReplacer = (_2, value) => { + if (typeof value === "bigint") { + return value.toString(); + } + return value; + }; +})(util || (util = {})); +var objectUtil; +(function(objectUtil2) { + objectUtil2.mergeShapes = (first, second) => { + return { + ...first, + ...second + // second overwrites first + }; + }; +})(objectUtil || (objectUtil = {})); +var ZodParsedType = util.arrayToEnum([ + "string", + "nan", + "number", + "integer", + "float", + "boolean", + "date", + "bigint", + "symbol", + "function", + "undefined", + "null", + "array", + "object", + "unknown", + "promise", + "void", + "never", + "map", + "set" +]); +var getParsedType = (data) => { + const t2 = typeof data; + switch (t2) { + case "undefined": + return ZodParsedType.undefined; + case "string": + return ZodParsedType.string; + case "number": + return isNaN(data) ? ZodParsedType.nan : ZodParsedType.number; + case "boolean": + return ZodParsedType.boolean; + case "function": + return ZodParsedType.function; + case "bigint": + return ZodParsedType.bigint; + case "symbol": + return ZodParsedType.symbol; + case "object": + if (Array.isArray(data)) { + return ZodParsedType.array; + } + if (data === null) { + return ZodParsedType.null; + } + if (data.then && typeof data.then === "function" && data.catch && typeof data.catch === "function") { + return ZodParsedType.promise; + } + if (typeof Map !== "undefined" && data instanceof Map) { + return ZodParsedType.map; + } + if (typeof Set !== "undefined" && data instanceof Set) { + return ZodParsedType.set; + } + if (typeof Date !== "undefined" && data instanceof Date) { + return ZodParsedType.date; + } + return ZodParsedType.object; + default: + return ZodParsedType.unknown; + } +}; +var ZodIssueCode = util.arrayToEnum([ + "invalid_type", + "invalid_literal", + "custom", + "invalid_union", + "invalid_union_discriminator", + "invalid_enum_value", + "unrecognized_keys", + "invalid_arguments", + "invalid_return_type", + "invalid_date", + "invalid_string", + "too_small", + "too_big", + "invalid_intersection_types", + "not_multiple_of", + "not_finite" +]); +var quotelessJson = (obj) => { + const json = JSON.stringify(obj, null, 2); + return json.replace(/"([^"]+)":/g, "$1:"); +}; +var ZodError = class _ZodError extends Error { + constructor(issues) { + super(); + this.issues = []; + this.addIssue = (sub) => { + this.issues = [...this.issues, sub]; + }; + this.addIssues = (subs = []) => { + this.issues = [...this.issues, ...subs]; + }; + const actualProto = new.target.prototype; + if (Object.setPrototypeOf) { + Object.setPrototypeOf(this, actualProto); + } else { + this.__proto__ = actualProto; + } + this.name = "ZodError"; + this.issues = issues; + } + get errors() { + return this.issues; + } + format(_mapper) { + const mapper = _mapper || function(issue) { + return issue.message; + }; + const fieldErrors = { _errors: [] }; + const processError = (error2) => { + for (const issue of error2.issues) { + if (issue.code === "invalid_union") { + issue.unionErrors.map(processError); + } else if (issue.code === "invalid_return_type") { + processError(issue.returnTypeError); + } else if (issue.code === "invalid_arguments") { + processError(issue.argumentsError); + } else if (issue.path.length === 0) { + fieldErrors._errors.push(mapper(issue)); + } else { + let curr = fieldErrors; + let i2 = 0; + while (i2 < issue.path.length) { + const el = issue.path[i2]; + const terminal = i2 === issue.path.length - 1; + if (!terminal) { + curr[el] = curr[el] || { _errors: [] }; + } else { + curr[el] = curr[el] || { _errors: [] }; + curr[el]._errors.push(mapper(issue)); + } + curr = curr[el]; + i2++; + } + } + } + }; + processError(this); + return fieldErrors; + } + static assert(value) { + if (!(value instanceof _ZodError)) { + throw new Error(`Not a ZodError: ${value}`); + } + } + toString() { + return this.message; + } + get message() { + return JSON.stringify(this.issues, util.jsonStringifyReplacer, 2); + } + get isEmpty() { + return this.issues.length === 0; + } + flatten(mapper = (issue) => issue.message) { + const fieldErrors = {}; + const formErrors = []; + for (const sub of this.issues) { + if (sub.path.length > 0) { + fieldErrors[sub.path[0]] = fieldErrors[sub.path[0]] || []; + fieldErrors[sub.path[0]].push(mapper(sub)); + } else { formErrors.push(mapper(sub)); } } @@ -23601,15 +27484,15 @@ var makeIssue = (params) => { message: issueData.message }; } - let errorMessage2 = ""; - const maps = errorMaps.filter((m) => !!m).slice().reverse(); + let errorMessage = ""; + const maps = errorMaps.filter((m2) => !!m2).slice().reverse(); for (const map of maps) { - errorMessage2 = map(fullIssue, { data, defaultError: errorMessage2 }).message; + errorMessage = map(fullIssue, { data, defaultError: errorMessage }).message; } return { ...issueData, path: fullPath, - message: errorMessage2 + message: errorMessage }; }; var EMPTY_PATH = []; @@ -23625,7 +27508,7 @@ function addIssueToContext(ctx, issueData) { overrideMap, overrideMap === errorMap ? void 0 : errorMap // then global default map - ].filter((x) => !!x) + ].filter((x2) => !!x2) }); ctx.common.issues.push(issue); } @@ -23643,12 +27526,12 @@ var ParseStatus = class _ParseStatus { } static mergeArray(status, results) { const arrayValue = []; - for (const s of results) { - if (s.status === "aborted") + for (const s2 of results) { + if (s2.status === "aborted") return INVALID; - if (s.status === "dirty") + if (s2.status === "dirty") status.dirty(); - arrayValue.push(s.value); + arrayValue.push(s2.value); } return { status: status.value, value: arrayValue }; } @@ -23688,20 +27571,20 @@ var INVALID = Object.freeze({ }); var DIRTY = (value) => ({ status: "dirty", value }); var OK = (value) => ({ status: "valid", value }); -var isAborted = (x) => x.status === "aborted"; -var isDirty = (x) => x.status === "dirty"; -var isValid = (x) => x.status === "valid"; -var isAsync = (x) => typeof Promise !== "undefined" && x instanceof Promise; -function __classPrivateFieldGet(receiver, state, kind, f) { - if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter"); - if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it"); - return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver); -} -function __classPrivateFieldSet(receiver, state, value, kind, f) { +var isAborted = (x2) => x2.status === "aborted"; +var isDirty = (x2) => x2.status === "dirty"; +var isValid = (x2) => x2.status === "valid"; +var isAsync = (x2) => typeof Promise !== "undefined" && x2 instanceof Promise; +function __classPrivateFieldGet(receiver, state, kind, f2) { + if (kind === "a" && !f2) throw new TypeError("Private accessor was defined without a getter"); + if (typeof state === "function" ? receiver !== state || !f2 : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it"); + return kind === "m" ? f2 : kind === "a" ? f2.call(receiver) : f2 ? f2.value : state.get(receiver); +} +function __classPrivateFieldSet(receiver, state, value, kind, f2) { if (kind === "m") throw new TypeError("Private method is not writable"); - if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter"); - if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it"); - return kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value), value; + if (kind === "a" && !f2) throw new TypeError("Private accessor was defined without a setter"); + if (typeof state === "function" ? receiver !== state || !f2 : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it"); + return kind === "a" ? f2.call(receiver, value) : f2 ? f2.value = value : state.set(receiver, value), value; } var errorUtil; (function(errorUtil2) { @@ -23758,13 +27641,13 @@ function processCreateParams(params) { if (errorMap2) return { errorMap: errorMap2, description }; const customMap = (iss, ctx) => { - var _a, _b; + var _a2, _b; const { message } = params; if (iss.code === "invalid_enum_value") { return { message: message !== null && message !== void 0 ? message : ctx.defaultError }; } if (typeof ctx.data === "undefined") { - return { message: (_a = message !== null && message !== void 0 ? message : required_error) !== null && _a !== void 0 ? _a : ctx.defaultError }; + return { message: (_a2 = message !== null && message !== void 0 ? message : required_error) !== null && _a2 !== void 0 ? _a2 : ctx.defaultError }; } if (iss.code !== "invalid_type") return { message: ctx.defaultError }; @@ -23848,11 +27731,11 @@ var ZodType = class { throw result.error; } safeParse(data, params) { - var _a; + var _a2; const ctx = { common: { issues: [], - async: (_a = params === null || params === void 0 ? void 0 : params.async) !== null && _a !== void 0 ? _a : false, + async: (_a2 = params === null || params === void 0 ? void 0 : params.async) !== null && _a2 !== void 0 ? _a2 : false, contextualErrorMap: params === null || params === void 0 ? void 0 : params.errorMap }, path: (params === null || params === void 0 ? void 0 : params.path) || [], @@ -24205,7 +28088,7 @@ var ZodString = class _ZodString extends ZodType { } else if (check.kind === "url") { try { new URL(input.data); - } catch (_a) { + } catch (_a2) { ctx = this._getOrReturnCtx(input, ctx); addIssueToContext(ctx, { validation: "url", @@ -24375,7 +28258,7 @@ var ZodString = class _ZodString extends ZodType { return this._addCheck({ kind: "ip", ...errorUtil.errToObj(options) }); } datetime(options) { - var _a, _b; + var _a2, _b; if (typeof options === "string") { return this._addCheck({ kind: "datetime", @@ -24388,7 +28271,7 @@ var ZodString = class _ZodString extends ZodType { return this._addCheck({ kind: "datetime", precision: typeof (options === null || options === void 0 ? void 0 : options.precision) === "undefined" ? null : options === null || options === void 0 ? void 0 : options.precision, - offset: (_a = options === null || options === void 0 ? void 0 : options.offset) !== null && _a !== void 0 ? _a : false, + offset: (_a2 = options === null || options === void 0 ? void 0 : options.offset) !== null && _a2 !== void 0 ? _a2 : false, local: (_b = options === null || options === void 0 ? void 0 : options.local) !== null && _b !== void 0 ? _b : false, ...errorUtil.errToObj(options === null || options === void 0 ? void 0 : options.message) }); @@ -24552,11 +28435,11 @@ var ZodString = class _ZodString extends ZodType { } }; ZodString.create = (params) => { - var _a; + var _a2; return new ZodString({ checks: [], typeName: ZodFirstPartyTypeKind.ZodString, - coerce: (_a = params === null || params === void 0 ? void 0 : params.coerce) !== null && _a !== void 0 ? _a : false, + coerce: (_a2 = params === null || params === void 0 ? void 0 : params.coerce) !== null && _a2 !== void 0 ? _a2 : false, ...processCreateParams(params) }); }; @@ -24957,11 +28840,11 @@ var ZodBigInt = class _ZodBigInt extends ZodType { } }; ZodBigInt.create = (params) => { - var _a; + var _a2; return new ZodBigInt({ checks: [], typeName: ZodFirstPartyTypeKind.ZodBigInt, - coerce: (_a = params === null || params === void 0 ? void 0 : params.coerce) !== null && _a !== void 0 ? _a : false, + coerce: (_a2 = params === null || params === void 0 ? void 0 : params.coerce) !== null && _a2 !== void 0 ? _a2 : false, ...processCreateParams(params) }); }; @@ -25285,14 +29168,14 @@ var ZodArray = class _ZodArray extends ZodType { } } if (ctx.common.async) { - return Promise.all([...ctx.data].map((item, i) => { - return def.type._parseAsync(new ParseInputLazyPath(ctx, item, ctx.path, i)); + return Promise.all([...ctx.data].map((item, i2) => { + return def.type._parseAsync(new ParseInputLazyPath(ctx, item, ctx.path, i2)); })).then((result2) => { return ParseStatus.mergeArray(status, result2); }); } - const result = [...ctx.data].map((item, i) => { - return def.type._parseSync(new ParseInputLazyPath(ctx, item, ctx.path, i)); + const result = [...ctx.data].map((item, i2) => { + return def.type._parseSync(new ParseInputLazyPath(ctx, item, ctx.path, i2)); }); return ParseStatus.mergeArray(status, result); } @@ -25467,8 +29350,8 @@ var ZodObject = class _ZodObject extends ZodType { unknownKeys: "strict", ...message !== void 0 ? { errorMap: (issue, ctx) => { - var _a, _b, _c, _d; - const defaultError = (_c = (_b = (_a = this._def).errorMap) === null || _b === void 0 ? void 0 : _b.call(_a, issue, ctx).message) !== null && _c !== void 0 ? _c : ctx.defaultError; + var _a2, _b, _c, _d; + const defaultError = (_c = (_b = (_a2 = this._def).errorMap) === null || _b === void 0 ? void 0 : _b.call(_a2, issue, ctx).message) !== null && _c !== void 0 ? _c : ctx.defaultError; if (issue.code === "unrecognized_keys") return { message: (_d = errorUtil.errToObj(message).message) !== null && _d !== void 0 ? _d : defaultError @@ -25893,17 +29776,17 @@ var ZodDiscriminatedUnion = class _ZodDiscriminatedUnion extends ZodType { }); } }; -function mergeValues(a, b) { - const aType = getParsedType(a); - const bType = getParsedType(b); - if (a === b) { - return { valid: true, data: a }; +function mergeValues(a2, b2) { + const aType = getParsedType(a2); + const bType = getParsedType(b2); + if (a2 === b2) { + return { valid: true, data: a2 }; } else if (aType === ZodParsedType.object && bType === ZodParsedType.object) { - const bKeys = util.objectKeys(b); - const sharedKeys = util.objectKeys(a).filter((key) => bKeys.indexOf(key) !== -1); - const newObj = { ...a, ...b }; + const bKeys = util.objectKeys(b2); + const sharedKeys = util.objectKeys(a2).filter((key) => bKeys.indexOf(key) !== -1); + const newObj = { ...a2, ...b2 }; for (const key of sharedKeys) { - const sharedValue = mergeValues(a[key], b[key]); + const sharedValue = mergeValues(a2[key], b2[key]); if (!sharedValue.valid) { return { valid: false }; } @@ -25911,13 +29794,13 @@ function mergeValues(a, b) { } return { valid: true, data: newObj }; } else if (aType === ZodParsedType.array && bType === ZodParsedType.array) { - if (a.length !== b.length) { + if (a2.length !== b2.length) { return { valid: false }; } const newArray = []; - for (let index = 0; index < a.length; index++) { - const itemA = a[index]; - const itemB = b[index]; + for (let index = 0; index < a2.length; index++) { + const itemA = a2[index]; + const itemB = b2[index]; const sharedValue = mergeValues(itemA, itemB); if (!sharedValue.valid) { return { valid: false }; @@ -25925,8 +29808,8 @@ function mergeValues(a, b) { newArray.push(sharedValue.data); } return { valid: true, data: newArray }; - } else if (aType === ZodParsedType.date && bType === ZodParsedType.date && +a === +b) { - return { valid: true, data: a }; + } else if (aType === ZodParsedType.date && bType === ZodParsedType.date && +a2 === +b2) { + return { valid: true, data: a2 }; } else { return { valid: false }; } @@ -26021,7 +29904,7 @@ var ZodTuple = class _ZodTuple extends ZodType { if (!schema) return null; return schema._parse(new ParseInputLazyPath(ctx, item, ctx.path, itemIndex)); - }).filter((x) => !!x); + }).filter((x2) => !!x2); if (ctx.common.async) { return Promise.all(items).then((results) => { return ParseStatus.mergeArray(status, results); @@ -26220,7 +30103,7 @@ var ZodSet = class _ZodSet extends ZodType { } return { status: status.value, value: parsedSet }; } - const elements = [...ctx.data.values()].map((item, i) => valueType._parse(new ParseInputLazyPath(ctx, item, ctx.path, i))); + const elements = [...ctx.data.values()].map((item, i2) => valueType._parse(new ParseInputLazyPath(ctx, item, ctx.path, i2))); if (ctx.common.async) { return Promise.all(elements).then((elements2) => finalizeSet(elements2)); } else { @@ -26279,7 +30162,7 @@ var ZodFunction = class _ZodFunction extends ZodType { ctx.schemaErrorMap, getErrorMap(), errorMap - ].filter((x) => !!x), + ].filter((x2) => !!x2), issueData: { code: ZodIssueCode.invalid_arguments, argumentsError: error2 @@ -26295,7 +30178,7 @@ var ZodFunction = class _ZodFunction extends ZodType { ctx.schemaErrorMap, getErrorMap(), errorMap - ].filter((x) => !!x), + ].filter((x2) => !!x2), issueData: { code: ZodIssueCode.invalid_return_type, returnTypeError: error2 @@ -26303,31 +30186,31 @@ var ZodFunction = class _ZodFunction extends ZodType { }); } const params = { errorMap: ctx.common.contextualErrorMap }; - const fn = ctx.data; + const fn2 = ctx.data; if (this._def.returns instanceof ZodPromise) { - const me = this; + const me2 = this; return OK(async function(...args) { const error2 = new ZodError([]); - const parsedArgs = await me._def.args.parseAsync(args, params).catch((e) => { - error2.addIssue(makeArgsIssue(args, e)); + const parsedArgs = await me2._def.args.parseAsync(args, params).catch((e2) => { + error2.addIssue(makeArgsIssue(args, e2)); throw error2; }); - const result = await Reflect.apply(fn, this, parsedArgs); - const parsedReturns = await me._def.returns._def.type.parseAsync(result, params).catch((e) => { - error2.addIssue(makeReturnsIssue(result, e)); + const result = await Reflect.apply(fn2, this, parsedArgs); + const parsedReturns = await me2._def.returns._def.type.parseAsync(result, params).catch((e2) => { + error2.addIssue(makeReturnsIssue(result, e2)); throw error2; }); return parsedReturns; }); } else { - const me = this; + const me2 = this; return OK(function(...args) { - const parsedArgs = me._def.args.safeParse(args, params); + const parsedArgs = me2._def.args.safeParse(args, params); if (!parsedArgs.success) { throw new ZodError([makeArgsIssue(args, parsedArgs.error)]); } - const result = Reflect.apply(fn, this, parsedArgs.data); - const parsedReturns = me._def.returns.safeParse(result, params); + const result = Reflect.apply(fn2, this, parsedArgs.data); + const parsedReturns = me2._def.returns.safeParse(result, params); if (!parsedReturns.success) { throw new ZodError([makeReturnsIssue(result, parsedReturns.error)]); } @@ -26896,10 +30779,10 @@ var ZodPipeline = class _ZodPipeline extends ZodType { } } } - static create(a, b) { + static create(a2, b2) { return new _ZodPipeline({ - in: a, - out: b, + in: a2, + out: b2, typeName: ZodFirstPartyTypeKind.ZodPipeline }); } @@ -26929,12 +30812,12 @@ ZodReadonly.create = (type, params) => { function custom(check, params = {}, fatal) { if (check) return ZodAny.create().superRefine((data, ctx) => { - var _a, _b; + var _a2, _b; if (!check(data)) { - const p = typeof params === "function" ? params(data) : typeof params === "string" ? { message: params } : params; - const _fatal = (_b = (_a = p.fatal) !== null && _a !== void 0 ? _a : fatal) !== null && _b !== void 0 ? _b : true; - const p2 = typeof p === "string" ? { message: p } : p; - ctx.addIssue({ code: "custom", ...p2, fatal: _fatal }); + const p2 = typeof params === "function" ? params(data) : typeof params === "string" ? { message: params } : params; + const _fatal = (_b = (_a2 = p2.fatal) !== null && _a2 !== void 0 ? _a2 : fatal) !== null && _b !== void 0 ? _b : true; + const p22 = typeof p2 === "string" ? { message: p2 } : p2; + ctx.addIssue({ code: "custom", ...p22, fatal: _fatal }); } }); return ZodAny.create(); @@ -27032,7 +30915,7 @@ var coerce = { date: (arg) => ZodDate.create({ ...arg, coerce: true }) }; var NEVER = INVALID; -var z = /* @__PURE__ */ Object.freeze({ +var z2 = /* @__PURE__ */ Object.freeze({ __proto__: null, defaultErrorMap: errorMap, setErrorMap, @@ -27150,30 +31033,60 @@ var z = /* @__PURE__ */ Object.freeze({ }); // src/schema.ts -var FilterCondition = z.object({ - workflowFile: z.string().endsWith(".yml"), - jobName: z.string().min(1).optional() +var MyDurationLike = z2.object({ + years: z2.number().optional(), + months: z2.number().optional(), + weeks: z2.number().optional(), + days: z2.number().optional(), + hours: z2.number().optional(), + minutes: z2.number().optional(), + seconds: z2.number().optional(), + milliseconds: z2.number().optional(), + microseconds: z2.number().optional(), + nanoseconds: z2.number().optional() +}).strict().readonly(); +var Durationable = z2.union([z2.string().duration(), MyDurationLike]); +function isDurationLike(my) { + for (const [_2, value] of Object.entries(my)) { + if (value === void 0) { + return false; + } + } + return true; +} +function getDuration(durationable) { + if (typeof durationable === "string" || isDurationLike(durationable)) { + return mr.Duration.from(durationable); + } + throw new Error("unexpected value is specified in durations"); +} +var FilterCondition = z2.object({ + workflowFile: z2.string().endsWith(".yml"), + jobName: z2.string().min(1).optional() }); var SkipFilterCondition = FilterCondition.readonly(); var WaitFilterCondition = FilterCondition.extend( { - optional: z.boolean().optional().default(false).readonly(), + optional: z2.boolean().optional().default(false).readonly(), // - Intentionally avoided to use enum for now. Only GitHub knows whole eventNames and the adding plans // - Intentionally omitted in skip-list, let me know if you have the use-case - eventName: z.string().min(1).optional() + eventName: z2.string().min(1).optional(), + startupGracePeriod: Durationable.default({ seconds: 10 }) } ).readonly(); -var retryMethods = z.enum(["exponential_backoff", "equal_intervals"]); -var Options = z.object({ - waitList: z.array(WaitFilterCondition).readonly(), - skipList: z.array(SkipFilterCondition).readonly(), - waitSecondsBeforeFirstPolling: z.number().min(0), - minIntervalSeconds: z.number().min(1), +var WaitList = z2.array(WaitFilterCondition).readonly(); +var SkipList = z2.array(SkipFilterCondition).readonly(); +var retryMethods = z2.enum(["exponential_backoff", "equal_intervals"]); +var Options = z2.object({ + waitList: WaitList, + skipList: SkipList, + waitSecondsBeforeFirstPolling: z2.number().min(0), + minIntervalSeconds: z2.number().min(1), retryMethod: retryMethods, - attemptLimits: z.number().min(1), - isEarlyExit: z.boolean(), - shouldSkipSameWorkflow: z.boolean(), - isDryRun: z.boolean() + attemptLimits: z2.number().min(1), + isEarlyExit: z2.boolean(), + shouldSkipSameWorkflow: z2.boolean(), + isDryRun: z2.boolean() }).readonly().refine( ({ waitList, skipList }) => !(waitList.length > 0 && skipList.length > 0), { message: "Do not specify both wait-list and skip-list", path: ["waitList", "skipList"] } @@ -27189,15 +31102,15 @@ function parseInput() { sha, eventName } = import_github.context; - const pr = payload.pull_request; + const pr2 = payload.pull_request; let commitSha = sha; - if (pr) { - const { head: { sha: prSha = sha } } = pr; + if (pr2) { + const { head: { sha: prSha = sha } } = pr2; if (typeof prSha === "string") { commitSha = prSha; } else { if ((0, import_core.isDebug)()) { - (0, import_core.debug)(JSON.stringify(pr, null, 2)); + (0, import_core.debug)(JSON.stringify({ label: "PullRequestContext", pr: pr2 }, null, 2)); } (0, import_core.error)("github context has unexpected format: missing context.payload.pull_request.head.sha"); } @@ -27451,7 +31364,7 @@ function extractUrlVariableNames(url) { if (!matches) { return []; } - return matches.map(removeNonChars).reduce((a, b) => a.concat(b), []); + return matches.map(removeNonChars).reduce((a2, b2) => a2.concat(b2), []); } function omit(object, keysToOmit) { const result = { __proto__: null }; @@ -27471,8 +31384,8 @@ function encodeReserved(str) { }).join(""); } function encodeUnreserved(str) { - return encodeURIComponent(str).replace(/[!'()*]/g, function(c) { - return "%" + c.charCodeAt(0).toString(16).toUpperCase(); + return encodeURIComponent(str).replace(/[!'()*]/g, function(c2) { + return "%" + c2.charCodeAt(0).toString(16).toUpperCase(); }); } function encodeValue(operator, value, key) { @@ -27509,9 +31422,9 @@ function getValues(context2, operator, key, modifier) { ); }); } else { - Object.keys(value).forEach(function(k) { - if (isDefined(value[k])) { - result.push(encodeValue(operator, value[k], k)); + Object.keys(value).forEach(function(k2) { + if (isDefined(value[k2])) { + result.push(encodeValue(operator, value[k2], k2)); } }); } @@ -27522,10 +31435,10 @@ function getValues(context2, operator, key, modifier) { tmp.push(encodeValue(operator, value2)); }); } else { - Object.keys(value).forEach(function(k) { - if (isDefined(value[k])) { - tmp.push(encodeUnreserved(k)); - tmp.push(encodeValue(operator, value[k].toString())); + Object.keys(value).forEach(function(k2) { + if (isDefined(value[k2])) { + tmp.push(encodeUnreserved(k2)); + tmp.push(encodeValue(operator, value[k2].toString())); } }); } @@ -27558,7 +31471,7 @@ function expand(template, context2) { var operators = ["+", "#", ".", "/", ";", "?", "&"]; template = template.replace( /\{([^\{\}]+)\}|([^\{\}]+)/g, - function(_, expression, literal) { + function(_2, expression, literal) { if (expression) { let operator = ""; const values = []; @@ -27898,7 +31811,7 @@ var request = withDefaults2(endpoint, { var VERSION3 = "0.0.0-development"; function _buildMessageForResponseErrors(data) { return `Request failed due to following response errors: -` + data.errors.map((e) => ` - ${e.message}`).join("\n"); +` + data.errors.map((e2) => ` - ${e2.message}`).join("\n"); } var GraphqlResponseError = class extends Error { constructor(request2, headers, response) { @@ -28162,8 +32075,8 @@ var Octokit = class { this.auth = auth2; } const classConstructor = this.constructor; - for (let i = 0; i < classConstructor.plugins.length; ++i) { - Object.assign(this, classConstructor.plugins[i](this, options)); + for (let i2 = 0; i2 < classConstructor.plugins.length; ++i2) { + Object.assign(this, classConstructor.plugins[i2](this, options)); } } // assigned during constructor @@ -28418,11 +32331,32 @@ async function fetchChecks(token, trigger) { // src/report.ts import { join, relative } from "path"; + +// src/util.ts +function groupBy(items, callback) { + const map = /* @__PURE__ */ new Map(); + for (const item of items) { + const key = callback(item); + if (map.has(key)) { + const itemsForKey = map.get(key); + if (itemsForKey) { + itemsForKey.push(item); + } + } else { + map.set(key, [item]); + } + } + return map; +} + +// src/report.ts function summarize(check, trigger) { const { checkRun: run2, checkSuite: suite, workflow, workflowRun } = check; + const acceptable = run2.conclusion == "SUCCESS" || run2.conclusion === "SKIPPED" || run2.conclusion === "NEUTRAL" && (suite.conclusion === "SUCCESS" || suite.conclusion === "SKIPPED"); return { - acceptable: run2.conclusion == "SUCCESS" || run2.conclusion === "SKIPPED" || run2.conclusion === "NEUTRAL" && (suite.conclusion === "SUCCESS" || suite.conclusion === "SKIPPED"), - workflowPath: relative(`/${trigger.owner}/${trigger.repo}/actions/workflows/`, workflow.resourcePath), + acceptable, + severity: acceptable ? run2.status === "COMPLETED" ? "notice" : "warning" : "error", + workflowBasename: relative(`/${trigger.owner}/${trigger.repo}/actions/workflows/`, workflow.resourcePath), // Another file can set same workflow name. So you should filter workfrows from runId or the filename isSameWorkflow: suite.workflowRun?.databaseId === trigger.runId, eventName: workflowRun.event, @@ -28435,42 +32369,105 @@ function summarize(check, trigger) { runConclusion: run2.conclusion }; } -function generateReport(checks, trigger, { waitList, skipList, shouldSkipSameWorkflow }) { - const summaries = checks.map((check) => summarize(check, trigger)).toSorted( - (a, b) => join(a.workflowPath, a.jobName).localeCompare(join(b.workflowPath, b.jobName)) +function getSummaries(checks, trigger) { + return checks.map((check) => summarize(check, trigger)).toSorted( + (a2, b2) => join(a2.workflowBasename, a2.jobName).localeCompare(join(b2.workflowBasename, b2.jobName)) + ); +} +function seekWaitList(summaries, waitList, elapsed) { + const seeker = waitList.map((condition) => ({ ...condition, found: false })); + const filtered = summaries.filter( + (summary) => seeker.some((target) => { + const isMatchPath = target.workflowFile === summary.workflowBasename && (target.jobName ? target.jobName === summary.jobName : true); + const isMatchEvent = target.eventName ? target.eventName === summary.eventName : true; + if (isMatchPath && isMatchEvent) { + target.found = true; + return true; + } else { + return false; + } + }) ); + const unmatches = seeker.filter((result) => !result.found && !result.optional); + const unstarted = unmatches.filter( + (result) => mr.Duration.compare(elapsed, getDuration(result.startupGracePeriod)) === -1 + ); + return { filtered, unmatches, unstarted }; +} +function judge(summaries) { + const summariesByCompleted = groupBy(summaries, (summary) => summary.runStatus === "COMPLETED"); + const completed = summariesByCompleted.get(true) || []; + const incompleted = summariesByCompleted.get(false) || []; + const done = incompleted.length === 0; + const failures = completed.filter((summary) => !summary.acceptable); + const ok = failures.length === 0; + const logs = []; + if (!ok) { + logs.push({ + severity: "error", + message: "some jobs failed", + resource: failures + }); + } + if (!done) { + logs.push({ + severity: "info", + message: "some jobs still in progress", + resource: incompleted + }); + } + return { + done, + ok, + logs + }; +} +function generateReport(summaries, trigger, elapsed, { waitList, skipList, shouldSkipSameWorkflow }) { const others = summaries.filter((summary) => !(summary.isSameWorkflow && trigger.jobName === summary.jobName)); - let filtered = others.filter((summary) => !(summary.isSameWorkflow && shouldSkipSameWorkflow)); + const targets = others.filter((summary) => !(summary.isSameWorkflow && shouldSkipSameWorkflow)); if (waitList.length > 0) { - const seeker = waitList.map((condition) => ({ ...condition, found: false })); - filtered = filtered.filter( - (summary) => seeker.some((target) => { - const isMatchPath = target.workflowFile === summary.workflowPath && (target.jobName ? target.jobName === summary.jobName : true); - const isMatchEvent = target.eventName ? target.eventName === summary.eventName : true; - if (isMatchPath && isMatchEvent) { - target.found = true; - return true; - } else { - return false; - } - }) + const { filtered, unmatches, unstarted } = seekWaitList(targets, waitList, elapsed); + const { ok, done, logs } = judge(filtered); + const defaultReport = Object.freeze( + { + ok, + done, + summaries: filtered, + logs + } ); - const unmatches = seeker.filter((result) => !result.found && !result.optional); - if (unmatches.length > 0) { - throw new Error(`Failed to meet some runs on your specified wait-list: ${JSON.stringify(unmatches)}`); + if (unstarted.length > 0) { + return { + ...defaultReport, + done: false, + logs: [...logs, { + severity: "warning", + message: "Some expected jobs were not started", + resource: unstarted + }] + }; + } else if (unmatches.length > 0) { + return { + ...defaultReport, + ok: false, + logs: [...logs, { + severity: "error", + message: "Failed to meet some runs on your specified wait-list", + resource: unmatches + }] + }; } + return defaultReport; } if (skipList.length > 0) { - filtered = filtered.filter( + const filtered = targets.filter( (summary) => !skipList.some( - (target) => target.workflowFile === summary.workflowPath && (target.jobName ? target.jobName === summary.jobName : true) + (target) => target.workflowFile === summary.workflowBasename && (target.jobName ? target.jobName === summary.jobName : true) ) ); + return { ...judge(filtered), summaries: filtered }; } - const completed = filtered.filter((summary) => summary.runStatus === "COMPLETED"); - const progress = completed.length === filtered.length ? "done" : "in_progress"; - const conclusion = completed.every((summary) => summary.acceptable) ? "acceptable" : "bad"; - return { progress, conclusion, summaries: filtered }; + return { ...judge(targets), summaries: targets }; } // src/wait.ts @@ -28514,15 +32511,34 @@ function getIdleMilliseconds(method, minIntervalSeconds, attempts) { } // src/main.ts -var errorMessage = (body) => `${ansi_styles_default.red.open}${body}${ansi_styles_default.red.close}`; -var succeededMessage = (body) => `${ansi_styles_default.green.open}${body}${ansi_styles_default.green.close}`; -var colorize = (body, ok) => ok ? succeededMessage(body) : errorMessage(body); +function colorize(severity, message) { + switch (severity) { + case "error": { + return `${ansi_styles_default.red.open}${message}${ansi_styles_default.red.close}`; + } + case "warning": { + return `${ansi_styles_default.yellow.open}${message}${ansi_styles_default.yellow.close}`; + } + case "notice": { + return `${ansi_styles_default.green.open}${message}${ansi_styles_default.green.close}`; + } + case "info": { + return message; + } + default: { + const _unexpectedSeverity = severity; + return message; + } + } +} async function run() { + const startedAt = performance.now(); (0, import_core3.startGroup)("Parameters"); const { trigger, options, githubToken } = parseInput(); (0, import_core3.info)(JSON.stringify( { trigger, + startedAt, options // Do NOT include secrets }, @@ -28538,7 +32554,7 @@ async function run() { for (; ; ) { attempts += 1; if (attempts > options.attemptLimits) { - (0, import_core3.setFailed)(errorMessage(`reached to given attempt limits "${options.attemptLimits}"`)); + (0, import_core3.setFailed)(colorize("error", `reached to given attempt limits "${options.attemptLimits}"`)); break; } if (attempts === 1) { @@ -28550,74 +32566,62 @@ async function run() { (0, import_core3.info)(`Wait ${readableDuration(msec)} before next polling to reduce API calls.`); await wait(msec); } - (0, import_core3.startGroup)(`Polling ${attempts}: ${(/* @__PURE__ */ new Date()).toISOString()}`); + const elapsed = mr.Duration.from({ milliseconds: Math.ceil(performance.now() - startedAt) }); + (0, import_core3.startGroup)(`Polling ${attempts}: ${(/* @__PURE__ */ new Date()).toISOString()}(${elapsed.toString()}) ~`); const checks = await fetchChecks(githubToken, trigger); if ((0, import_core3.isDebug)()) { - (0, import_core3.debug)(JSON.stringify(checks, null, 2)); + (0, import_core3.debug)(JSON.stringify({ label: "rawdata", checks, elapsed }, null, 2)); } const report = generateReport( - checks, + getSummaries(checks, trigger), trigger, + elapsed, options ); for (const summary of report.summaries) { const { - acceptable, - checkSuiteStatus, - checkSuiteConclusion, runStatus, runConclusion, jobName, - workflowPath, + workflowBasename, checkRunUrl, - eventName + eventName, + severity } = summary; const nullStr = "(null)"; (0, import_core3.info)( - `${workflowPath}(${colorize(`${jobName}`, acceptable)}): [suiteStatus: ${checkSuiteStatus}][suiteConclusion: ${checkSuiteConclusion ?? nullStr}][runStatus: ${runStatus}][runConclusion: ${runConclusion ?? nullStr}][eventName: ${eventName}][runURL: ${checkRunUrl}]` + `${workflowBasename}(${colorize(severity, jobName)}): [eventName: ${eventName}][runStatus: ${runStatus}][runConclusion: ${runConclusion ?? nullStr}][runURL: ${checkRunUrl}]` ); } if ((0, import_core3.isDebug)()) { - (0, import_core3.debug)(JSON.stringify(report, null, 2)); + (0, import_core3.debug)(JSON.stringify({ label: "filtered", report }, null, 2)); } - const { progress, conclusion } = report; - switch (progress) { - case "in_progress": { - if (conclusion === "bad" && options.isEarlyExit) { - shouldStop = true; - (0, import_core3.setFailed)(errorMessage("some jobs failed")); - } - (0, import_core3.info)("some jobs still in progress"); - break; - } - case "done": { - shouldStop = true; - switch (conclusion) { - case "acceptable": { - (0, import_core3.info)(succeededMessage("all jobs passed")); - break; - } - case "bad": { - (0, import_core3.setFailed)(errorMessage("some jobs failed")); - break; - } - default: { - const unexpectedConclusion = conclusion; - (0, import_core3.setFailed)(errorMessage(`got unexpected conclusion: ${unexpectedConclusion}`)); - break; - } - } - break; + const { ok, done, logs } = report; + for (const { severity, message, resource } of logs) { + (0, import_core3.info)(colorize(severity, message)); + if (severity != "info" && resource) { + (0, import_core3.info)(JSON.stringify(resource, null, 2)); } - default: { + } + if (done) { + shouldStop = true; + } + if (!ok) { + if (!done && !options.isEarlyExit) { + (0, import_core3.info)( + colorize("warning", "found bad conditions, but will continue rest pollings because of disabled early-exit") + ); + } else { shouldStop = true; - const unexpectedProgress = progress; - (0, import_core3.setFailed)(errorMessage(`got unexpected progress: ${unexpectedProgress}`)); - break; } } (0, import_core3.endGroup)(); if (shouldStop) { + if (ok) { + (0, import_core3.info)(colorize("notice", "all jobs passed")); + } else { + (0, import_core3.setFailed)(colorize("error", "failed to wait for job success")); + } break; } } diff --git a/package.json b/package.json index 6e2d0919..58319cb2 100644 --- a/package.json +++ b/package.json @@ -29,6 +29,7 @@ "@octokit/graphql-schema": "^15.18.0", "@octokit/plugin-paginate-graphql": "^5.2.2", "ansi-styles": "^6.2.1", + "temporal-polyfill": "^0.2.4", "zod": "^3.23.8" }, "devDependencies": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f6ff98f9..e7fa4a0b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -23,6 +23,9 @@ dependencies: ansi-styles: specifier: ^6.2.1 version: 6.2.1 + temporal-polyfill: + specifier: ^0.2.4 + version: 0.2.4 zod: specifier: ^3.23.8 version: 3.23.8 @@ -785,6 +788,16 @@ packages: resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} dev: true + /temporal-polyfill@0.2.4: + resolution: {integrity: sha512-WA5p0CjQTkMjF9m8sP4wSYgpqI8m2d4q7wPUyaJOWhy4bI9mReLb2yGvTV4qf/DPMTe6H6M/Dig5KmTMB7ev6Q==} + dependencies: + temporal-spec: 0.2.4 + dev: false + + /temporal-spec@0.2.4: + resolution: {integrity: sha512-lDMFv4nKQrSjlkHKAlHVqKrBG4DyFfa9F74cmBZ3Iy3ed8yvWnlWSIdi4IKfSqwmazAohBNwiN64qGx4y5Q3IQ==} + dev: false + /tslib@2.6.2: resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} dev: false diff --git a/snapshots/run-9281068681/1_wait-success.txt b/snapshots/run-9281068681/1_wait-success.txt new file mode 100644 index 00000000..13d568d2 --- /dev/null +++ b/snapshots/run-9281068681/1_wait-success.txt @@ -0,0 +1,14957 @@ +2024-05-29T06:06:34.7290434Z ##[debug]Starting: wait-success +2024-05-29T06:06:34.7315134Z ##[debug]Cleaning runner temp folder: /home/runner/work/_temp +2024-05-29T06:06:34.7566265Z ##[debug]Starting: Set up job +2024-05-29T06:06:34.7566957Z Current runner version: '2.316.1' +2024-05-29T06:06:34.7701725Z ##[group]Operating System +2024-05-29T06:06:34.7702303Z Ubuntu +2024-05-29T06:06:34.7702560Z 24.04 +2024-05-29T06:06:34.7702802Z LTS +2024-05-29T06:06:34.7703050Z ##[endgroup] +2024-05-29T06:06:34.7703354Z ##[group]Runner Image +2024-05-29T06:06:34.7703699Z Image: ubuntu-24.04 +2024-05-29T06:06:34.7704023Z Version: 20240516.4.0 +2024-05-29T06:06:34.7704949Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20240516.4/images/ubuntu/Ubuntu2404-Readme.md +2024-05-29T06:06:34.7706340Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20240516.4 +2024-05-29T06:06:34.7707121Z ##[endgroup] +2024-05-29T06:06:34.7707439Z ##[group]Runner Image Provisioner +2024-05-29T06:06:34.7707841Z 2.0.369.1 +2024-05-29T06:06:34.7708413Z ##[endgroup] +2024-05-29T06:06:34.7709071Z ##[group]GITHUB_TOKEN Permissions +2024-05-29T06:06:34.7710597Z Metadata: read +2024-05-29T06:06:34.7710923Z ##[endgroup] +2024-05-29T06:06:34.7714410Z Secret source: Actions +2024-05-29T06:06:34.7714977Z ##[debug]Primary repository: kachick/wait-other-jobs +2024-05-29T06:06:34.7715535Z Prepare workflow directory +2024-05-29T06:06:34.7789810Z ##[debug]Creating pipeline directory: '/home/runner/work/wait-other-jobs' +2024-05-29T06:06:34.7792715Z ##[debug]Creating workspace directory: '/home/runner/work/wait-other-jobs/wait-other-jobs' +2024-05-29T06:06:34.7794100Z ##[debug]Update context data +2024-05-29T06:06:34.7797212Z ##[debug]Evaluating job-level environment variables +2024-05-29T06:06:34.8289594Z ##[debug]Evaluating job container +2024-05-29T06:06:34.8293002Z ##[debug]Evaluating job service containers +2024-05-29T06:06:34.8295161Z ##[debug]Evaluating job defaults +2024-05-29T06:06:34.8367845Z Prepare all required actions +2024-05-29T06:06:34.8532260Z Getting action download info +2024-05-29T06:06:34.9800628Z Download action repository 'actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633' (SHA:9bb56186c3b09b4f86b1c65136769dd318469633) +2024-05-29T06:06:35.0692438Z ##[debug]Copied action archive '/opt/actionarchivecache/actions_checkout/9bb56186c3b09b4f86b1c65136769dd318469633.tar.gz' to '/home/runner/work/_actions/_temp_286f87bc-446c-44c5-a399-ce7a13d26de5/f68fb476-b5aa-46bb-9f3e-088179310815.tar.gz' +2024-05-29T06:06:35.1395981Z ##[debug]Unwrap 'actions-checkout-9bb5618' to '/home/runner/work/_actions/actions/checkout/9bb56186c3b09b4f86b1c65136769dd318469633' +2024-05-29T06:06:35.1540671Z ##[debug]Archive '/home/runner/work/_actions/_temp_286f87bc-446c-44c5-a399-ce7a13d26de5/f68fb476-b5aa-46bb-9f3e-088179310815.tar.gz' has been unzipped into '/home/runner/work/_actions/actions/checkout/9bb56186c3b09b4f86b1c65136769dd318469633'. +2024-05-29T06:06:35.1706263Z ##[debug]action.yml for action: '/home/runner/work/_actions/actions/checkout/9bb56186c3b09b4f86b1c65136769dd318469633/action.yml'. +2024-05-29T06:06:35.2636696Z ##[debug]Set step '__actions_checkout' display name to: 'Run actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633' +2024-05-29T06:06:35.2640022Z ##[debug]Set step '__self' display name to: 'Run /./' +2024-05-29T06:06:35.2641039Z Complete job name: wait-success +2024-05-29T06:06:35.2654424Z ##[debug]Collect running processes for tracking orphan processes. +2024-05-29T06:06:35.2871133Z ##[debug]Finishing: Set up job +2024-05-29T06:06:35.3077417Z ##[debug]Evaluating condition for step: 'Run actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633' +2024-05-29T06:06:35.3125326Z ##[debug]Evaluating: success() +2024-05-29T06:06:35.3131242Z ##[debug]Evaluating success: +2024-05-29T06:06:35.3154609Z ##[debug]=> true +2024-05-29T06:06:35.3161705Z ##[debug]Result: true +2024-05-29T06:06:35.3199065Z ##[debug]Starting: Run actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 +2024-05-29T06:06:35.3314078Z ##[debug]Register post job cleanup for action: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 +2024-05-29T06:06:35.3416211Z ##[debug]Loading inputs +2024-05-29T06:06:35.3424128Z ##[debug]Evaluating: github.repository +2024-05-29T06:06:35.3425250Z ##[debug]Evaluating Index: +2024-05-29T06:06:35.3427224Z ##[debug]..Evaluating github: +2024-05-29T06:06:35.3428539Z ##[debug]..=> Object +2024-05-29T06:06:35.3440631Z ##[debug]..Evaluating String: +2024-05-29T06:06:35.3441422Z ##[debug]..=> 'repository' +2024-05-29T06:06:35.3445161Z ##[debug]=> 'kachick/wait-other-jobs' +2024-05-29T06:06:35.3447147Z ##[debug]Result: 'kachick/wait-other-jobs' +2024-05-29T06:06:35.3449962Z ##[debug]Evaluating: github.token +2024-05-29T06:06:35.3450411Z ##[debug]Evaluating Index: +2024-05-29T06:06:35.3450787Z ##[debug]..Evaluating github: +2024-05-29T06:06:35.3451179Z ##[debug]..=> Object +2024-05-29T06:06:35.3451519Z ##[debug]..Evaluating String: +2024-05-29T06:06:35.3451883Z ##[debug]..=> 'token' +2024-05-29T06:06:35.3452545Z ##[debug]=> '***' +2024-05-29T06:06:35.3453063Z ##[debug]Result: '***' +2024-05-29T06:06:35.3465278Z ##[debug]Loading env +2024-05-29T06:06:35.3553365Z ##[group]Run actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 +2024-05-29T06:06:35.3554021Z with: +2024-05-29T06:06:35.3554335Z repository: kachick/wait-other-jobs +2024-05-29T06:06:35.3554981Z token: *** +2024-05-29T06:06:35.3555281Z ssh-strict: true +2024-05-29T06:06:35.3555612Z persist-credentials: true +2024-05-29T06:06:35.3555977Z clean: true +2024-05-29T06:06:35.3556302Z sparse-checkout-cone-mode: true +2024-05-29T06:06:35.3556708Z fetch-depth: 1 +2024-05-29T06:06:35.3556996Z fetch-tags: false +2024-05-29T06:06:35.3557295Z show-progress: true +2024-05-29T06:06:35.3557603Z lfs: false +2024-05-29T06:06:35.3557878Z submodules: false +2024-05-29T06:06:35.3558342Z set-safe-directory: true +2024-05-29T06:06:35.3558707Z ##[endgroup] +2024-05-29T06:06:35.5734048Z ##[debug]GITHUB_WORKSPACE = '/home/runner/work/wait-other-jobs/wait-other-jobs' +2024-05-29T06:06:35.5736533Z ##[debug]qualified repository = 'kachick/wait-other-jobs' +2024-05-29T06:06:35.5738267Z ##[debug]ref = 'refs/pull/821/merge' +2024-05-29T06:06:35.5739724Z ##[debug]commit = '78b7ef80457975b7d8a9fdd827bf7db72b867465' +2024-05-29T06:06:35.5741095Z ##[debug]clean = true +2024-05-29T06:06:35.5742082Z ##[debug]filter = undefined +2024-05-29T06:06:35.5743100Z ##[debug]fetch depth = 1 +2024-05-29T06:06:35.5744139Z ##[debug]fetch tags = false +2024-05-29T06:06:35.5745175Z ##[debug]show progress = true +2024-05-29T06:06:35.5746268Z ##[debug]lfs = false +2024-05-29T06:06:35.5747242Z ##[debug]submodules = false +2024-05-29T06:06:35.5748460Z ##[debug]recursive submodules = false +2024-05-29T06:06:35.5749629Z ##[debug]GitHub Host URL = +2024-05-29T06:06:35.5752298Z ::add-matcher::/home/runner/work/_actions/actions/checkout/9bb56186c3b09b4f86b1c65136769dd318469633/dist/problem-matcher.json +2024-05-29T06:06:35.5872043Z ##[debug]Added matchers: 'checkout-git'. Problem matchers scan action output for known warning or error strings and report these inline. +2024-05-29T06:06:35.5883679Z Syncing repository: kachick/wait-other-jobs +2024-05-29T06:06:35.5885248Z ::group::Getting Git version info +2024-05-29T06:06:35.5886600Z ##[group]Getting Git version info +2024-05-29T06:06:35.5887818Z Working directory is '/home/runner/work/wait-other-jobs/wait-other-jobs' +2024-05-29T06:06:35.5889292Z ##[debug]Getting git version +2024-05-29T06:06:35.5889729Z [command]/usr/bin/git version +2024-05-29T06:06:35.5890159Z git version 2.45.1 +2024-05-29T06:06:35.5891069Z ##[debug]0 +2024-05-29T06:06:35.5891652Z ##[debug]git version 2.45.1 +2024-05-29T06:06:35.5892265Z ##[debug] +2024-05-29T06:06:35.5893590Z ##[debug]Set git useragent to: git/2.45.1 (github-actions-checkout) +2024-05-29T06:06:35.5895146Z ::endgroup:: +2024-05-29T06:06:35.5895680Z ##[endgroup] +2024-05-29T06:06:35.5909555Z ::add-mask::*** +2024-05-29T06:06:35.5912354Z Temporarily overriding HOME='/home/runner/work/_temp/fb9c31f3-5333-498c-8101-bc2c7a64d1ff' before making global git config changes +2024-05-29T06:06:35.5914882Z Adding repository directory to the temporary git global config as a safe directory +2024-05-29T06:06:35.5917385Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/wait-other-jobs/wait-other-jobs +2024-05-29T06:06:35.5938020Z ##[debug]0 +2024-05-29T06:06:35.5939546Z ##[debug] +2024-05-29T06:06:35.5944186Z Deleting the contents of '/home/runner/work/wait-other-jobs/wait-other-jobs' +2024-05-29T06:06:35.5949849Z ::group::Initializing the repository +2024-05-29T06:06:35.5950888Z ##[group]Initializing the repository +2024-05-29T06:06:35.5953156Z [command]/usr/bin/git init /home/runner/work/wait-other-jobs/wait-other-jobs +2024-05-29T06:06:35.6029622Z hint: Using 'master' as the name for the initial branch. This default branch name +2024-05-29T06:06:35.6030867Z hint: is subject to change. To configure the initial branch name to use in all +2024-05-29T06:06:35.6032085Z hint: of your new repositories, which will suppress this warning, call: +2024-05-29T06:06:35.6032844Z hint: +2024-05-29T06:06:35.6033408Z hint: git config --global init.defaultBranch +2024-05-29T06:06:35.6034174Z hint: +2024-05-29T06:06:35.6035195Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and +2024-05-29T06:06:35.6036597Z hint: 'development'. The just-created branch can be renamed via this command: +2024-05-29T06:06:35.6037489Z hint: +2024-05-29T06:06:35.6037894Z hint: git branch -m +2024-05-29T06:06:35.6039069Z Initialized empty Git repository in /home/runner/work/wait-other-jobs/wait-other-jobs/.git/ +2024-05-29T06:06:35.6041555Z ##[debug]0 +2024-05-29T06:06:35.6042978Z ##[debug]Initialized empty Git repository in /home/runner/work/wait-other-jobs/wait-other-jobs/.git/ +2024-05-29T06:06:35.6044165Z ##[debug] +2024-05-29T06:06:35.6045503Z [command]/usr/bin/git remote add origin https://github.com/kachick/wait-other-jobs +2024-05-29T06:06:35.6080803Z ##[debug]0 +2024-05-29T06:06:35.6081539Z ##[debug] +2024-05-29T06:06:35.6082475Z ::endgroup:: +2024-05-29T06:06:35.6082879Z ##[endgroup] +2024-05-29T06:06:35.6084022Z ::group::Disabling automatic garbage collection +2024-05-29T06:06:35.6084832Z ##[group]Disabling automatic garbage collection +2024-05-29T06:06:35.6085676Z [command]/usr/bin/git config --local gc.auto 0 +2024-05-29T06:06:35.6111676Z ##[debug]0 +2024-05-29T06:06:35.6112414Z ##[debug] +2024-05-29T06:06:35.6113159Z ::endgroup:: +2024-05-29T06:06:35.6113553Z ##[endgroup] +2024-05-29T06:06:35.6114243Z ::group::Setting up auth +2024-05-29T06:06:35.6114953Z ##[group]Setting up auth +2024-05-29T06:06:35.6117678Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2024-05-29T06:06:35.6141741Z ##[debug]1 +2024-05-29T06:06:35.6142470Z ##[debug] +2024-05-29T06:06:35.6146542Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2024-05-29T06:06:35.6479305Z ##[debug]0 +2024-05-29T06:06:35.6480164Z ##[debug] +2024-05-29T06:06:35.6483127Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2024-05-29T06:06:35.6508530Z ##[debug]1 +2024-05-29T06:06:35.6509836Z ##[debug] +2024-05-29T06:06:35.6513096Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2024-05-29T06:06:35.6730657Z ##[debug]0 +2024-05-29T06:06:35.6731465Z ##[debug] +2024-05-29T06:06:35.6737784Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** +2024-05-29T06:06:35.6764079Z ##[debug]0 +2024-05-29T06:06:35.6765033Z ##[debug] +2024-05-29T06:06:35.6772220Z ::endgroup:: +2024-05-29T06:06:35.6772918Z ##[endgroup] +2024-05-29T06:06:35.6774513Z ::group::Fetching the repository +2024-05-29T06:06:35.6775563Z ##[group]Fetching the repository +2024-05-29T06:06:35.6782796Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +78b7ef80457975b7d8a9fdd827bf7db72b867465:refs/remotes/pull/821/merge +2024-05-29T06:06:36.0909126Z From https://github.com/kachick/wait-other-jobs +2024-05-29T06:06:36.0911529Z * [new ref] 78b7ef80457975b7d8a9fdd827bf7db72b867465 -> pull/821/merge +2024-05-29T06:06:36.0936959Z ##[debug]0 +2024-05-29T06:06:36.0938562Z ##[debug] +2024-05-29T06:06:36.0939960Z ::endgroup:: +2024-05-29T06:06:36.0940646Z ##[endgroup] +2024-05-29T06:06:36.0942049Z ::group::Determining the checkout info +2024-05-29T06:06:36.0943139Z ##[group]Determining the checkout info +2024-05-29T06:06:36.0944726Z ::endgroup:: +2024-05-29T06:06:36.0945394Z ##[endgroup] +2024-05-29T06:06:36.0946439Z [command]/usr/bin/git sparse-checkout disable +2024-05-29T06:06:36.0981913Z ##[debug]0 +2024-05-29T06:06:36.0983108Z ##[debug] +2024-05-29T06:06:36.0984391Z ::group::Checking out the ref +2024-05-29T06:06:36.1080543Z ##[group]Checking out the ref +2024-05-29T06:06:36.1082092Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/821/merge +2024-05-29T06:06:36.1114314Z Note: switching to 'refs/remotes/pull/821/merge'. +2024-05-29T06:06:36.1116380Z +2024-05-29T06:06:36.1117194Z You are in 'detached HEAD' state. You can look around, make experimental +2024-05-29T06:06:36.1118798Z changes and commit them, and you can discard any commits you make in this +2024-05-29T06:06:36.1119768Z state without impacting any branches by switching back to a branch. +2024-05-29T06:06:36.1120350Z +2024-05-29T06:06:36.1120731Z If you want to create a new branch to retain commits you create, you may +2024-05-29T06:06:36.1121713Z do so (now or later) by using -c with the switch command. Example: +2024-05-29T06:06:36.1122327Z +2024-05-29T06:06:36.1122667Z git switch -c +2024-05-29T06:06:36.1123216Z +2024-05-29T06:06:36.1123458Z Or undo this operation with: +2024-05-29T06:06:36.1123958Z +2024-05-29T06:06:36.1124154Z git switch - +2024-05-29T06:06:36.1124484Z +2024-05-29T06:06:36.1125153Z Turn off this advice by setting config variable advice.detachedHead to false +2024-05-29T06:06:36.1126168Z +2024-05-29T06:06:36.1127292Z HEAD is now at 78b7ef8 Merge 8c14d2a44d6dff4e69b0a3cacc2a14e416b44137 into b259df766bd107422afc2c77e234f800a02c4f36 +2024-05-29T06:06:36.1129008Z ##[debug]0 +2024-05-29T06:06:36.1129546Z ##[debug] +2024-05-29T06:06:36.1130059Z ::endgroup:: +2024-05-29T06:06:36.1130365Z ##[endgroup] +2024-05-29T06:06:36.1162272Z ##[debug]0 +2024-05-29T06:06:36.1163158Z ##[debug]commit 78b7ef80457975b7d8a9fdd827bf7db72b867465 +2024-05-29T06:06:36.1163867Z ##[debug]Author: Kenichi Kamiya +2024-05-29T06:06:36.1164669Z ##[debug]Date: Wed May 29 06:05:27 2024 +0000 +2024-05-29T06:06:36.1165307Z ##[debug] +2024-05-29T06:06:36.1166061Z ##[debug] Merge 8c14d2a44d6dff4e69b0a3cacc2a14e416b44137 into b259df766bd107422afc2c77e234f800a02c4f36 +2024-05-29T06:06:36.1166979Z ##[debug] +2024-05-29T06:06:36.1167429Z [command]/usr/bin/git log -1 --format='%H' +2024-05-29T06:06:36.1188746Z '78b7ef80457975b7d8a9fdd827bf7db72b867465' +2024-05-29T06:06:36.1194061Z ##[debug]0 +2024-05-29T06:06:36.1195294Z ##[debug]'78b7ef80457975b7d8a9fdd827bf7db72b867465' +2024-05-29T06:06:36.1196245Z ##[debug] +2024-05-29T06:06:36.1199557Z ##[debug]Unsetting HOME override +2024-05-29T06:06:36.1209025Z ::remove-matcher owner=checkout-git:: +2024-05-29T06:06:36.1234354Z ##[debug]Removed matchers: 'checkout-git' +2024-05-29T06:06:36.1284504Z ##[debug]Node Action run completed with exit code 0 +2024-05-29T06:06:36.1402296Z ##[debug]Save intra-action state isPost = true +2024-05-29T06:06:36.1403358Z ##[debug]Save intra-action state setSafeDirectory = true +2024-05-29T06:06:36.1404448Z ##[debug]Save intra-action state repositoryPath = /home/runner/work/wait-other-jobs/wait-other-jobs +2024-05-29T06:06:36.1415344Z ##[debug]Finishing: Run actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 +2024-05-29T06:06:36.1431818Z ##[debug]Evaluating condition for step: 'Run /./' +2024-05-29T06:06:36.1434101Z ##[debug]Evaluating: success() +2024-05-29T06:06:36.1434691Z ##[debug]Evaluating success: +2024-05-29T06:06:36.1435375Z ##[debug]=> true +2024-05-29T06:06:36.1436130Z ##[debug]Result: true +2024-05-29T06:06:36.1436953Z ##[debug]Starting: Run /./ +2024-05-29T06:06:36.1478714Z ##[debug]Loading inputs +2024-05-29T06:06:36.1511315Z ##[debug]Evaluating: github.token +2024-05-29T06:06:36.1511894Z ##[debug]Evaluating Index: +2024-05-29T06:06:36.1512302Z ##[debug]..Evaluating github: +2024-05-29T06:06:36.1512741Z ##[debug]..=> Object +2024-05-29T06:06:36.1513123Z ##[debug]..Evaluating String: +2024-05-29T06:06:36.1513540Z ##[debug]..=> 'token' +2024-05-29T06:06:36.1514204Z ##[debug]=> '***' +2024-05-29T06:06:36.1514788Z ##[debug]Result: '***' +2024-05-29T06:06:36.1520659Z ##[debug]Loading env +2024-05-29T06:06:36.1527131Z ##[group]Run ./ +2024-05-29T06:06:36.1527440Z with: +2024-05-29T06:06:36.1527782Z retry-method: equal_intervals +2024-05-29T06:06:36.1528486Z wait-seconds-before-first-polling: 0 +2024-05-29T06:06:36.1528998Z min-interval-seconds: 5 +2024-05-29T06:06:36.1529384Z attempt-limits: 100 +2024-05-29T06:06:36.1531066Z wait-list: [ + { + "workflowFile": "GH-820-graceperiod.yml", + "optional": false, + "jobName": "quickstarter-success" + }, + { + "workflowFile": "GH-820-graceperiod.yml", + "optional": false, + "jobName": "slowstarter-success", + "startupGracePeriod": { "seconds": 60 } + } +] + +2024-05-29T06:06:36.1533163Z github-token: *** +2024-05-29T06:06:36.1533506Z early-exit: true +2024-05-29T06:06:36.1533831Z skip-list: [] +2024-05-29T06:06:36.1534161Z skip-same-workflow: false +2024-05-29T06:06:36.1534548Z dry-run: false +2024-05-29T06:06:36.1534859Z ##[endgroup] +2024-05-29T06:06:36.2383642Z ::group::Parameters +2024-05-29T06:06:36.2384419Z ##[group]Parameters +2024-05-29T06:06:36.2407665Z ::add-mask::*** +2024-05-29T06:06:36.2409436Z { +2024-05-29T06:06:36.2409978Z "trigger": { +2024-05-29T06:06:36.2410602Z "owner": "kachick", +2024-05-29T06:06:36.2411459Z "repo": "wait-other-jobs", +2024-05-29T06:06:36.2412419Z "ref": "8c14d2a44d6dff4e69b0a3cacc2a14e416b44137", +2024-05-29T06:06:36.2413440Z "runId": 9281068681, +2024-05-29T06:06:36.2414247Z "jobName": "wait-success", +2024-05-29T06:06:36.2415064Z "eventName": "pull_request" +2024-05-29T06:06:36.2415793Z }, +2024-05-29T06:06:36.2416335Z "startedAt": 80.42258699983358, +2024-05-29T06:06:36.2417111Z "options": { +2024-05-29T06:06:36.2417700Z "waitList": [ +2024-05-29T06:06:36.2418510Z { +2024-05-29T06:06:36.2419267Z "workflowFile": "GH-820-graceperiod.yml", +2024-05-29T06:06:36.2420325Z "jobName": "quickstarter-success", +2024-05-29T06:06:36.2421253Z "optional": false, +2024-05-29T06:06:36.2422017Z "startupGracePeriod": { "seconds": 0 } +2024-05-29T06:06:36.2422849Z }, +2024-05-29T06:06:36.2423324Z { +2024-05-29T06:06:36.2423984Z "workflowFile": "GH-820-graceperiod.yml", +2024-05-29T06:06:36.2424758Z "jobName": "slowstarter-success", +2024-05-29T06:06:36.2425265Z "optional": false, +2024-05-29T06:06:36.2425704Z "startupGracePeriod": { "seconds": 60 } +2024-05-29T06:06:36.2426154Z } +2024-05-29T06:06:36.2426407Z ], +2024-05-29T06:06:36.2426667Z "skipList": [], +2024-05-29T06:06:36.2427063Z "waitSecondsBeforeFirstPolling": 0, +2024-05-29T06:06:36.2427585Z "minIntervalSeconds": 5, +2024-05-29T06:06:36.2428012Z "retryMethod": "equal_intervals", +2024-05-29T06:06:36.2428743Z "attemptLimits": 100, +2024-05-29T06:06:36.2429140Z "isEarlyExit": true, +2024-05-29T06:06:36.2429534Z "shouldSkipSameWorkflow": false, +2024-05-29T06:06:36.2429989Z "isDryRun": false +2024-05-29T06:06:36.2430308Z } +2024-05-29T06:06:36.2430544Z } +2024-05-29T06:06:36.2431122Z ::endgroup:: +2024-05-29T06:06:36.2431430Z ##[endgroup] +2024-05-29T06:06:36.2431794Z Wait about 0 seconds before first polling. +2024-05-29T06:06:36.4710431Z ::group::Polling 1: 2024-05-29T06:06:36.242Z +2024-05-29T06:06:36.4711417Z ##[group]Polling 1: 2024-05-29T06:06:36.242Z +2024-05-29T06:06:37.4677466Z ##[debug]{ +2024-05-29T06:06:37.4677718Z ##[debug] "label": "rawdata", +2024-05-29T06:06:37.4678013Z ##[debug] "checks": [ +2024-05-29T06:06:37.4678510Z ##[debug] { +2024-05-29T06:06:37.4678744Z ##[debug] "checkRun": { +2024-05-29T06:06:37.4679452Z ##[debug] "databaseId": 25536410411, +2024-05-29T06:06:37.4679792Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:37.4680121Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4680745Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", +2024-05-29T06:06:37.4681359Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4681669Z ##[debug] }, +2024-05-29T06:06:37.4681912Z ##[debug] "checkSuite": { +2024-05-29T06:06:37.4682216Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4682552Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:37.4682877Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.4683206Z ##[debug] "databaseId": 9281068413, +2024-05-29T06:06:37.4683546Z ##[debug] "event": "push", +2024-05-29T06:06:37.4683849Z ##[debug] "workflow": { +2024-05-29T06:06:37.4684174Z ##[debug] "name": "💧", +2024-05-29T06:06:37.4684673Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:37.4685156Z ##[debug] } +2024-05-29T06:06:37.4685395Z ##[debug] }, +2024-05-29T06:06:37.4685641Z ##[debug] "checkRuns": { +2024-05-29T06:06:37.4685939Z ##[debug] "totalCount": 1, +2024-05-29T06:06:37.4686254Z ##[debug] "pageInfo": { +2024-05-29T06:06:37.4686567Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:37.4686979Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWsys=" +2024-05-29T06:06:37.4687373Z ##[debug] }, +2024-05-29T06:06:37.4687628Z ##[debug] "nodes": [ +2024-05-29T06:06:37.4687898Z ##[debug] { +2024-05-29T06:06:37.4688413Z ##[debug] "databaseId": 25536410411, +2024-05-29T06:06:37.4688789Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:37.4689138Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4689757Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", +2024-05-29T06:06:37.4690387Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4690713Z ##[debug] } +2024-05-29T06:06:37.4690948Z ##[debug] ] +2024-05-29T06:06:37.4691180Z ##[debug] } +2024-05-29T06:06:37.4691407Z ##[debug] }, +2024-05-29T06:06:37.4691637Z ##[debug] "workflow": { +2024-05-29T06:06:37.4691918Z ##[debug] "name": "💧", +2024-05-29T06:06:37.4692386Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:37.4692862Z ##[debug] }, +2024-05-29T06:06:37.4693099Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.4693411Z ##[debug] "databaseId": 9281068413, +2024-05-29T06:06:37.4693736Z ##[debug] "event": "push", +2024-05-29T06:06:37.4694027Z ##[debug] "workflow": { +2024-05-29T06:06:37.4694310Z ##[debug] "name": "💧", +2024-05-29T06:06:37.4694788Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:37.4695269Z ##[debug] } +2024-05-29T06:06:37.4695500Z ##[debug] } +2024-05-29T06:06:37.4695727Z ##[debug] }, +2024-05-29T06:06:37.4695948Z ##[debug] { +2024-05-29T06:06:37.4696175Z ##[debug] "checkRun": { +2024-05-29T06:06:37.4696463Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:37.4696792Z ##[debug] "name": "build", +2024-05-29T06:06:37.4697095Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4697693Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:37.4698448Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4698963Z ##[debug] }, +2024-05-29T06:06:37.4699207Z ##[debug] "checkSuite": { +2024-05-29T06:06:37.4699497Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4699828Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:37.4700154Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.4700582Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:37.4700943Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.4701280Z ##[debug] "workflow": { +2024-05-29T06:06:37.4701585Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:37.4702063Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:37.4702518Z ##[debug] } +2024-05-29T06:06:37.4702748Z ##[debug] }, +2024-05-29T06:06:37.4702987Z ##[debug] "checkRuns": { +2024-05-29T06:06:37.4703283Z ##[debug] "totalCount": 3, +2024-05-29T06:06:37.4703582Z ##[debug] "pageInfo": { +2024-05-29T06:06:37.4703894Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:37.4704303Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:37.4704689Z ##[debug] }, +2024-05-29T06:06:37.4704926Z ##[debug] "nodes": [ +2024-05-29T06:06:37.4705190Z ##[debug] { +2024-05-29T06:06:37.4705477Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:37.4705817Z ##[debug] "name": "build", +2024-05-29T06:06:37.4706156Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4706780Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:37.4707394Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4707721Z ##[debug] }, +2024-05-29T06:06:37.4707964Z ##[debug] { +2024-05-29T06:06:37.4708426Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:37.4708776Z ##[debug] "name": "test", +2024-05-29T06:06:37.4709110Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4709717Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:37.4710329Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4710656Z ##[debug] }, +2024-05-29T06:06:37.4710899Z ##[debug] { +2024-05-29T06:06:37.4711165Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:37.4711522Z ##[debug] "name": "typecheck", +2024-05-29T06:06:37.4711871Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4712458Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:37.4713094Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4713420Z ##[debug] } +2024-05-29T06:06:37.4713653Z ##[debug] ] +2024-05-29T06:06:37.4713891Z ##[debug] } +2024-05-29T06:06:37.4714120Z ##[debug] }, +2024-05-29T06:06:37.4714350Z ##[debug] "workflow": { +2024-05-29T06:06:37.4714637Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:37.4715101Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:37.4715551Z ##[debug] }, +2024-05-29T06:06:37.4715790Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.4716093Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:37.4716428Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.4716752Z ##[debug] "workflow": { +2024-05-29T06:06:37.4717051Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:37.4717520Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:37.4717977Z ##[debug] } +2024-05-29T06:06:37.4718415Z ##[debug] } +2024-05-29T06:06:37.4718648Z ##[debug] }, +2024-05-29T06:06:37.4718862Z ##[debug] { +2024-05-29T06:06:37.4719089Z ##[debug] "checkRun": { +2024-05-29T06:06:37.4719511Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:37.4719841Z ##[debug] "name": "test", +2024-05-29T06:06:37.4720151Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4720762Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:37.4721486Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4721809Z ##[debug] }, +2024-05-29T06:06:37.4722051Z ##[debug] "checkSuite": { +2024-05-29T06:06:37.4722339Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4722677Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:37.4723003Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.4723313Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:37.4723668Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.4724024Z ##[debug] "workflow": { +2024-05-29T06:06:37.4724333Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:37.4724815Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:37.4725277Z ##[debug] } +2024-05-29T06:06:37.4725519Z ##[debug] }, +2024-05-29T06:06:37.4725762Z ##[debug] "checkRuns": { +2024-05-29T06:06:37.4726046Z ##[debug] "totalCount": 3, +2024-05-29T06:06:37.4726357Z ##[debug] "pageInfo": { +2024-05-29T06:06:37.4726664Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:37.4727063Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:37.4727459Z ##[debug] }, +2024-05-29T06:06:37.4727708Z ##[debug] "nodes": [ +2024-05-29T06:06:37.4727969Z ##[debug] { +2024-05-29T06:06:37.4728455Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:37.4728805Z ##[debug] "name": "build", +2024-05-29T06:06:37.4729138Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4729763Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:37.4730388Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4730713Z ##[debug] }, +2024-05-29T06:06:37.4730950Z ##[debug] { +2024-05-29T06:06:37.4731227Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:37.4731576Z ##[debug] "name": "test", +2024-05-29T06:06:37.4731904Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4732513Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:37.4733123Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4733438Z ##[debug] }, +2024-05-29T06:06:37.4733681Z ##[debug] { +2024-05-29T06:06:37.4733958Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:37.4734308Z ##[debug] "name": "typecheck", +2024-05-29T06:06:37.4734654Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4735251Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:37.4735851Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4736162Z ##[debug] } +2024-05-29T06:06:37.4736399Z ##[debug] ] +2024-05-29T06:06:37.4736635Z ##[debug] } +2024-05-29T06:06:37.4736856Z ##[debug] }, +2024-05-29T06:06:37.4737089Z ##[debug] "workflow": { +2024-05-29T06:06:37.4737375Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:37.4737827Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:37.4738377Z ##[debug] }, +2024-05-29T06:06:37.4738613Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.4738914Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:37.4739254Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.4739576Z ##[debug] "workflow": { +2024-05-29T06:06:37.4739871Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:37.4740469Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:37.4740936Z ##[debug] } +2024-05-29T06:06:37.4741157Z ##[debug] } +2024-05-29T06:06:37.4741379Z ##[debug] }, +2024-05-29T06:06:37.4741597Z ##[debug] { +2024-05-29T06:06:37.4741947Z ##[debug] "checkRun": { +2024-05-29T06:06:37.4742242Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:37.4742577Z ##[debug] "name": "typecheck", +2024-05-29T06:06:37.4742890Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4743483Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:37.4744085Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4744391Z ##[debug] }, +2024-05-29T06:06:37.4744620Z ##[debug] "checkSuite": { +2024-05-29T06:06:37.4744910Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4745242Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:37.4745564Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.4745876Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:37.4746228Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.4746549Z ##[debug] "workflow": { +2024-05-29T06:06:37.4746859Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:37.4747344Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:37.4747803Z ##[debug] } +2024-05-29T06:06:37.4748037Z ##[debug] }, +2024-05-29T06:06:37.4748487Z ##[debug] "checkRuns": { +2024-05-29T06:06:37.4748777Z ##[debug] "totalCount": 3, +2024-05-29T06:06:37.4749079Z ##[debug] "pageInfo": { +2024-05-29T06:06:37.4749389Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:37.4749789Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:37.4750180Z ##[debug] }, +2024-05-29T06:06:37.4750425Z ##[debug] "nodes": [ +2024-05-29T06:06:37.4750691Z ##[debug] { +2024-05-29T06:06:37.4750975Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:37.4751335Z ##[debug] "name": "build", +2024-05-29T06:06:37.4751673Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4752301Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:37.4752920Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4753247Z ##[debug] }, +2024-05-29T06:06:37.4753491Z ##[debug] { +2024-05-29T06:06:37.4753764Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:37.4754106Z ##[debug] "name": "test", +2024-05-29T06:06:37.4754436Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4755025Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:37.4755637Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4755957Z ##[debug] }, +2024-05-29T06:06:37.4756191Z ##[debug] { +2024-05-29T06:06:37.4756465Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:37.4756819Z ##[debug] "name": "typecheck", +2024-05-29T06:06:37.4757163Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4757754Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:37.4758519Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4758835Z ##[debug] } +2024-05-29T06:06:37.4759068Z ##[debug] ] +2024-05-29T06:06:37.4759302Z ##[debug] } +2024-05-29T06:06:37.4759529Z ##[debug] }, +2024-05-29T06:06:37.4759756Z ##[debug] "workflow": { +2024-05-29T06:06:37.4760045Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:37.4760503Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:37.4761181Z ##[debug] }, +2024-05-29T06:06:37.4761424Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.4761730Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:37.4762062Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.4762382Z ##[debug] "workflow": { +2024-05-29T06:06:37.4762786Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:37.4763241Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:37.4763696Z ##[debug] } +2024-05-29T06:06:37.4763924Z ##[debug] } +2024-05-29T06:06:37.4764139Z ##[debug] }, +2024-05-29T06:06:37.4764357Z ##[debug] { +2024-05-29T06:06:37.4764585Z ##[debug] "checkRun": { +2024-05-29T06:06:37.4764871Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:37.4765201Z ##[debug] "name": "typos", +2024-05-29T06:06:37.4765505Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4766095Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:37.4766699Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4767002Z ##[debug] }, +2024-05-29T06:06:37.4767237Z ##[debug] "checkSuite": { +2024-05-29T06:06:37.4767522Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4767858Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:37.4768429Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.4768741Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:37.4769102Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.4769456Z ##[debug] "workflow": { +2024-05-29T06:06:37.4769757Z ##[debug] "name": "👕", +2024-05-29T06:06:37.4770215Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:37.4770687Z ##[debug] } +2024-05-29T06:06:37.4770916Z ##[debug] }, +2024-05-29T06:06:37.4771158Z ##[debug] "checkRuns": { +2024-05-29T06:06:37.4771456Z ##[debug] "totalCount": 4, +2024-05-29T06:06:37.4771752Z ##[debug] "pageInfo": { +2024-05-29T06:06:37.4772055Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:37.4772461Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:37.4772855Z ##[debug] }, +2024-05-29T06:06:37.4773102Z ##[debug] "nodes": [ +2024-05-29T06:06:37.4773368Z ##[debug] { +2024-05-29T06:06:37.4773640Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:37.4773982Z ##[debug] "name": "typos", +2024-05-29T06:06:37.4774318Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4774930Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:37.4775541Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4775864Z ##[debug] }, +2024-05-29T06:06:37.4776109Z ##[debug] { +2024-05-29T06:06:37.4776378Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:37.4776719Z ##[debug] "name": "dprint", +2024-05-29T06:06:37.4777054Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4777638Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:37.4778358Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4778679Z ##[debug] }, +2024-05-29T06:06:37.4778911Z ##[debug] { +2024-05-29T06:06:37.4779182Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:37.4779531Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:37.4779867Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4780457Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:37.4781215Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4781536Z ##[debug] }, +2024-05-29T06:06:37.4781906Z ##[debug] { +2024-05-29T06:06:37.4782185Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:37.4782531Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:37.4782866Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4783574Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:37.4784186Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4784504Z ##[debug] } +2024-05-29T06:06:37.4784740Z ##[debug] ] +2024-05-29T06:06:37.4784975Z ##[debug] } +2024-05-29T06:06:37.4785196Z ##[debug] }, +2024-05-29T06:06:37.4785427Z ##[debug] "workflow": { +2024-05-29T06:06:37.4785710Z ##[debug] "name": "👕", +2024-05-29T06:06:37.4786140Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:37.4786606Z ##[debug] }, +2024-05-29T06:06:37.4786853Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.4787160Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:37.4787496Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.4787817Z ##[debug] "workflow": { +2024-05-29T06:06:37.4788211Z ##[debug] "name": "👕", +2024-05-29T06:06:37.4788662Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:37.4789122Z ##[debug] } +2024-05-29T06:06:37.4789347Z ##[debug] } +2024-05-29T06:06:37.4789563Z ##[debug] }, +2024-05-29T06:06:37.4789779Z ##[debug] { +2024-05-29T06:06:37.4790008Z ##[debug] "checkRun": { +2024-05-29T06:06:37.4790294Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:37.4790627Z ##[debug] "name": "dprint", +2024-05-29T06:06:37.4790933Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4791518Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:37.4792124Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4792433Z ##[debug] }, +2024-05-29T06:06:37.4792663Z ##[debug] "checkSuite": { +2024-05-29T06:06:37.4792953Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4793285Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:37.4793611Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.4793926Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:37.4794276Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.4794598Z ##[debug] "workflow": { +2024-05-29T06:06:37.4794890Z ##[debug] "name": "👕", +2024-05-29T06:06:37.4795344Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:37.4795810Z ##[debug] } +2024-05-29T06:06:37.4796044Z ##[debug] }, +2024-05-29T06:06:37.4796286Z ##[debug] "checkRuns": { +2024-05-29T06:06:37.4796576Z ##[debug] "totalCount": 4, +2024-05-29T06:06:37.4796873Z ##[debug] "pageInfo": { +2024-05-29T06:06:37.4797183Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:37.4797592Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:37.4797978Z ##[debug] }, +2024-05-29T06:06:37.4798337Z ##[debug] "nodes": [ +2024-05-29T06:06:37.4798610Z ##[debug] { +2024-05-29T06:06:37.4798885Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:37.4799231Z ##[debug] "name": "typos", +2024-05-29T06:06:37.4799565Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4800172Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:37.4800788Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4801117Z ##[debug] }, +2024-05-29T06:06:37.4801355Z ##[debug] { +2024-05-29T06:06:37.4801630Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:37.4802095Z ##[debug] "name": "dprint", +2024-05-29T06:06:37.4802430Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4803027Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:37.4803628Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4804054Z ##[debug] }, +2024-05-29T06:06:37.4804290Z ##[debug] { +2024-05-29T06:06:37.4804563Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:37.4804913Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:37.4805247Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4805845Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:37.4806592Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4806961Z ##[debug] }, +2024-05-29T06:06:37.4807202Z ##[debug] { +2024-05-29T06:06:37.4807481Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:37.4807818Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:37.4808266Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4808868Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:37.4809487Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4809804Z ##[debug] } +2024-05-29T06:06:37.4810040Z ##[debug] ] +2024-05-29T06:06:37.4810273Z ##[debug] } +2024-05-29T06:06:37.4810492Z ##[debug] }, +2024-05-29T06:06:37.4810723Z ##[debug] "workflow": { +2024-05-29T06:06:37.4811032Z ##[debug] "name": "👕", +2024-05-29T06:06:37.4811462Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:37.4811930Z ##[debug] }, +2024-05-29T06:06:37.4812163Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.4812459Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:37.4812810Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.4813133Z ##[debug] "workflow": { +2024-05-29T06:06:37.4813406Z ##[debug] "name": "👕", +2024-05-29T06:06:37.4813852Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:37.4814326Z ##[debug] } +2024-05-29T06:06:37.4814544Z ##[debug] } +2024-05-29T06:06:37.4814766Z ##[debug] }, +2024-05-29T06:06:37.4814983Z ##[debug] { +2024-05-29T06:06:37.4815206Z ##[debug] "checkRun": { +2024-05-29T06:06:37.4815498Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:37.4815826Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:37.4816167Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4816762Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:37.4817431Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4817800Z ##[debug] }, +2024-05-29T06:06:37.4818036Z ##[debug] "checkSuite": { +2024-05-29T06:06:37.4818429Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4818757Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:37.4819075Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.4819393Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:37.4819738Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.4820059Z ##[debug] "workflow": { +2024-05-29T06:06:37.4820351Z ##[debug] "name": "👕", +2024-05-29T06:06:37.4820812Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:37.4821278Z ##[debug] } +2024-05-29T06:06:37.4821516Z ##[debug] }, +2024-05-29T06:06:37.4821755Z ##[debug] "checkRuns": { +2024-05-29T06:06:37.4822043Z ##[debug] "totalCount": 4, +2024-05-29T06:06:37.4822351Z ##[debug] "pageInfo": { +2024-05-29T06:06:37.4822659Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:37.4823213Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:37.4823613Z ##[debug] }, +2024-05-29T06:06:37.4823864Z ##[debug] "nodes": [ +2024-05-29T06:06:37.4824127Z ##[debug] { +2024-05-29T06:06:37.4824409Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:37.4824869Z ##[debug] "name": "typos", +2024-05-29T06:06:37.4825208Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4825815Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:37.4826437Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4826764Z ##[debug] }, +2024-05-29T06:06:37.4827005Z ##[debug] { +2024-05-29T06:06:37.4827296Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:37.4827645Z ##[debug] "name": "dprint", +2024-05-29T06:06:37.4827975Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4828734Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:37.4829438Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4830015Z ##[debug] }, +2024-05-29T06:06:37.4830339Z ##[debug] { +2024-05-29T06:06:37.4830700Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:37.4831189Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:37.4831607Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4832296Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:37.4833041Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4833436Z ##[debug] }, +2024-05-29T06:06:37.4833765Z ##[debug] { +2024-05-29T06:06:37.4834174Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:37.4834602Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:37.4835037Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4835794Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:37.4836492Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4836877Z ##[debug] } +2024-05-29T06:06:37.4837325Z ##[debug] ] +2024-05-29T06:06:37.4837655Z ##[debug] } +2024-05-29T06:06:37.4837937Z ##[debug] }, +2024-05-29T06:06:37.4838616Z ##[debug] "workflow": { +2024-05-29T06:06:37.4839004Z ##[debug] "name": "👕", +2024-05-29T06:06:37.4839507Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:37.4840143Z ##[debug] }, +2024-05-29T06:06:37.4840477Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.4840846Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:37.4841343Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.4841765Z ##[debug] "workflow": { +2024-05-29T06:06:37.4842105Z ##[debug] "name": "👕", +2024-05-29T06:06:37.4842839Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:37.4843395Z ##[debug] } +2024-05-29T06:06:37.4843702Z ##[debug] } +2024-05-29T06:06:37.4844060Z ##[debug] }, +2024-05-29T06:06:37.4844371Z ##[debug] { +2024-05-29T06:06:37.4844674Z ##[debug] "checkRun": { +2024-05-29T06:06:37.4845105Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:37.4845526Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:37.4845913Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4846655Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:37.4847350Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4847764Z ##[debug] }, +2024-05-29T06:06:37.4848229Z ##[debug] "checkSuite": { +2024-05-29T06:06:37.4848795Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4849233Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:37.4849671Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.4850101Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:37.4850541Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.4851117Z ##[debug] "workflow": { +2024-05-29T06:06:37.4851506Z ##[debug] "name": "👕", +2024-05-29T06:06:37.4852081Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:37.4852676Z ##[debug] } +2024-05-29T06:06:37.4853006Z ##[debug] }, +2024-05-29T06:06:37.4853539Z ##[debug] "checkRuns": { +2024-05-29T06:06:37.4853954Z ##[debug] "totalCount": 4, +2024-05-29T06:06:37.4854353Z ##[debug] "pageInfo": { +2024-05-29T06:06:37.4854751Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:37.4855287Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:37.4855786Z ##[debug] }, +2024-05-29T06:06:37.4856142Z ##[debug] "nodes": [ +2024-05-29T06:06:37.4856528Z ##[debug] { +2024-05-29T06:06:37.4856906Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:37.4878689Z ##[debug] "name": "typos", +2024-05-29T06:06:37.4879111Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4879748Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:37.4880371Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4880703Z ##[debug] }, +2024-05-29T06:06:37.4880954Z ##[debug] { +2024-05-29T06:06:37.4881245Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:37.4881604Z ##[debug] "name": "dprint", +2024-05-29T06:06:37.4881947Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4882585Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:37.4883210Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4883536Z ##[debug] }, +2024-05-29T06:06:37.4883775Z ##[debug] { +2024-05-29T06:06:37.4884053Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:37.4884415Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:37.4884759Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4885357Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:37.4885958Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4886278Z ##[debug] }, +2024-05-29T06:06:37.4886535Z ##[debug] { +2024-05-29T06:06:37.4886818Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:37.4887164Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:37.4887505Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4888332Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:37.4888977Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4889300Z ##[debug] } +2024-05-29T06:06:37.4889557Z ##[debug] ] +2024-05-29T06:06:37.4889800Z ##[debug] } +2024-05-29T06:06:37.4890020Z ##[debug] }, +2024-05-29T06:06:37.4890254Z ##[debug] "workflow": { +2024-05-29T06:06:37.4890552Z ##[debug] "name": "👕", +2024-05-29T06:06:37.4890993Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:37.4891461Z ##[debug] }, +2024-05-29T06:06:37.4891699Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.4891998Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:37.4892344Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.4892672Z ##[debug] "workflow": { +2024-05-29T06:06:37.4892952Z ##[debug] "name": "👕", +2024-05-29T06:06:37.4893604Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:37.4894076Z ##[debug] } +2024-05-29T06:06:37.4894299Z ##[debug] } +2024-05-29T06:06:37.4894520Z ##[debug] }, +2024-05-29T06:06:37.4894876Z ##[debug] { +2024-05-29T06:06:37.4895100Z ##[debug] "checkRun": { +2024-05-29T06:06:37.4895395Z ##[debug] "databaseId": 25536411289, +2024-05-29T06:06:37.4895728Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:37.4896040Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4896641Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", +2024-05-29T06:06:37.4897248Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4897558Z ##[debug] }, +2024-05-29T06:06:37.4897788Z ##[debug] "checkSuite": { +2024-05-29T06:06:37.4898259Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4898598Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:37.4898918Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.4899235Z ##[debug] "databaseId": 9281068678, +2024-05-29T06:06:37.4899586Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.4899915Z ##[debug] "workflow": { +2024-05-29T06:06:37.4900216Z ##[debug] "name": "💧", +2024-05-29T06:06:37.4900698Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:37.4901181Z ##[debug] } +2024-05-29T06:06:37.4901418Z ##[debug] }, +2024-05-29T06:06:37.4901662Z ##[debug] "checkRuns": { +2024-05-29T06:06:37.4901952Z ##[debug] "totalCount": 1, +2024-05-29T06:06:37.4902264Z ##[debug] "pageInfo": { +2024-05-29T06:06:37.4902573Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:37.4902983Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpk=" +2024-05-29T06:06:37.4903377Z ##[debug] }, +2024-05-29T06:06:37.4903636Z ##[debug] "nodes": [ +2024-05-29T06:06:37.4903897Z ##[debug] { +2024-05-29T06:06:37.4904177Z ##[debug] "databaseId": 25536411289, +2024-05-29T06:06:37.4904533Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:37.4904869Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.4905495Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", +2024-05-29T06:06:37.4906115Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.4906440Z ##[debug] } +2024-05-29T06:06:37.4906674Z ##[debug] ] +2024-05-29T06:06:37.4906906Z ##[debug] } +2024-05-29T06:06:37.4907131Z ##[debug] }, +2024-05-29T06:06:37.4907356Z ##[debug] "workflow": { +2024-05-29T06:06:37.4907637Z ##[debug] "name": "💧", +2024-05-29T06:06:37.4908192Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:37.4908668Z ##[debug] }, +2024-05-29T06:06:37.4908911Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.4909214Z ##[debug] "databaseId": 9281068678, +2024-05-29T06:06:37.4909541Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.4909860Z ##[debug] "workflow": { +2024-05-29T06:06:37.4910141Z ##[debug] "name": "💧", +2024-05-29T06:06:37.4910603Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:37.4911084Z ##[debug] } +2024-05-29T06:06:37.4911311Z ##[debug] } +2024-05-29T06:06:37.4911526Z ##[debug] }, +2024-05-29T06:06:37.4911751Z ##[debug] { +2024-05-29T06:06:37.4911981Z ##[debug] "checkRun": { +2024-05-29T06:06:37.4912265Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:37.4912607Z ##[debug] "name": "intermediate", +2024-05-29T06:06:37.4912943Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:37.4913531Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:37.4914247Z ##[debug] "conclusion": null +2024-05-29T06:06:37.4914545Z ##[debug] }, +2024-05-29T06:06:37.4914780Z ##[debug] "checkSuite": { +2024-05-29T06:06:37.4915060Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:37.4915371Z ##[debug] "conclusion": null, +2024-05-29T06:06:37.4915789Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.4916101Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:37.4916450Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.4916778Z ##[debug] "workflow": { +2024-05-29T06:06:37.4917126Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:37.4917705Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:37.4918316Z ##[debug] } +2024-05-29T06:06:37.4918548Z ##[debug] }, +2024-05-29T06:06:37.4918794Z ##[debug] "checkRuns": { +2024-05-29T06:06:37.4919087Z ##[debug] "totalCount": 4, +2024-05-29T06:06:37.4919394Z ##[debug] "pageInfo": { +2024-05-29T06:06:37.4919700Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:37.4920112Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXNaM=" +2024-05-29T06:06:37.4920500Z ##[debug] }, +2024-05-29T06:06:37.4920754Z ##[debug] "nodes": [ +2024-05-29T06:06:37.4921021Z ##[debug] { +2024-05-29T06:06:37.4921298Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:37.4921669Z ##[debug] "name": "intermediate", +2024-05-29T06:06:37.4922036Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:37.4922663Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:37.4923268Z ##[debug] "conclusion": null +2024-05-29T06:06:37.4923581Z ##[debug] }, +2024-05-29T06:06:37.4923824Z ##[debug] { +2024-05-29T06:06:37.4924095Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:37.4924463Z ##[debug] "name": "wait-success", +2024-05-29T06:06:37.4924818Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:37.4925423Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:37.4926061Z ##[debug] "conclusion": null +2024-05-29T06:06:37.4926375Z ##[debug] }, +2024-05-29T06:06:37.4926612Z ##[debug] { +2024-05-29T06:06:37.4926891Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:37.4927286Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:37.4927659Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:37.4928497Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:37.4929114Z ##[debug] "conclusion": null +2024-05-29T06:06:37.4929428Z ##[debug] }, +2024-05-29T06:06:37.4929672Z ##[debug] { +2024-05-29T06:06:37.4929948Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:37.4930303Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:37.4930651Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:37.4931270Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:37.4931861Z ##[debug] "conclusion": null +2024-05-29T06:06:37.4932160Z ##[debug] } +2024-05-29T06:06:37.4932400Z ##[debug] ] +2024-05-29T06:06:37.4932635Z ##[debug] } +2024-05-29T06:06:37.4932855Z ##[debug] }, +2024-05-29T06:06:37.4933086Z ##[debug] "workflow": { +2024-05-29T06:06:37.4933423Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:37.4933983Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:37.4934483Z ##[debug] }, +2024-05-29T06:06:37.4934890Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.4935199Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:37.4935541Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.4935858Z ##[debug] "workflow": { +2024-05-29T06:06:37.4936200Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:37.4936869Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:37.4937366Z ##[debug] } +2024-05-29T06:06:37.4937594Z ##[debug] } +2024-05-29T06:06:37.4937809Z ##[debug] }, +2024-05-29T06:06:37.4938026Z ##[debug] { +2024-05-29T06:06:37.4938471Z ##[debug] "checkRun": { +2024-05-29T06:06:37.4938763Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:37.4939105Z ##[debug] "name": "wait-success", +2024-05-29T06:06:37.4939444Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:37.4940041Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:37.4940632Z ##[debug] "conclusion": null +2024-05-29T06:06:37.4940924Z ##[debug] }, +2024-05-29T06:06:37.4941155Z ##[debug] "checkSuite": { +2024-05-29T06:06:37.4941445Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:37.4941762Z ##[debug] "conclusion": null, +2024-05-29T06:06:37.4942067Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.4942382Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:37.4942731Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.4943058Z ##[debug] "workflow": { +2024-05-29T06:06:37.4943414Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:37.4943987Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:37.4944489Z ##[debug] } +2024-05-29T06:06:37.4944717Z ##[debug] }, +2024-05-29T06:06:37.4944954Z ##[debug] "checkRuns": { +2024-05-29T06:06:37.4945252Z ##[debug] "totalCount": 4, +2024-05-29T06:06:37.4945548Z ##[debug] "pageInfo": { +2024-05-29T06:06:37.4945852Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:37.4946257Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXNaM=" +2024-05-29T06:06:37.4946645Z ##[debug] }, +2024-05-29T06:06:37.4946888Z ##[debug] "nodes": [ +2024-05-29T06:06:37.4947157Z ##[debug] { +2024-05-29T06:06:37.4947429Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:37.4947801Z ##[debug] "name": "intermediate", +2024-05-29T06:06:37.4948259Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:37.4948869Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:37.4949469Z ##[debug] "conclusion": null +2024-05-29T06:06:37.4949775Z ##[debug] }, +2024-05-29T06:06:37.4950011Z ##[debug] { +2024-05-29T06:06:37.4950292Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:37.4950652Z ##[debug] "name": "wait-success", +2024-05-29T06:06:37.4951002Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:37.4951596Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:37.4952186Z ##[debug] "conclusion": null +2024-05-29T06:06:37.4952488Z ##[debug] }, +2024-05-29T06:06:37.4952718Z ##[debug] { +2024-05-29T06:06:37.4952992Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:37.4953369Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:37.4953739Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:37.4954320Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:37.4954907Z ##[debug] "conclusion": null +2024-05-29T06:06:37.4955201Z ##[debug] }, +2024-05-29T06:06:37.4955563Z ##[debug] { +2024-05-29T06:06:37.4955840Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:37.4956186Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:37.4956525Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:37.4957228Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:37.4957808Z ##[debug] "conclusion": null +2024-05-29T06:06:37.4958202Z ##[debug] } +2024-05-29T06:06:37.4958438Z ##[debug] ] +2024-05-29T06:06:37.4958674Z ##[debug] } +2024-05-29T06:06:37.4958893Z ##[debug] }, +2024-05-29T06:06:37.4959122Z ##[debug] "workflow": { +2024-05-29T06:06:37.4959453Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:37.4960005Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:37.4960500Z ##[debug] }, +2024-05-29T06:06:37.4960745Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.4961042Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:37.4961379Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.4961693Z ##[debug] "workflow": { +2024-05-29T06:06:37.4962034Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:37.4962596Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:37.4963092Z ##[debug] } +2024-05-29T06:06:37.4963319Z ##[debug] } +2024-05-29T06:06:37.4963535Z ##[debug] }, +2024-05-29T06:06:37.4963750Z ##[debug] { +2024-05-29T06:06:37.4963975Z ##[debug] "checkRun": { +2024-05-29T06:06:37.4964262Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:37.4964625Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:37.4964979Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:37.4965558Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:37.4966146Z ##[debug] "conclusion": null +2024-05-29T06:06:37.4966431Z ##[debug] }, +2024-05-29T06:06:37.4966659Z ##[debug] "checkSuite": { +2024-05-29T06:06:37.4966943Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:37.4967249Z ##[debug] "conclusion": null, +2024-05-29T06:06:37.4967542Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.4967856Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:37.4968301Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.4968624Z ##[debug] "workflow": { +2024-05-29T06:06:37.4968974Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:37.4969572Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:37.4970064Z ##[debug] } +2024-05-29T06:06:37.4970291Z ##[debug] }, +2024-05-29T06:06:37.4970528Z ##[debug] "checkRuns": { +2024-05-29T06:06:37.4970828Z ##[debug] "totalCount": 4, +2024-05-29T06:06:37.4971124Z ##[debug] "pageInfo": { +2024-05-29T06:06:37.4971429Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:37.4971836Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXNaM=" +2024-05-29T06:06:37.4972222Z ##[debug] }, +2024-05-29T06:06:37.4972467Z ##[debug] "nodes": [ +2024-05-29T06:06:37.4972734Z ##[debug] { +2024-05-29T06:06:37.4973009Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:37.4973377Z ##[debug] "name": "intermediate", +2024-05-29T06:06:37.4973737Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:37.4974349Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:37.4974952Z ##[debug] "conclusion": null +2024-05-29T06:06:37.4975257Z ##[debug] }, +2024-05-29T06:06:37.4975493Z ##[debug] { +2024-05-29T06:06:37.4975921Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:37.4976291Z ##[debug] "name": "wait-success", +2024-05-29T06:06:37.4976659Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:37.4977287Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:37.4977994Z ##[debug] "conclusion": null +2024-05-29T06:06:37.4978404Z ##[debug] }, +2024-05-29T06:06:37.4978643Z ##[debug] { +2024-05-29T06:06:37.4978916Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:37.4979300Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:37.4979677Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:37.4980267Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:37.4980860Z ##[debug] "conclusion": null +2024-05-29T06:06:37.4981165Z ##[debug] }, +2024-05-29T06:06:37.4981410Z ##[debug] { +2024-05-29T06:06:37.4981682Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:37.4982027Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:37.4982378Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:37.4982984Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:37.4983568Z ##[debug] "conclusion": null +2024-05-29T06:06:37.4983862Z ##[debug] } +2024-05-29T06:06:37.4984100Z ##[debug] ] +2024-05-29T06:06:37.4984333Z ##[debug] } +2024-05-29T06:06:37.4984554Z ##[debug] }, +2024-05-29T06:06:37.4984784Z ##[debug] "workflow": { +2024-05-29T06:06:37.4985120Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:37.4985678Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:37.4986181Z ##[debug] }, +2024-05-29T06:06:37.4986422Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.4986721Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:37.4987058Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.4987374Z ##[debug] "workflow": { +2024-05-29T06:06:37.4987712Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:37.4988402Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:37.4988895Z ##[debug] } +2024-05-29T06:06:37.4989121Z ##[debug] } +2024-05-29T06:06:37.4989341Z ##[debug] }, +2024-05-29T06:06:37.4989558Z ##[debug] { +2024-05-29T06:06:37.4989777Z ##[debug] "checkRun": { +2024-05-29T06:06:37.4990073Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:37.4990407Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:37.4990727Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:37.4991319Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:37.4991910Z ##[debug] "conclusion": null +2024-05-29T06:06:37.4992203Z ##[debug] }, +2024-05-29T06:06:37.4992432Z ##[debug] "checkSuite": { +2024-05-29T06:06:37.4992714Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:37.4993027Z ##[debug] "conclusion": null, +2024-05-29T06:06:37.4993328Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.4993644Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:37.4993992Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.4994315Z ##[debug] "workflow": { +2024-05-29T06:06:37.4994666Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:37.4995237Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:37.4995729Z ##[debug] } +2024-05-29T06:06:37.4995967Z ##[debug] }, +2024-05-29T06:06:37.4996212Z ##[debug] "checkRuns": { +2024-05-29T06:06:37.4996629Z ##[debug] "totalCount": 4, +2024-05-29T06:06:37.4996945Z ##[debug] "pageInfo": { +2024-05-29T06:06:37.4997257Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:37.4997670Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXNaM=" +2024-05-29T06:06:37.4998264Z ##[debug] }, +2024-05-29T06:06:37.4998508Z ##[debug] "nodes": [ +2024-05-29T06:06:37.4998770Z ##[debug] { +2024-05-29T06:06:37.4999041Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:37.4999407Z ##[debug] "name": "intermediate", +2024-05-29T06:06:37.4999766Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:37.5000382Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:37.5000984Z ##[debug] "conclusion": null +2024-05-29T06:06:37.5001290Z ##[debug] }, +2024-05-29T06:06:37.5001525Z ##[debug] { +2024-05-29T06:06:37.5001806Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:37.5002168Z ##[debug] "name": "wait-success", +2024-05-29T06:06:37.5002520Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:37.5003122Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:37.5003720Z ##[debug] "conclusion": null +2024-05-29T06:06:37.5004021Z ##[debug] }, +2024-05-29T06:06:37.5004254Z ##[debug] { +2024-05-29T06:06:37.5004525Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:37.5004905Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:37.5005273Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:37.5005857Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:37.5006445Z ##[debug] "conclusion": null +2024-05-29T06:06:37.5006743Z ##[debug] }, +2024-05-29T06:06:37.5006989Z ##[debug] { +2024-05-29T06:06:37.5007260Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:37.5007603Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:37.5007952Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:37.5008663Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:37.5009250Z ##[debug] "conclusion": null +2024-05-29T06:06:37.5009542Z ##[debug] } +2024-05-29T06:06:37.5009780Z ##[debug] ] +2024-05-29T06:06:37.5010016Z ##[debug] } +2024-05-29T06:06:37.5010234Z ##[debug] }, +2024-05-29T06:06:37.5010467Z ##[debug] "workflow": { +2024-05-29T06:06:37.5010800Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:37.5011357Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:37.5011858Z ##[debug] }, +2024-05-29T06:06:37.5012094Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5012396Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:37.5012734Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5013051Z ##[debug] "workflow": { +2024-05-29T06:06:37.5013389Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:37.5013952Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:37.5014451Z ##[debug] } +2024-05-29T06:06:37.5014674Z ##[debug] } +2024-05-29T06:06:37.5014900Z ##[debug] }, +2024-05-29T06:06:37.5015119Z ##[debug] { +2024-05-29T06:06:37.5015338Z ##[debug] "checkRun": { +2024-05-29T06:06:37.5015631Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:37.5015984Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:37.5016321Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5017038Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:37.5017651Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:37.5017955Z ##[debug] }, +2024-05-29T06:06:37.5018281Z ##[debug] "checkSuite": { +2024-05-29T06:06:37.5018690Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5019018Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:37.5019335Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5019648Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:37.5019997Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5020321Z ##[debug] "workflow": { +2024-05-29T06:06:37.5020686Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:37.5021196Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:37.5021689Z ##[debug] } +2024-05-29T06:06:37.5021922Z ##[debug] }, +2024-05-29T06:06:37.5022174Z ##[debug] "checkRuns": { +2024-05-29T06:06:37.5022462Z ##[debug] "totalCount": 4, +2024-05-29T06:06:37.5022763Z ##[debug] "pageInfo": { +2024-05-29T06:06:37.5023067Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:37.5023468Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:37.5023868Z ##[debug] }, +2024-05-29T06:06:37.5024113Z ##[debug] "nodes": [ +2024-05-29T06:06:37.5024374Z ##[debug] { +2024-05-29T06:06:37.5024653Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:37.5025028Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:37.5025404Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5026004Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:37.5026617Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:37.5026942Z ##[debug] }, +2024-05-29T06:06:37.5027178Z ##[debug] { +2024-05-29T06:06:37.5027462Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:37.5027813Z ##[debug] "name": "renovate", +2024-05-29T06:06:37.5028253Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5028854Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:37.5029461Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:37.5029782Z ##[debug] }, +2024-05-29T06:06:37.5030016Z ##[debug] { +2024-05-29T06:06:37.5030289Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:37.5030650Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:37.5031006Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5031600Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:37.5032199Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:37.5032517Z ##[debug] }, +2024-05-29T06:06:37.5032817Z ##[debug] { +2024-05-29T06:06:37.5033090Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:37.5033444Z ##[debug] "name": "dependabot", +2024-05-29T06:06:37.5033799Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5034400Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:37.5035012Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:37.5035329Z ##[debug] } +2024-05-29T06:06:37.5035567Z ##[debug] ] +2024-05-29T06:06:37.5035801Z ##[debug] } +2024-05-29T06:06:37.5036022Z ##[debug] }, +2024-05-29T06:06:37.5036254Z ##[debug] "workflow": { +2024-05-29T06:06:37.5036571Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:37.5037072Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:37.5037699Z ##[debug] }, +2024-05-29T06:06:37.5037940Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5038337Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:37.5038679Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5039005Z ##[debug] "workflow": { +2024-05-29T06:06:37.5039422Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:37.5039926Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:37.5040425Z ##[debug] } +2024-05-29T06:06:37.5040646Z ##[debug] } +2024-05-29T06:06:37.5040867Z ##[debug] }, +2024-05-29T06:06:37.5041085Z ##[debug] { +2024-05-29T06:06:37.5041304Z ##[debug] "checkRun": { +2024-05-29T06:06:37.5041596Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:37.5041928Z ##[debug] "name": "renovate", +2024-05-29T06:06:37.5042236Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5042844Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:37.5043444Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:37.5043749Z ##[debug] }, +2024-05-29T06:06:37.5043978Z ##[debug] "checkSuite": { +2024-05-29T06:06:37.5044271Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5044612Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:37.5044929Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5045245Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:37.5045592Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5045913Z ##[debug] "workflow": { +2024-05-29T06:06:37.5046211Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:37.5046722Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:37.5047220Z ##[debug] } +2024-05-29T06:06:37.5047456Z ##[debug] }, +2024-05-29T06:06:37.5047698Z ##[debug] "checkRuns": { +2024-05-29T06:06:37.5047988Z ##[debug] "totalCount": 4, +2024-05-29T06:06:37.5048400Z ##[debug] "pageInfo": { +2024-05-29T06:06:37.5048714Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:37.5049117Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:37.5049520Z ##[debug] }, +2024-05-29T06:06:37.5049766Z ##[debug] "nodes": [ +2024-05-29T06:06:37.5050027Z ##[debug] { +2024-05-29T06:06:37.5050305Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:37.5050683Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:37.5051053Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5051666Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:37.5052283Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:37.5052612Z ##[debug] }, +2024-05-29T06:06:37.5052848Z ##[debug] { +2024-05-29T06:06:37.5053127Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:37.5053480Z ##[debug] "name": "renovate", +2024-05-29T06:06:37.5053814Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5054417Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:37.5055027Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:37.5055344Z ##[debug] }, +2024-05-29T06:06:37.5055586Z ##[debug] { +2024-05-29T06:06:37.5055856Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:37.5056214Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:37.5056576Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5057170Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:37.5057776Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:37.5058473Z ##[debug] }, +2024-05-29T06:06:37.5058752Z ##[debug] { +2024-05-29T06:06:37.5059034Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:37.5059397Z ##[debug] "name": "dependabot", +2024-05-29T06:06:37.5059766Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5060496Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:37.5061098Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:37.5061416Z ##[debug] } +2024-05-29T06:06:37.5061659Z ##[debug] ] +2024-05-29T06:06:37.5061892Z ##[debug] } +2024-05-29T06:06:37.5062115Z ##[debug] }, +2024-05-29T06:06:37.5062348Z ##[debug] "workflow": { +2024-05-29T06:06:37.5062640Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:37.5063137Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:37.5063638Z ##[debug] }, +2024-05-29T06:06:37.5063885Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5064186Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:37.5064525Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5064850Z ##[debug] "workflow": { +2024-05-29T06:06:37.5065138Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:37.5065638Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:37.5066141Z ##[debug] } +2024-05-29T06:06:37.5066361Z ##[debug] } +2024-05-29T06:06:37.5066584Z ##[debug] }, +2024-05-29T06:06:37.5066806Z ##[debug] { +2024-05-29T06:06:37.5067024Z ##[debug] "checkRun": { +2024-05-29T06:06:37.5067320Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:37.5067664Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:37.5067991Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5068707Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:37.5069344Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:37.5069651Z ##[debug] }, +2024-05-29T06:06:37.5069890Z ##[debug] "checkSuite": { +2024-05-29T06:06:37.5070180Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5070510Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:37.5070832Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5071160Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:37.5071509Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5071827Z ##[debug] "workflow": { +2024-05-29T06:06:37.5072124Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:37.5072635Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:37.5073128Z ##[debug] } +2024-05-29T06:06:37.5073363Z ##[debug] }, +2024-05-29T06:06:37.5073602Z ##[debug] "checkRuns": { +2024-05-29T06:06:37.5073895Z ##[debug] "totalCount": 4, +2024-05-29T06:06:37.5074201Z ##[debug] "pageInfo": { +2024-05-29T06:06:37.5074507Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:37.5074911Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:37.5075302Z ##[debug] }, +2024-05-29T06:06:37.5075553Z ##[debug] "nodes": [ +2024-05-29T06:06:37.5075812Z ##[debug] { +2024-05-29T06:06:37.5076090Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:37.5076466Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:37.5076835Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5077453Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:37.5078169Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:37.5078496Z ##[debug] }, +2024-05-29T06:06:37.5078732Z ##[debug] { +2024-05-29T06:06:37.5079126Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:37.5079237Z ##[debug] "name": "renovate", +2024-05-29T06:06:37.5079356Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5079726Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:37.5079950Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:37.5080046Z ##[debug] }, +2024-05-29T06:06:37.5080129Z ##[debug] { +2024-05-29T06:06:37.5080250Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:37.5080376Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:37.5080491Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5080860Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:37.5080978Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:37.5081062Z ##[debug] }, +2024-05-29T06:06:37.5081156Z ##[debug] { +2024-05-29T06:06:37.5081273Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:37.5081387Z ##[debug] "name": "dependabot", +2024-05-29T06:06:37.5081505Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5081863Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:37.5081985Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:37.5082067Z ##[debug] } +2024-05-29T06:06:37.5082151Z ##[debug] ] +2024-05-29T06:06:37.5082239Z ##[debug] } +2024-05-29T06:06:37.5082322Z ##[debug] }, +2024-05-29T06:06:37.5082415Z ##[debug] "workflow": { +2024-05-29T06:06:37.5082524Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:37.5082809Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:37.5082891Z ##[debug] }, +2024-05-29T06:06:37.5083003Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5083113Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:37.5083223Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5083322Z ##[debug] "workflow": { +2024-05-29T06:06:37.5083421Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:37.5083716Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:37.5083799Z ##[debug] } +2024-05-29T06:06:37.5083882Z ##[debug] } +2024-05-29T06:06:37.5083971Z ##[debug] }, +2024-05-29T06:06:37.5084053Z ##[debug] { +2024-05-29T06:06:37.5084146Z ##[debug] "checkRun": { +2024-05-29T06:06:37.5084263Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:37.5084365Z ##[debug] "name": "dependabot", +2024-05-29T06:06:37.5084467Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5084843Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:37.5084954Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:37.5085042Z ##[debug] }, +2024-05-29T06:06:37.5085137Z ##[debug] "checkSuite": { +2024-05-29T06:06:37.5085238Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5085353Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:37.5085460Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5085576Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:37.5085692Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5085787Z ##[debug] "workflow": { +2024-05-29T06:06:37.5085908Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:37.5086211Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:37.5086295Z ##[debug] } +2024-05-29T06:06:37.5086384Z ##[debug] }, +2024-05-29T06:06:37.5086480Z ##[debug] "checkRuns": { +2024-05-29T06:06:37.5086579Z ##[debug] "totalCount": 4, +2024-05-29T06:06:37.5086779Z ##[debug] "pageInfo": { +2024-05-29T06:06:37.5086893Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:37.5087073Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:37.5087162Z ##[debug] }, +2024-05-29T06:06:37.5087330Z ##[debug] "nodes": [ +2024-05-29T06:06:37.5087414Z ##[debug] { +2024-05-29T06:06:37.5087541Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:37.5087669Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:37.5087786Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5088262Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:37.5088380Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:37.5088471Z ##[debug] }, +2024-05-29T06:06:37.5088554Z ##[debug] { +2024-05-29T06:06:37.5088672Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:37.5088791Z ##[debug] "name": "renovate", +2024-05-29T06:06:37.5088908Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5089271Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:37.5089435Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:37.5089520Z ##[debug] }, +2024-05-29T06:06:37.5089610Z ##[debug] { +2024-05-29T06:06:37.5089737Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:37.5089859Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:37.5089981Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5090332Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:37.5090447Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:37.5090540Z ##[debug] }, +2024-05-29T06:06:37.5090628Z ##[debug] { +2024-05-29T06:06:37.5090743Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:37.5090863Z ##[debug] "name": "dependabot", +2024-05-29T06:06:37.5090975Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5091334Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:37.5091452Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:37.5091535Z ##[debug] } +2024-05-29T06:06:37.5091626Z ##[debug] ] +2024-05-29T06:06:37.5091710Z ##[debug] } +2024-05-29T06:06:37.5091793Z ##[debug] }, +2024-05-29T06:06:37.5091889Z ##[debug] "workflow": { +2024-05-29T06:06:37.5091990Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:37.5092272Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:37.5092359Z ##[debug] }, +2024-05-29T06:06:37.5092454Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5092572Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:37.5092681Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5092773Z ##[debug] "workflow": { +2024-05-29T06:06:37.5092877Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:37.5093167Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:37.5093250Z ##[debug] } +2024-05-29T06:06:37.5093338Z ##[debug] } +2024-05-29T06:06:37.5093420Z ##[debug] }, +2024-05-29T06:06:37.5093503Z ##[debug] { +2024-05-29T06:06:37.5093600Z ##[debug] "checkRun": { +2024-05-29T06:06:37.5093710Z ##[debug] "databaseId": 25536411287, +2024-05-29T06:06:37.5093803Z ##[debug] "name": "echo", +2024-05-29T06:06:37.5093911Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5094275Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", +2024-05-29T06:06:37.5094510Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5094596Z ##[debug] }, +2024-05-29T06:06:37.5094691Z ##[debug] "checkSuite": { +2024-05-29T06:06:37.5094796Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5094903Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:37.5095166Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5095286Z ##[debug] "databaseId": 9281068684, +2024-05-29T06:06:37.5095398Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5095491Z ##[debug] "workflow": { +2024-05-29T06:06:37.5095624Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:37.5095917Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:37.5096006Z ##[debug] } +2024-05-29T06:06:37.5096091Z ##[debug] }, +2024-05-29T06:06:37.5096188Z ##[debug] "checkRuns": { +2024-05-29T06:06:37.5096293Z ##[debug] "totalCount": 1, +2024-05-29T06:06:37.5096395Z ##[debug] "pageInfo": { +2024-05-29T06:06:37.5096507Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:37.5096692Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpc=" +2024-05-29T06:06:37.5096777Z ##[debug] }, +2024-05-29T06:06:37.5096866Z ##[debug] "nodes": [ +2024-05-29T06:06:37.5096961Z ##[debug] { +2024-05-29T06:06:37.5097083Z ##[debug] "databaseId": 25536411287, +2024-05-29T06:06:37.5097186Z ##[debug] "name": "echo", +2024-05-29T06:06:37.5097305Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5097670Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", +2024-05-29T06:06:37.5097798Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5097882Z ##[debug] } +2024-05-29T06:06:37.5097963Z ##[debug] ] +2024-05-29T06:06:37.5098145Z ##[debug] } +2024-05-29T06:06:37.5098232Z ##[debug] }, +2024-05-29T06:06:37.5098328Z ##[debug] "workflow": { +2024-05-29T06:06:37.5098450Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:37.5098735Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:37.5098823Z ##[debug] }, +2024-05-29T06:06:37.5098925Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5099032Z ##[debug] "databaseId": 9281068684, +2024-05-29T06:06:37.5099145Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5099236Z ##[debug] "workflow": { +2024-05-29T06:06:37.5099351Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:37.5099642Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:37.5099724Z ##[debug] } +2024-05-29T06:06:37.5099805Z ##[debug] } +2024-05-29T06:06:37.5099894Z ##[debug] }, +2024-05-29T06:06:37.5099975Z ##[debug] { +2024-05-29T06:06:37.5100067Z ##[debug] "checkRun": { +2024-05-29T06:06:37.5100185Z ##[debug] "databaseId": 25536411604, +2024-05-29T06:06:37.5100277Z ##[debug] "name": "wait", +2024-05-29T06:06:37.5100384Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5100749Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", +2024-05-29T06:06:37.5100861Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5100951Z ##[debug] }, +2024-05-29T06:06:37.5101044Z ##[debug] "checkSuite": { +2024-05-29T06:06:37.5101145Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5101258Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:37.5101354Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5101465Z ##[debug] "databaseId": 9281068685, +2024-05-29T06:06:37.5101582Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5101674Z ##[debug] "workflow": { +2024-05-29T06:06:37.5101793Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:37.5102191Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:37.5102282Z ##[debug] } +2024-05-29T06:06:37.5102369Z ##[debug] }, +2024-05-29T06:06:37.5102462Z ##[debug] "checkRuns": { +2024-05-29T06:06:37.5102557Z ##[debug] "totalCount": 1, +2024-05-29T06:06:37.5102759Z ##[debug] "pageInfo": { +2024-05-29T06:06:37.5102869Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:37.5103046Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWt9Q=" +2024-05-29T06:06:37.5103134Z ##[debug] }, +2024-05-29T06:06:37.5103223Z ##[debug] "nodes": [ +2024-05-29T06:06:37.5103311Z ##[debug] { +2024-05-29T06:06:37.5103434Z ##[debug] "databaseId": 25536411604, +2024-05-29T06:06:37.5103531Z ##[debug] "name": "wait", +2024-05-29T06:06:37.5103650Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5104021Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", +2024-05-29T06:06:37.5104139Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5104227Z ##[debug] } +2024-05-29T06:06:37.5104313Z ##[debug] ] +2024-05-29T06:06:37.5104393Z ##[debug] } +2024-05-29T06:06:37.5104487Z ##[debug] }, +2024-05-29T06:06:37.5104578Z ##[debug] "workflow": { +2024-05-29T06:06:37.5104682Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:37.5104962Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:37.5105045Z ##[debug] }, +2024-05-29T06:06:37.5105145Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5105251Z ##[debug] "databaseId": 9281068685, +2024-05-29T06:06:37.5105356Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5105454Z ##[debug] "workflow": { +2024-05-29T06:06:37.5105563Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:37.5105839Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:37.5105928Z ##[debug] } +2024-05-29T06:06:37.5106009Z ##[debug] } +2024-05-29T06:06:37.5106090Z ##[debug] }, +2024-05-29T06:06:37.5106177Z ##[debug] { +2024-05-29T06:06:37.5106270Z ##[debug] "checkRun": { +2024-05-29T06:06:37.5106389Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:37.5106493Z ##[debug] "name": "default_logic", +2024-05-29T06:06:37.5106593Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5106957Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:37.5107062Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5107144Z ##[debug] }, +2024-05-29T06:06:37.5107243Z ##[debug] "checkSuite": { +2024-05-29T06:06:37.5107344Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5107449Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:37.5107552Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5107672Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:37.5107791Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5107883Z ##[debug] "workflow": { +2024-05-29T06:06:37.5107980Z ##[debug] "name": "Itself", +2024-05-29T06:06:37.5108347Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:37.5108431Z ##[debug] } +2024-05-29T06:06:37.5108513Z ##[debug] }, +2024-05-29T06:06:37.5108613Z ##[debug] "checkRuns": { +2024-05-29T06:06:37.5108713Z ##[debug] "totalCount": 7, +2024-05-29T06:06:37.5108806Z ##[debug] "pageInfo": { +2024-05-29T06:06:37.5108921Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:37.5109098Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:37.5109181Z ##[debug] }, +2024-05-29T06:06:37.5109277Z ##[debug] "nodes": [ +2024-05-29T06:06:37.5109359Z ##[debug] { +2024-05-29T06:06:37.5109605Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:37.5109728Z ##[debug] "name": "default_logic", +2024-05-29T06:06:37.5109843Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5110213Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:37.5110432Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5110516Z ##[debug] }, +2024-05-29T06:06:37.5110604Z ##[debug] { +2024-05-29T06:06:37.5110724Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:37.5110848Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:37.5110964Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5111330Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:37.5111451Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5111540Z ##[debug] }, +2024-05-29T06:06:37.5111623Z ##[debug] { +2024-05-29T06:06:37.5111745Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:37.5111914Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:37.5112041Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5112400Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:37.5112516Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5112608Z ##[debug] }, +2024-05-29T06:06:37.5112691Z ##[debug] { +2024-05-29T06:06:37.5112808Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:37.5112923Z ##[debug] "name": "skip-list", +2024-05-29T06:06:37.5113035Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5113401Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:37.5113523Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5113607Z ##[debug] }, +2024-05-29T06:06:37.5113697Z ##[debug] { +2024-05-29T06:06:37.5113816Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:37.5114019Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:37.5114139Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5114492Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:37.5114604Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5114695Z ##[debug] }, +2024-05-29T06:06:37.5114778Z ##[debug] { +2024-05-29T06:06:37.5114899Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:37.5115123Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:37.5115240Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5115600Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:37.5115715Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5115803Z ##[debug] }, +2024-05-29T06:06:37.5115892Z ##[debug] { +2024-05-29T06:06:37.5116010Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:37.5116118Z ##[debug] "name": "wait-list", +2024-05-29T06:06:37.5116238Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5116595Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:37.5116717Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5116800Z ##[debug] } +2024-05-29T06:06:37.5116883Z ##[debug] ] +2024-05-29T06:06:37.5116971Z ##[debug] } +2024-05-29T06:06:37.5117147Z ##[debug] }, +2024-05-29T06:06:37.5117244Z ##[debug] "workflow": { +2024-05-29T06:06:37.5117347Z ##[debug] "name": "Itself", +2024-05-29T06:06:37.5117601Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:37.5117761Z ##[debug] }, +2024-05-29T06:06:37.5117862Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5117971Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:37.5118182Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5118276Z ##[debug] "workflow": { +2024-05-29T06:06:37.5118373Z ##[debug] "name": "Itself", +2024-05-29T06:06:37.5118634Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:37.5118716Z ##[debug] } +2024-05-29T06:06:37.5118797Z ##[debug] } +2024-05-29T06:06:37.5118886Z ##[debug] }, +2024-05-29T06:06:37.5118968Z ##[debug] { +2024-05-29T06:06:37.5119058Z ##[debug] "checkRun": { +2024-05-29T06:06:37.5119179Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:37.5119292Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:37.5119395Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5119767Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:37.5119880Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5119969Z ##[debug] }, +2024-05-29T06:06:37.5120063Z ##[debug] "checkSuite": { +2024-05-29T06:06:37.5120164Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5120279Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:37.5120375Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5120490Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:37.5120604Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5120697Z ##[debug] "workflow": { +2024-05-29T06:06:37.5120794Z ##[debug] "name": "Itself", +2024-05-29T06:06:37.5121062Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:37.5121145Z ##[debug] } +2024-05-29T06:06:37.5121233Z ##[debug] }, +2024-05-29T06:06:37.5121327Z ##[debug] "checkRuns": { +2024-05-29T06:06:37.5121428Z ##[debug] "totalCount": 7, +2024-05-29T06:06:37.5121528Z ##[debug] "pageInfo": { +2024-05-29T06:06:37.5121641Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:37.5121818Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:37.5121906Z ##[debug] }, +2024-05-29T06:06:37.5121997Z ##[debug] "nodes": [ +2024-05-29T06:06:37.5122081Z ##[debug] { +2024-05-29T06:06:37.5122208Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:37.5122329Z ##[debug] "name": "default_logic", +2024-05-29T06:06:37.5122449Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5122820Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:37.5122937Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5123027Z ##[debug] }, +2024-05-29T06:06:37.5123110Z ##[debug] { +2024-05-29T06:06:37.5123233Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:37.5123359Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:37.5123473Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5123835Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:37.5123953Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5124037Z ##[debug] }, +2024-05-29T06:06:37.5124126Z ##[debug] { +2024-05-29T06:06:37.5124242Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:37.5124413Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:37.5124655Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5125007Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:37.5125127Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5125333Z ##[debug] }, +2024-05-29T06:06:37.5125415Z ##[debug] { +2024-05-29T06:06:37.5125537Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:37.5125647Z ##[debug] "name": "skip-list", +2024-05-29T06:06:37.5125762Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5126128Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:37.5126244Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5126327Z ##[debug] }, +2024-05-29T06:06:37.5126416Z ##[debug] { +2024-05-29T06:06:37.5126533Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:37.5126744Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:37.5126861Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5127214Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:37.5127338Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5127423Z ##[debug] }, +2024-05-29T06:06:37.5127507Z ##[debug] { +2024-05-29T06:06:37.5127631Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:37.5127853Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:37.5127974Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5128434Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:37.5128551Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5128646Z ##[debug] }, +2024-05-29T06:06:37.5128729Z ##[debug] { +2024-05-29T06:06:37.5128847Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:37.5128959Z ##[debug] "name": "wait-list", +2024-05-29T06:06:37.5129168Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5129596Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:37.5129961Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5130117Z ##[debug] } +2024-05-29T06:06:37.5130234Z ##[debug] ] +2024-05-29T06:06:37.5130370Z ##[debug] } +2024-05-29T06:06:37.5130521Z ##[debug] }, +2024-05-29T06:06:37.5130646Z ##[debug] "workflow": { +2024-05-29T06:06:37.5130828Z ##[debug] "name": "Itself", +2024-05-29T06:06:37.5131160Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:37.5131278Z ##[debug] }, +2024-05-29T06:06:37.5131428Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5131607Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:37.5131747Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5131922Z ##[debug] "workflow": { +2024-05-29T06:06:37.5132094Z ##[debug] "name": "Itself", +2024-05-29T06:06:37.5132404Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:37.5132555Z ##[debug] } +2024-05-29T06:06:37.5132669Z ##[debug] } +2024-05-29T06:06:37.5132783Z ##[debug] }, +2024-05-29T06:06:37.5132982Z ##[debug] { +2024-05-29T06:06:37.5133107Z ##[debug] "checkRun": { +2024-05-29T06:06:37.5133267Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:37.5133496Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:37.5133632Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5134152Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:37.5134406Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5134520Z ##[debug] }, +2024-05-29T06:06:37.5134647Z ##[debug] "checkSuite": { +2024-05-29T06:06:37.5134817Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5135064Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:37.5135299Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5135450Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:37.5135593Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5135757Z ##[debug] "workflow": { +2024-05-29T06:06:37.5135886Z ##[debug] "name": "Itself", +2024-05-29T06:06:37.5136176Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:37.5136389Z ##[debug] } +2024-05-29T06:06:37.5136505Z ##[debug] }, +2024-05-29T06:06:37.5136633Z ##[debug] "checkRuns": { +2024-05-29T06:06:37.5136807Z ##[debug] "totalCount": 7, +2024-05-29T06:06:37.5136936Z ##[debug] "pageInfo": { +2024-05-29T06:06:37.5137134Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:37.5137386Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:37.5137511Z ##[debug] }, +2024-05-29T06:06:37.5137670Z ##[debug] "nodes": [ +2024-05-29T06:06:37.5137784Z ##[debug] { +2024-05-29T06:06:37.5137940Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:37.5138414Z ##[debug] "name": "default_logic", +2024-05-29T06:06:37.5138693Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5139388Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:37.5139579Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5139696Z ##[debug] }, +2024-05-29T06:06:37.5139864Z ##[debug] { +2024-05-29T06:06:37.5140025Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:37.5140230Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:37.5140417Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5140818Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:37.5140972Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5141141Z ##[debug] }, +2024-05-29T06:06:37.5141256Z ##[debug] { +2024-05-29T06:06:37.5208463Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:37.5208794Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:37.5208977Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5209564Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:37.5209733Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5209870Z ##[debug] }, +2024-05-29T06:06:37.5210005Z ##[debug] { +2024-05-29T06:06:37.5210194Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:37.5210367Z ##[debug] "name": "skip-list", +2024-05-29T06:06:37.5210575Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5211189Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:37.5211405Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5211560Z ##[debug] }, +2024-05-29T06:06:37.5211700Z ##[debug] { +2024-05-29T06:06:37.5211913Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:37.5212237Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:37.5212422Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5213347Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:37.5213560Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5213699Z ##[debug] }, +2024-05-29T06:06:37.5213845Z ##[debug] { +2024-05-29T06:06:37.5214045Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:37.5214572Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:37.5214773Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5215417Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:37.5215621Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5215764Z ##[debug] }, +2024-05-29T06:06:37.5215909Z ##[debug] { +2024-05-29T06:06:37.5216121Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:37.5216309Z ##[debug] "name": "wait-list", +2024-05-29T06:06:37.5216516Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5217139Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:37.5217336Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5217493Z ##[debug] } +2024-05-29T06:06:37.5217632Z ##[debug] ] +2024-05-29T06:06:37.5217771Z ##[debug] } +2024-05-29T06:06:37.5217914Z ##[debug] }, +2024-05-29T06:06:37.5218264Z ##[debug] "workflow": { +2024-05-29T06:06:37.5218434Z ##[debug] "name": "Itself", +2024-05-29T06:06:37.5218886Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:37.5219031Z ##[debug] }, +2024-05-29T06:06:37.5219188Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5219364Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:37.5219552Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5219721Z ##[debug] "workflow": { +2024-05-29T06:06:37.5219895Z ##[debug] "name": "Itself", +2024-05-29T06:06:37.5220308Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:37.5220450Z ##[debug] } +2024-05-29T06:06:37.5220583Z ##[debug] } +2024-05-29T06:06:37.5220723Z ##[debug] }, +2024-05-29T06:06:37.5220867Z ##[debug] { +2024-05-29T06:06:37.5220998Z ##[debug] "checkRun": { +2024-05-29T06:06:37.5221114Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:37.5221222Z ##[debug] "name": "skip-list", +2024-05-29T06:06:37.5221324Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5221713Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:37.5221825Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5221909Z ##[debug] }, +2024-05-29T06:06:37.5222012Z ##[debug] "checkSuite": { +2024-05-29T06:06:37.5222119Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5222233Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:37.5222338Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5222454Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:37.5222570Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5222676Z ##[debug] "workflow": { +2024-05-29T06:06:37.5222775Z ##[debug] "name": "Itself", +2024-05-29T06:06:37.5223045Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:37.5223130Z ##[debug] } +2024-05-29T06:06:37.5223212Z ##[debug] }, +2024-05-29T06:06:37.5223311Z ##[debug] "checkRuns": { +2024-05-29T06:06:37.5223409Z ##[debug] "totalCount": 7, +2024-05-29T06:06:37.5223505Z ##[debug] "pageInfo": { +2024-05-29T06:06:37.5223622Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:37.5223802Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:37.5223886Z ##[debug] }, +2024-05-29T06:06:37.5224160Z ##[debug] "nodes": [ +2024-05-29T06:06:37.5224250Z ##[debug] { +2024-05-29T06:06:37.5224377Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:37.5224504Z ##[debug] "name": "default_logic", +2024-05-29T06:06:37.5224725Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5225107Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:37.5225228Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5225312Z ##[debug] }, +2024-05-29T06:06:37.5225402Z ##[debug] { +2024-05-29T06:06:37.5225531Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:37.5225658Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:37.5225788Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5226166Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:37.5226294Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5226379Z ##[debug] }, +2024-05-29T06:06:37.5226463Z ##[debug] { +2024-05-29T06:06:37.5226588Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:37.5226766Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:37.5226883Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5227255Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:37.5227371Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5227456Z ##[debug] }, +2024-05-29T06:06:37.5227550Z ##[debug] { +2024-05-29T06:06:37.5227666Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:37.5227780Z ##[debug] "name": "skip-list", +2024-05-29T06:06:37.5227892Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5228504Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:37.5228633Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5228717Z ##[debug] }, +2024-05-29T06:06:37.5228805Z ##[debug] { +2024-05-29T06:06:37.5228930Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:37.5229129Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:37.5229251Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5229606Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:37.5229720Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5229815Z ##[debug] }, +2024-05-29T06:06:37.5229898Z ##[debug] { +2024-05-29T06:06:37.5230017Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:37.5230246Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:37.5230362Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5230723Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:37.5230845Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5230928Z ##[debug] }, +2024-05-29T06:06:37.5231020Z ##[debug] { +2024-05-29T06:06:37.5231169Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:37.5231278Z ##[debug] "name": "wait-list", +2024-05-29T06:06:37.5231401Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5231756Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:37.5231880Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5231967Z ##[debug] } +2024-05-29T06:06:37.5232174Z ##[debug] ] +2024-05-29T06:06:37.5232269Z ##[debug] } +2024-05-29T06:06:37.5232358Z ##[debug] }, +2024-05-29T06:06:37.5232454Z ##[debug] "workflow": { +2024-05-29T06:06:37.5232559Z ##[debug] "name": "Itself", +2024-05-29T06:06:37.5232922Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:37.5233007Z ##[debug] }, +2024-05-29T06:06:37.5233112Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5233226Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:37.5233335Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5233437Z ##[debug] "workflow": { +2024-05-29T06:06:37.5233542Z ##[debug] "name": "Itself", +2024-05-29T06:06:37.5233805Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:37.5233889Z ##[debug] } +2024-05-29T06:06:37.5233973Z ##[debug] } +2024-05-29T06:06:37.5234063Z ##[debug] }, +2024-05-29T06:06:37.5234149Z ##[debug] { +2024-05-29T06:06:37.5234244Z ##[debug] "checkRun": { +2024-05-29T06:06:37.5234362Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:37.5234558Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:37.5234668Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5235040Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:37.5235148Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5235237Z ##[debug] }, +2024-05-29T06:06:37.5235333Z ##[debug] "checkSuite": { +2024-05-29T06:06:37.5235436Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5235548Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:37.5235646Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5235762Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:37.5235880Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5235983Z ##[debug] "workflow": { +2024-05-29T06:06:37.5236083Z ##[debug] "name": "Itself", +2024-05-29T06:06:37.5236348Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:37.5236433Z ##[debug] } +2024-05-29T06:06:37.5236522Z ##[debug] }, +2024-05-29T06:06:37.5236631Z ##[debug] "checkRuns": { +2024-05-29T06:06:37.5236732Z ##[debug] "totalCount": 7, +2024-05-29T06:06:37.5236835Z ##[debug] "pageInfo": { +2024-05-29T06:06:37.5236949Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:37.5237134Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:37.5237226Z ##[debug] }, +2024-05-29T06:06:37.5237318Z ##[debug] "nodes": [ +2024-05-29T06:06:37.5237402Z ##[debug] { +2024-05-29T06:06:37.5237535Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:37.5237660Z ##[debug] "name": "default_logic", +2024-05-29T06:06:37.5237783Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5238329Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:37.5238459Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5238557Z ##[debug] }, +2024-05-29T06:06:37.5238639Z ##[debug] { +2024-05-29T06:06:37.5238762Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:37.5238888Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:37.5239005Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5239367Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:37.5239492Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5239577Z ##[debug] }, +2024-05-29T06:06:37.5239669Z ##[debug] { +2024-05-29T06:06:37.5239787Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:37.5240103Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:37.5240228Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5240580Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:37.5240819Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5240912Z ##[debug] }, +2024-05-29T06:06:37.5240996Z ##[debug] { +2024-05-29T06:06:37.5241114Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:37.5241230Z ##[debug] "name": "skip-list", +2024-05-29T06:06:37.5241345Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5241732Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:37.5241857Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5241941Z ##[debug] }, +2024-05-29T06:06:37.5242039Z ##[debug] { +2024-05-29T06:06:37.5242158Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:37.5242355Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:37.5242475Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5242829Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:37.5242951Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5243036Z ##[debug] }, +2024-05-29T06:06:37.5243119Z ##[debug] { +2024-05-29T06:06:37.5243240Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:37.5243462Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:37.5243576Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5243942Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:37.5244055Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5244145Z ##[debug] }, +2024-05-29T06:06:37.5244228Z ##[debug] { +2024-05-29T06:06:37.5244345Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:37.5244467Z ##[debug] "name": "wait-list", +2024-05-29T06:06:37.5244578Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5244944Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:37.5245066Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5245152Z ##[debug] } +2024-05-29T06:06:37.5245244Z ##[debug] ] +2024-05-29T06:06:37.5245328Z ##[debug] } +2024-05-29T06:06:37.5245416Z ##[debug] }, +2024-05-29T06:06:37.5245517Z ##[debug] "workflow": { +2024-05-29T06:06:37.5245616Z ##[debug] "name": "Itself", +2024-05-29T06:06:37.5245875Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:37.5245969Z ##[debug] }, +2024-05-29T06:06:37.5246065Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5246185Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:37.5246319Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5246412Z ##[debug] "workflow": { +2024-05-29T06:06:37.5246508Z ##[debug] "name": "Itself", +2024-05-29T06:06:37.5246772Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:37.5246854Z ##[debug] } +2024-05-29T06:06:37.5246944Z ##[debug] } +2024-05-29T06:06:37.5247026Z ##[debug] }, +2024-05-29T06:06:37.5247112Z ##[debug] { +2024-05-29T06:06:37.5247209Z ##[debug] "checkRun": { +2024-05-29T06:06:37.5247319Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:37.5247532Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:37.5247734Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5248254Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:37.5248367Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5248613Z ##[debug] }, +2024-05-29T06:06:37.5248708Z ##[debug] "checkSuite": { +2024-05-29T06:06:37.5248820Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5248928Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:37.5249026Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5249147Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:37.5249258Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5249351Z ##[debug] "workflow": { +2024-05-29T06:06:37.5249453Z ##[debug] "name": "Itself", +2024-05-29T06:06:37.5249713Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:37.5249797Z ##[debug] } +2024-05-29T06:06:37.5249896Z ##[debug] }, +2024-05-29T06:06:37.5249990Z ##[debug] "checkRuns": { +2024-05-29T06:06:37.5250091Z ##[debug] "totalCount": 7, +2024-05-29T06:06:37.5250192Z ##[debug] "pageInfo": { +2024-05-29T06:06:37.5250302Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:37.5250493Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:37.5250576Z ##[debug] }, +2024-05-29T06:06:37.5250665Z ##[debug] "nodes": [ +2024-05-29T06:06:37.5250751Z ##[debug] { +2024-05-29T06:06:37.5250888Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:37.5251008Z ##[debug] "name": "default_logic", +2024-05-29T06:06:37.5251125Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5251492Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:37.5251606Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5251696Z ##[debug] }, +2024-05-29T06:06:37.5251785Z ##[debug] { +2024-05-29T06:06:37.5251903Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:37.5252026Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:37.5252146Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5252508Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:37.5252628Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5252711Z ##[debug] }, +2024-05-29T06:06:37.5252794Z ##[debug] { +2024-05-29T06:06:37.5252913Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:37.5253080Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:37.5253192Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5253549Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:37.5253662Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5253751Z ##[debug] }, +2024-05-29T06:06:37.5253834Z ##[debug] { +2024-05-29T06:06:37.5253947Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:37.5254068Z ##[debug] "name": "skip-list", +2024-05-29T06:06:37.5254179Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5254544Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:37.5254666Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5254750Z ##[debug] }, +2024-05-29T06:06:37.5254839Z ##[debug] { +2024-05-29T06:06:37.5254958Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:37.5255152Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:37.5255383Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5255749Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:37.5255864Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5256028Z ##[debug] }, +2024-05-29T06:06:37.5256113Z ##[debug] { +2024-05-29T06:06:37.5256236Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:37.5256458Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:37.5256574Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5256939Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:37.5257055Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5257139Z ##[debug] }, +2024-05-29T06:06:37.5257229Z ##[debug] { +2024-05-29T06:06:37.5257352Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:37.5257460Z ##[debug] "name": "wait-list", +2024-05-29T06:06:37.5257577Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5257933Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:37.5258198Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5258308Z ##[debug] } +2024-05-29T06:06:37.5258392Z ##[debug] ] +2024-05-29T06:06:37.5258479Z ##[debug] } +2024-05-29T06:06:37.5258561Z ##[debug] }, +2024-05-29T06:06:37.5258654Z ##[debug] "workflow": { +2024-05-29T06:06:37.5258755Z ##[debug] "name": "Itself", +2024-05-29T06:06:37.5259015Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:37.5259099Z ##[debug] }, +2024-05-29T06:06:37.5259200Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5259308Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:37.5259429Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5259523Z ##[debug] "workflow": { +2024-05-29T06:06:37.5259620Z ##[debug] "name": "Itself", +2024-05-29T06:06:37.5259877Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:37.5259965Z ##[debug] } +2024-05-29T06:06:37.5260047Z ##[debug] } +2024-05-29T06:06:37.5260138Z ##[debug] }, +2024-05-29T06:06:37.5260218Z ##[debug] { +2024-05-29T06:06:37.5260310Z ##[debug] "checkRun": { +2024-05-29T06:06:37.5260426Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:37.5260529Z ##[debug] "name": "wait-list", +2024-05-29T06:06:37.5260633Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5261004Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:37.5261111Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5261202Z ##[debug] }, +2024-05-29T06:06:37.5261298Z ##[debug] "checkSuite": { +2024-05-29T06:06:37.5261399Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5261511Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:37.5261607Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5261724Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:37.5261840Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5261934Z ##[debug] "workflow": { +2024-05-29T06:06:37.5262033Z ##[debug] "name": "Itself", +2024-05-29T06:06:37.5262297Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:37.5262380Z ##[debug] } +2024-05-29T06:06:37.5262467Z ##[debug] }, +2024-05-29T06:06:37.5262561Z ##[debug] "checkRuns": { +2024-05-29T06:06:37.5262658Z ##[debug] "totalCount": 7, +2024-05-29T06:06:37.5262758Z ##[debug] "pageInfo": { +2024-05-29T06:06:37.5262869Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:37.5263163Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:37.5263257Z ##[debug] }, +2024-05-29T06:06:37.5263347Z ##[debug] "nodes": [ +2024-05-29T06:06:37.5263429Z ##[debug] { +2024-05-29T06:06:37.5263659Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:37.5263778Z ##[debug] "name": "default_logic", +2024-05-29T06:06:37.5263898Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5264263Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:37.5264379Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5264467Z ##[debug] }, +2024-05-29T06:06:37.5264550Z ##[debug] { +2024-05-29T06:06:37.5264666Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:37.5264788Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:37.5264906Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5265259Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:37.5265375Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5265467Z ##[debug] }, +2024-05-29T06:06:37.5265556Z ##[debug] { +2024-05-29T06:06:37.5265673Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:37.5265846Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:37.5265964Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5266308Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:37.5266427Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5266509Z ##[debug] }, +2024-05-29T06:06:37.5266592Z ##[debug] { +2024-05-29T06:06:37.5266714Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:37.5266826Z ##[debug] "name": "skip-list", +2024-05-29T06:06:37.5266939Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5267304Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:37.5267424Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5267507Z ##[debug] }, +2024-05-29T06:06:37.5267595Z ##[debug] { +2024-05-29T06:06:37.5267712Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:37.5267915Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:37.5268029Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5268605Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:37.5268727Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5268810Z ##[debug] }, +2024-05-29T06:06:37.5268897Z ##[debug] { +2024-05-29T06:06:37.5269017Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:37.5269265Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:37.5269390Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5269751Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:37.5269865Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5269954Z ##[debug] }, +2024-05-29T06:06:37.5270036Z ##[debug] { +2024-05-29T06:06:37.5270151Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:37.5270262Z ##[debug] "name": "wait-list", +2024-05-29T06:06:37.5270372Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5270734Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:37.5271004Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5271142Z ##[debug] } +2024-05-29T06:06:37.5271228Z ##[debug] ] +2024-05-29T06:06:37.5271310Z ##[debug] } +2024-05-29T06:06:37.5271391Z ##[debug] }, +2024-05-29T06:06:37.5271591Z ##[debug] "workflow": { +2024-05-29T06:06:37.5271687Z ##[debug] "name": "Itself", +2024-05-29T06:06:37.5271948Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:37.5272036Z ##[debug] }, +2024-05-29T06:06:37.5272132Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5272241Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:37.5272355Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5272446Z ##[debug] "workflow": { +2024-05-29T06:06:37.5272549Z ##[debug] "name": "Itself", +2024-05-29T06:06:37.5272809Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:37.5272895Z ##[debug] } +2024-05-29T06:06:37.5272984Z ##[debug] } +2024-05-29T06:06:37.5273065Z ##[debug] }, +2024-05-29T06:06:37.5273146Z ##[debug] { +2024-05-29T06:06:37.5273242Z ##[debug] "checkRun": { +2024-05-29T06:06:37.5273350Z ##[debug] "databaseId": 25536411358, +2024-05-29T06:06:37.5273477Z ##[debug] "name": "dependency-review", +2024-05-29T06:06:37.5273585Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5273955Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", +2024-05-29T06:06:37.5274067Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5274151Z ##[debug] }, +2024-05-29T06:06:37.5274246Z ##[debug] "checkSuite": { +2024-05-29T06:06:37.5274352Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5274458Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:37.5274554Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5274678Z ##[debug] "databaseId": 9281068690, +2024-05-29T06:06:37.5274790Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5274883Z ##[debug] "workflow": { +2024-05-29T06:06:37.5275028Z ##[debug] "name": "💂➕", +2024-05-29T06:06:37.5275355Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:37.5275452Z ##[debug] } +2024-05-29T06:06:37.5275539Z ##[debug] }, +2024-05-29T06:06:37.5275633Z ##[debug] "checkRuns": { +2024-05-29T06:06:37.5275736Z ##[debug] "totalCount": 1, +2024-05-29T06:06:37.5275830Z ##[debug] "pageInfo": { +2024-05-29T06:06:37.5275943Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:37.5276128Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtt4=" +2024-05-29T06:06:37.5276212Z ##[debug] }, +2024-05-29T06:06:37.5276301Z ##[debug] "nodes": [ +2024-05-29T06:06:37.5276390Z ##[debug] { +2024-05-29T06:06:37.5276518Z ##[debug] "databaseId": 25536411358, +2024-05-29T06:06:37.5276653Z ##[debug] "name": "dependency-review", +2024-05-29T06:06:37.5276777Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:37.5277148Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", +2024-05-29T06:06:37.5277278Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:37.5277361Z ##[debug] } +2024-05-29T06:06:37.5277444Z ##[debug] ] +2024-05-29T06:06:37.5277531Z ##[debug] } +2024-05-29T06:06:37.5277612Z ##[debug] }, +2024-05-29T06:06:37.5277705Z ##[debug] "workflow": { +2024-05-29T06:06:37.5277806Z ##[debug] "name": "💂➕", +2024-05-29T06:06:37.5278309Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:37.5278398Z ##[debug] }, +2024-05-29T06:06:37.5278501Z ##[debug] "workflowRun": { +2024-05-29T06:06:37.5278736Z ##[debug] "databaseId": 9281068690, +2024-05-29T06:06:37.5278850Z ##[debug] "event": "pull_request", +2024-05-29T06:06:37.5278948Z ##[debug] "workflow": { +2024-05-29T06:06:37.5279044Z ##[debug] "name": "💂➕", +2024-05-29T06:06:37.5279359Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:37.5279551Z ##[debug] } +2024-05-29T06:06:37.5279633Z ##[debug] } +2024-05-29T06:06:37.5279720Z ##[debug] } +2024-05-29T06:06:37.5279799Z ##[debug] ], +2024-05-29T06:06:37.5279913Z ##[debug] "elapsedMsec": 986.9570700004697 +2024-05-29T06:06:37.5279997Z ##[debug]} +2024-05-29T06:06:37.5281367Z GH-820-graceperiod.yml(quickstarter-success): [suiteStatus: QUEUED][suiteConclusion: (null)][runStatus: QUEUED][runConclusion: (null)][eventName: pull_request][runURL: https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631] +2024-05-29T06:06:37.5282020Z ##[debug]{ +2024-05-29T06:06:37.5282125Z ##[debug] "label": "filtered", +2024-05-29T06:06:37.5282223Z ##[debug] "report": { +2024-05-29T06:06:37.5282334Z ##[debug] "progress": "in_progress", +2024-05-29T06:06:37.5282451Z ##[debug] "conclusion": "acceptable", +2024-05-29T06:06:37.5282543Z ##[debug] "summaries": [ +2024-05-29T06:06:37.5282631Z ##[debug] { +2024-05-29T06:06:37.5282741Z ##[debug] "acceptable": false, +2024-05-29T06:06:37.5282892Z ##[debug] "workflowPath": "GH-820-graceperiod.yml", +2024-05-29T06:06:37.5283007Z ##[debug] "isSameWorkflow": true, +2024-05-29T06:06:37.5283129Z ##[debug] "eventName": "pull_request", +2024-05-29T06:06:37.5283254Z ##[debug] "checkSuiteStatus": "QUEUED", +2024-05-29T06:06:37.5283383Z ##[debug] "checkSuiteConclusion": null, +2024-05-29T06:06:37.5283499Z ##[debug] "runDatabaseId": 25536443631, +2024-05-29T06:06:37.5283637Z ##[debug] "jobName": "quickstarter-success", +2024-05-29T06:06:37.5284032Z ##[debug] "checkRunUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:37.5284137Z ##[debug] "runStatus": "QUEUED", +2024-05-29T06:06:37.5284245Z ##[debug] "runConclusion": null +2024-05-29T06:06:37.5284327Z ##[debug] } +2024-05-29T06:06:37.5284410Z ##[debug] ] +2024-05-29T06:06:37.5284500Z ##[debug] } +2024-05-29T06:06:37.5284578Z ##[debug]} +2024-05-29T06:06:37.5284684Z some jobs still in progress +2024-05-29T06:06:37.5285011Z ::endgroup:: +2024-05-29T06:06:37.5285108Z ##[endgroup] +2024-05-29T06:06:37.5285321Z Wait about 5 seconds before next polling to reduce API calls. +2024-05-29T06:06:42.4653607Z ::group::Polling 2: 2024-05-29T06:06:42.464Z +2024-05-29T06:06:42.4654182Z ##[group]Polling 2: 2024-05-29T06:06:42.464Z +2024-05-29T06:06:42.8885464Z ##[debug]{ +2024-05-29T06:06:42.8885728Z ##[debug] "label": "rawdata", +2024-05-29T06:06:42.8886027Z ##[debug] "checks": [ +2024-05-29T06:06:42.8886276Z ##[debug] { +2024-05-29T06:06:42.8886503Z ##[debug] "checkRun": { +2024-05-29T06:06:42.8886823Z ##[debug] "databaseId": 25536410411, +2024-05-29T06:06:42.8887161Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:42.8887481Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.8888190Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", +2024-05-29T06:06:42.8888818Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.8889132Z ##[debug] }, +2024-05-29T06:06:42.8889366Z ##[debug] "checkSuite": { +2024-05-29T06:06:42.8889665Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.8890001Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:42.8890319Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.8890645Z ##[debug] "databaseId": 9281068413, +2024-05-29T06:06:42.8890986Z ##[debug] "event": "push", +2024-05-29T06:06:42.8891305Z ##[debug] "workflow": { +2024-05-29T06:06:42.8891623Z ##[debug] "name": "💧", +2024-05-29T06:06:42.8892478Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:42.8892973Z ##[debug] } +2024-05-29T06:06:42.8893212Z ##[debug] }, +2024-05-29T06:06:42.8893451Z ##[debug] "checkRuns": { +2024-05-29T06:06:42.8893738Z ##[debug] "totalCount": 1, +2024-05-29T06:06:42.8894184Z ##[debug] "pageInfo": { +2024-05-29T06:06:42.8894502Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:42.8894921Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWsys=" +2024-05-29T06:06:42.8895306Z ##[debug] }, +2024-05-29T06:06:42.8895554Z ##[debug] "nodes": [ +2024-05-29T06:06:42.8895819Z ##[debug] { +2024-05-29T06:06:42.8896095Z ##[debug] "databaseId": 25536410411, +2024-05-29T06:06:42.8896453Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:42.8896807Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.8897421Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", +2024-05-29T06:06:42.8898207Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.8898657Z ##[debug] } +2024-05-29T06:06:42.8898890Z ##[debug] ] +2024-05-29T06:06:42.8899120Z ##[debug] } +2024-05-29T06:06:42.8899345Z ##[debug] }, +2024-05-29T06:06:42.8899579Z ##[debug] "workflow": { +2024-05-29T06:06:42.8899859Z ##[debug] "name": "💧", +2024-05-29T06:06:42.8900325Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:42.8900806Z ##[debug] }, +2024-05-29T06:06:42.8901040Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.8901345Z ##[debug] "databaseId": 9281068413, +2024-05-29T06:06:42.8901664Z ##[debug] "event": "push", +2024-05-29T06:06:42.8901958Z ##[debug] "workflow": { +2024-05-29T06:06:42.8902239Z ##[debug] "name": "💧", +2024-05-29T06:06:42.8902695Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:42.8903181Z ##[debug] } +2024-05-29T06:06:42.8903407Z ##[debug] } +2024-05-29T06:06:42.8903628Z ##[debug] }, +2024-05-29T06:06:42.8903843Z ##[debug] { +2024-05-29T06:06:42.8904070Z ##[debug] "checkRun": { +2024-05-29T06:06:42.8904362Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:42.8904689Z ##[debug] "name": "build", +2024-05-29T06:06:42.8904987Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.8905581Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:42.8906174Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.8906480Z ##[debug] }, +2024-05-29T06:06:42.8906716Z ##[debug] "checkSuite": { +2024-05-29T06:06:42.8906998Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.8907330Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:42.8907650Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.8907958Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:42.8908510Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.8908840Z ##[debug] "workflow": { +2024-05-29T06:06:42.8909143Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:42.8909620Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:42.8910082Z ##[debug] } +2024-05-29T06:06:42.8910309Z ##[debug] }, +2024-05-29T06:06:42.8910550Z ##[debug] "checkRuns": { +2024-05-29T06:06:42.8910849Z ##[debug] "totalCount": 3, +2024-05-29T06:06:42.8911146Z ##[debug] "pageInfo": { +2024-05-29T06:06:42.8911451Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:42.8911856Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:42.8912245Z ##[debug] }, +2024-05-29T06:06:42.8912480Z ##[debug] "nodes": [ +2024-05-29T06:06:42.8912745Z ##[debug] { +2024-05-29T06:06:42.8913024Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:42.8913506Z ##[debug] "name": "build", +2024-05-29T06:06:42.8913847Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.8914482Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:42.8915212Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.8915539Z ##[debug] }, +2024-05-29T06:06:42.8915784Z ##[debug] { +2024-05-29T06:06:42.8916054Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:42.8916398Z ##[debug] "name": "test", +2024-05-29T06:06:42.8916734Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.8917329Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:42.8917932Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.8918371Z ##[debug] }, +2024-05-29T06:06:42.8918614Z ##[debug] { +2024-05-29T06:06:42.8918887Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:42.8919243Z ##[debug] "name": "typecheck", +2024-05-29T06:06:42.8919590Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.8920190Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:42.8920827Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.8921145Z ##[debug] } +2024-05-29T06:06:42.8921377Z ##[debug] ] +2024-05-29T06:06:42.8921609Z ##[debug] } +2024-05-29T06:06:42.8921831Z ##[debug] }, +2024-05-29T06:06:42.8922054Z ##[debug] "workflow": { +2024-05-29T06:06:42.8922340Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:42.8922803Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:42.8923251Z ##[debug] }, +2024-05-29T06:06:42.8923484Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.8923795Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:42.8924125Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.8924447Z ##[debug] "workflow": { +2024-05-29T06:06:42.8924739Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:42.8925206Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:42.8925664Z ##[debug] } +2024-05-29T06:06:42.8925896Z ##[debug] } +2024-05-29T06:06:42.8926119Z ##[debug] }, +2024-05-29T06:06:42.8926328Z ##[debug] { +2024-05-29T06:06:42.8926554Z ##[debug] "checkRun": { +2024-05-29T06:06:42.8926848Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:42.8927173Z ##[debug] "name": "test", +2024-05-29T06:06:42.8927470Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.8928161Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:42.8928761Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.8929073Z ##[debug] }, +2024-05-29T06:06:42.8929311Z ##[debug] "checkSuite": { +2024-05-29T06:06:42.8929600Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.8929929Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:42.8930261Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.8930568Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:42.8930917Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.8931241Z ##[debug] "workflow": { +2024-05-29T06:06:42.8931543Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:42.8932023Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:42.8932481Z ##[debug] } +2024-05-29T06:06:42.8932718Z ##[debug] }, +2024-05-29T06:06:42.8932959Z ##[debug] "checkRuns": { +2024-05-29T06:06:42.8933253Z ##[debug] "totalCount": 3, +2024-05-29T06:06:42.8933548Z ##[debug] "pageInfo": { +2024-05-29T06:06:42.8934005Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:42.8934424Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:42.8934813Z ##[debug] }, +2024-05-29T06:06:42.8935051Z ##[debug] "nodes": [ +2024-05-29T06:06:42.8935447Z ##[debug] { +2024-05-29T06:06:42.8935727Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:42.8936067Z ##[debug] "name": "build", +2024-05-29T06:06:42.8936402Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.8937019Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:42.8937631Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.8937959Z ##[debug] }, +2024-05-29T06:06:42.8938437Z ##[debug] { +2024-05-29T06:06:42.8938709Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:42.8939053Z ##[debug] "name": "test", +2024-05-29T06:06:42.8939400Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.8940002Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:42.8940605Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.8940934Z ##[debug] }, +2024-05-29T06:06:42.8941178Z ##[debug] { +2024-05-29T06:06:42.8941444Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:42.8941797Z ##[debug] "name": "typecheck", +2024-05-29T06:06:42.8942146Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.8942735Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:42.8943349Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.8943674Z ##[debug] } +2024-05-29T06:06:42.8943902Z ##[debug] ] +2024-05-29T06:06:42.8944133Z ##[debug] } +2024-05-29T06:06:42.8944368Z ##[debug] }, +2024-05-29T06:06:42.8944595Z ##[debug] "workflow": { +2024-05-29T06:06:42.8944882Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:42.8945352Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:42.8945809Z ##[debug] }, +2024-05-29T06:06:42.8946047Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.8946353Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:42.8946684Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.8947013Z ##[debug] "workflow": { +2024-05-29T06:06:42.8947306Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:42.8947781Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:42.8948457Z ##[debug] } +2024-05-29T06:06:42.8948688Z ##[debug] } +2024-05-29T06:06:42.8948906Z ##[debug] }, +2024-05-29T06:06:42.8949116Z ##[debug] { +2024-05-29T06:06:42.8949342Z ##[debug] "checkRun": { +2024-05-29T06:06:42.8949637Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:42.8949967Z ##[debug] "name": "typecheck", +2024-05-29T06:06:42.8950287Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.8950888Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:42.8951485Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.8951790Z ##[debug] }, +2024-05-29T06:06:42.8952031Z ##[debug] "checkSuite": { +2024-05-29T06:06:42.8952316Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.8952646Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:42.8952972Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.8953277Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:42.8953628Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.8953953Z ##[debug] "workflow": { +2024-05-29T06:06:42.8954253Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:42.8954863Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:42.8955321Z ##[debug] } +2024-05-29T06:06:42.8955558Z ##[debug] }, +2024-05-29T06:06:42.8955791Z ##[debug] "checkRuns": { +2024-05-29T06:06:42.8956181Z ##[debug] "totalCount": 3, +2024-05-29T06:06:42.8956479Z ##[debug] "pageInfo": { +2024-05-29T06:06:42.8956774Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:42.8957185Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:42.8957574Z ##[debug] }, +2024-05-29T06:06:42.8957810Z ##[debug] "nodes": [ +2024-05-29T06:06:42.8958180Z ##[debug] { +2024-05-29T06:06:42.8958461Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:42.8958799Z ##[debug] "name": "build", +2024-05-29T06:06:42.8959130Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.8959744Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:42.8960353Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.8960677Z ##[debug] }, +2024-05-29T06:06:42.8960919Z ##[debug] { +2024-05-29T06:06:42.8961186Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:42.8961535Z ##[debug] "name": "test", +2024-05-29T06:06:42.8961862Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.8962452Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:42.8963046Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.8963363Z ##[debug] }, +2024-05-29T06:06:42.8963599Z ##[debug] { +2024-05-29T06:06:42.8963864Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:42.8964212Z ##[debug] "name": "typecheck", +2024-05-29T06:06:42.8964558Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.8965150Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:42.8965758Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.8966073Z ##[debug] } +2024-05-29T06:06:42.8966313Z ##[debug] ] +2024-05-29T06:06:42.8966544Z ##[debug] } +2024-05-29T06:06:42.8966768Z ##[debug] }, +2024-05-29T06:06:42.8966991Z ##[debug] "workflow": { +2024-05-29T06:06:42.8967272Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:42.8967728Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:42.8968274Z ##[debug] }, +2024-05-29T06:06:42.8968509Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.8968809Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:42.8969145Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.8969451Z ##[debug] "workflow": { +2024-05-29T06:06:42.8969744Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:42.8970206Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:42.8970653Z ##[debug] } +2024-05-29T06:06:42.8970880Z ##[debug] } +2024-05-29T06:06:42.8971099Z ##[debug] }, +2024-05-29T06:06:42.8971315Z ##[debug] { +2024-05-29T06:06:42.8971539Z ##[debug] "checkRun": { +2024-05-29T06:06:42.8971829Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:42.8972148Z ##[debug] "name": "typos", +2024-05-29T06:06:42.8972444Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.8973029Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:42.8973615Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.8973914Z ##[debug] }, +2024-05-29T06:06:42.8974152Z ##[debug] "checkSuite": { +2024-05-29T06:06:42.8974439Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.8974887Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:42.8975214Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.8975516Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:42.8975862Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.8976186Z ##[debug] "workflow": { +2024-05-29T06:06:42.8976588Z ##[debug] "name": "👕", +2024-05-29T06:06:42.8977039Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:42.8977508Z ##[debug] } +2024-05-29T06:06:42.8977745Z ##[debug] }, +2024-05-29T06:06:42.8977977Z ##[debug] "checkRuns": { +2024-05-29T06:06:42.8978486Z ##[debug] "totalCount": 4, +2024-05-29T06:06:42.8978787Z ##[debug] "pageInfo": { +2024-05-29T06:06:42.8979084Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:42.8979492Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:42.8979880Z ##[debug] }, +2024-05-29T06:06:42.8980115Z ##[debug] "nodes": [ +2024-05-29T06:06:42.8980392Z ##[debug] { +2024-05-29T06:06:42.8980674Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:42.8981020Z ##[debug] "name": "typos", +2024-05-29T06:06:42.8981353Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.8981961Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:42.8982565Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.8982892Z ##[debug] }, +2024-05-29T06:06:42.8983134Z ##[debug] { +2024-05-29T06:06:42.8983399Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:42.8983744Z ##[debug] "name": "dprint", +2024-05-29T06:06:42.8984077Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.8984669Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:42.8985268Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.8985594Z ##[debug] }, +2024-05-29T06:06:42.8985832Z ##[debug] { +2024-05-29T06:06:42.8986097Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:42.8986447Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:42.8986801Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.8987384Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:42.8987990Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.8988411Z ##[debug] }, +2024-05-29T06:06:42.8988643Z ##[debug] { +2024-05-29T06:06:42.8988913Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:42.8989255Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:42.8989592Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.8990194Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:42.8990809Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.8991128Z ##[debug] } +2024-05-29T06:06:42.8991355Z ##[debug] ] +2024-05-29T06:06:42.8991586Z ##[debug] } +2024-05-29T06:06:42.8991820Z ##[debug] }, +2024-05-29T06:06:42.8992045Z ##[debug] "workflow": { +2024-05-29T06:06:42.8992322Z ##[debug] "name": "👕", +2024-05-29T06:06:42.8992759Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:42.8993216Z ##[debug] }, +2024-05-29T06:06:42.8993448Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.8993751Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:42.8994080Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.8994398Z ##[debug] "workflow": { +2024-05-29T06:06:42.8994677Z ##[debug] "name": "👕", +2024-05-29T06:06:42.8995293Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:42.8995760Z ##[debug] } +2024-05-29T06:06:42.8995987Z ##[debug] } +2024-05-29T06:06:42.8996200Z ##[debug] }, +2024-05-29T06:06:42.8996418Z ##[debug] { +2024-05-29T06:06:42.8996641Z ##[debug] "checkRun": { +2024-05-29T06:06:42.8997031Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:42.8997359Z ##[debug] "name": "dprint", +2024-05-29T06:06:42.8997663Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.8998392Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:42.8998980Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.8999284Z ##[debug] }, +2024-05-29T06:06:42.8999518Z ##[debug] "checkSuite": { +2024-05-29T06:06:42.8999800Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9000126Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:42.9000446Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9000757Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:42.9001105Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9001429Z ##[debug] "workflow": { +2024-05-29T06:06:42.9001715Z ##[debug] "name": "👕", +2024-05-29T06:06:42.9002172Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:42.9002635Z ##[debug] } +2024-05-29T06:06:42.9002863Z ##[debug] }, +2024-05-29T06:06:42.9003103Z ##[debug] "checkRuns": { +2024-05-29T06:06:42.9003399Z ##[debug] "totalCount": 4, +2024-05-29T06:06:42.9003696Z ##[debug] "pageInfo": { +2024-05-29T06:06:42.9004001Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:42.9004409Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:42.9004791Z ##[debug] }, +2024-05-29T06:06:42.9005031Z ##[debug] "nodes": [ +2024-05-29T06:06:42.9005294Z ##[debug] { +2024-05-29T06:06:42.9005572Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:42.9005913Z ##[debug] "name": "typos", +2024-05-29T06:06:42.9006242Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9006847Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:42.9007457Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9007780Z ##[debug] }, +2024-05-29T06:06:42.9008022Z ##[debug] { +2024-05-29T06:06:42.9008400Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:42.9008753Z ##[debug] "name": "dprint", +2024-05-29T06:06:42.9009090Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9009688Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:42.9010296Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9010620Z ##[debug] }, +2024-05-29T06:06:42.9010868Z ##[debug] { +2024-05-29T06:06:42.9011140Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:42.9011489Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:42.9011840Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9012432Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:42.9013043Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9013361Z ##[debug] }, +2024-05-29T06:06:42.9013592Z ##[debug] { +2024-05-29T06:06:42.9013862Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:42.9014205Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:42.9014536Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9015140Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:42.9015895Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9016217Z ##[debug] } +2024-05-29T06:06:42.9016452Z ##[debug] ] +2024-05-29T06:06:42.9016683Z ##[debug] } +2024-05-29T06:06:42.9016900Z ##[debug] }, +2024-05-29T06:06:42.9017236Z ##[debug] "workflow": { +2024-05-29T06:06:42.9017511Z ##[debug] "name": "👕", +2024-05-29T06:06:42.9017947Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:42.9018506Z ##[debug] }, +2024-05-29T06:06:42.9018739Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9019043Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:42.9019374Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9019691Z ##[debug] "workflow": { +2024-05-29T06:06:42.9019968Z ##[debug] "name": "👕", +2024-05-29T06:06:42.9020407Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:42.9020867Z ##[debug] } +2024-05-29T06:06:42.9021098Z ##[debug] } +2024-05-29T06:06:42.9021314Z ##[debug] }, +2024-05-29T06:06:42.9021531Z ##[debug] { +2024-05-29T06:06:42.9021755Z ##[debug] "checkRun": { +2024-05-29T06:06:42.9022039Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:42.9022379Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:42.9022699Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9023289Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:42.9023889Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9024198Z ##[debug] }, +2024-05-29T06:06:42.9024425Z ##[debug] "checkSuite": { +2024-05-29T06:06:42.9024714Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9025045Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:42.9025359Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9025675Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:42.9026029Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9026354Z ##[debug] "workflow": { +2024-05-29T06:06:42.9026638Z ##[debug] "name": "👕", +2024-05-29T06:06:42.9027093Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:42.9027567Z ##[debug] } +2024-05-29T06:06:42.9027794Z ##[debug] }, +2024-05-29T06:06:42.9028034Z ##[debug] "checkRuns": { +2024-05-29T06:06:42.9028438Z ##[debug] "totalCount": 4, +2024-05-29T06:06:42.9028736Z ##[debug] "pageInfo": { +2024-05-29T06:06:42.9029039Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:42.9029446Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:42.9029832Z ##[debug] }, +2024-05-29T06:06:42.9030075Z ##[debug] "nodes": [ +2024-05-29T06:06:42.9030340Z ##[debug] { +2024-05-29T06:06:42.9030613Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:42.9030961Z ##[debug] "name": "typos", +2024-05-29T06:06:42.9031298Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9031907Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:42.9032530Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9032854Z ##[debug] }, +2024-05-29T06:06:42.9033088Z ##[debug] { +2024-05-29T06:06:42.9033361Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:42.9033702Z ##[debug] "name": "dprint", +2024-05-29T06:06:42.9034067Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9034660Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:42.9035270Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9035593Z ##[debug] }, +2024-05-29T06:06:42.9035829Z ##[debug] { +2024-05-29T06:06:42.9036229Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:42.9036581Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:42.9036922Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9037518Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:42.9038369Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9038689Z ##[debug] }, +2024-05-29T06:06:42.9038921Z ##[debug] { +2024-05-29T06:06:42.9039189Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:42.9039529Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:42.9039861Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9040466Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:42.9041082Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9041403Z ##[debug] } +2024-05-29T06:06:42.9041641Z ##[debug] ] +2024-05-29T06:06:42.9041873Z ##[debug] } +2024-05-29T06:06:42.9042092Z ##[debug] }, +2024-05-29T06:06:42.9042325Z ##[debug] "workflow": { +2024-05-29T06:06:42.9042601Z ##[debug] "name": "👕", +2024-05-29T06:06:42.9043041Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:42.9043504Z ##[debug] }, +2024-05-29T06:06:42.9043740Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9044038Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:42.9044375Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9044696Z ##[debug] "workflow": { +2024-05-29T06:06:42.9044970Z ##[debug] "name": "👕", +2024-05-29T06:06:42.9045414Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:42.9045876Z ##[debug] } +2024-05-29T06:06:42.9046102Z ##[debug] } +2024-05-29T06:06:42.9046317Z ##[debug] }, +2024-05-29T06:06:42.9046546Z ##[debug] { +2024-05-29T06:06:42.9046767Z ##[debug] "checkRun": { +2024-05-29T06:06:42.9047056Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:42.9047385Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:42.9047695Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9048389Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:42.9048985Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9049289Z ##[debug] }, +2024-05-29T06:06:42.9049517Z ##[debug] "checkSuite": { +2024-05-29T06:06:42.9049809Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9067767Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:42.9068296Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9068636Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:42.9069001Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9069348Z ##[debug] "workflow": { +2024-05-29T06:06:42.9069668Z ##[debug] "name": "👕", +2024-05-29T06:06:42.9070135Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:42.9070602Z ##[debug] } +2024-05-29T06:06:42.9070865Z ##[debug] }, +2024-05-29T06:06:42.9071110Z ##[debug] "checkRuns": { +2024-05-29T06:06:42.9071403Z ##[debug] "totalCount": 4, +2024-05-29T06:06:42.9071720Z ##[debug] "pageInfo": { +2024-05-29T06:06:42.9072034Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:42.9072454Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:42.9072843Z ##[debug] }, +2024-05-29T06:06:42.9073095Z ##[debug] "nodes": [ +2024-05-29T06:06:42.9073365Z ##[debug] { +2024-05-29T06:06:42.9073641Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:42.9073994Z ##[debug] "name": "typos", +2024-05-29T06:06:42.9074548Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9075172Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:42.9075793Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9076119Z ##[debug] }, +2024-05-29T06:06:42.9076475Z ##[debug] { +2024-05-29T06:06:42.9076760Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:42.9077105Z ##[debug] "name": "dprint", +2024-05-29T06:06:42.9077444Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9078155Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:42.9078770Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9079087Z ##[debug] }, +2024-05-29T06:06:42.9079319Z ##[debug] { +2024-05-29T06:06:42.9079594Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:42.9079949Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:42.9080294Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9080883Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:42.9081495Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9081806Z ##[debug] }, +2024-05-29T06:06:42.9082049Z ##[debug] { +2024-05-29T06:06:42.9082324Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:42.9082660Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:42.9082995Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9083599Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:42.9084213Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9084534Z ##[debug] } +2024-05-29T06:06:42.9084773Z ##[debug] ] +2024-05-29T06:06:42.9085019Z ##[debug] } +2024-05-29T06:06:42.9085243Z ##[debug] }, +2024-05-29T06:06:42.9085480Z ##[debug] "workflow": { +2024-05-29T06:06:42.9085760Z ##[debug] "name": "👕", +2024-05-29T06:06:42.9086192Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:42.9086669Z ##[debug] }, +2024-05-29T06:06:42.9086906Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9087209Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:42.9087547Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9087865Z ##[debug] "workflow": { +2024-05-29T06:06:42.9088238Z ##[debug] "name": "👕", +2024-05-29T06:06:42.9088688Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:42.9089150Z ##[debug] } +2024-05-29T06:06:42.9089371Z ##[debug] } +2024-05-29T06:06:42.9089598Z ##[debug] }, +2024-05-29T06:06:42.9089816Z ##[debug] { +2024-05-29T06:06:42.9090037Z ##[debug] "checkRun": { +2024-05-29T06:06:42.9090338Z ##[debug] "databaseId": 25536411289, +2024-05-29T06:06:42.9090680Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:42.9090998Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9091588Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", +2024-05-29T06:06:42.9092198Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9092504Z ##[debug] }, +2024-05-29T06:06:42.9092733Z ##[debug] "checkSuite": { +2024-05-29T06:06:42.9093024Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9093357Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:42.9093675Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9093991Z ##[debug] "databaseId": 9281068678, +2024-05-29T06:06:42.9094345Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9094668Z ##[debug] "workflow": { +2024-05-29T06:06:42.9094973Z ##[debug] "name": "💧", +2024-05-29T06:06:42.9095617Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:42.9096115Z ##[debug] } +2024-05-29T06:06:42.9096352Z ##[debug] }, +2024-05-29T06:06:42.9096598Z ##[debug] "checkRuns": { +2024-05-29T06:06:42.9096997Z ##[debug] "totalCount": 1, +2024-05-29T06:06:42.9097303Z ##[debug] "pageInfo": { +2024-05-29T06:06:42.9097612Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:42.9098023Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpk=" +2024-05-29T06:06:42.9098589Z ##[debug] }, +2024-05-29T06:06:42.9098840Z ##[debug] "nodes": [ +2024-05-29T06:06:42.9099114Z ##[debug] { +2024-05-29T06:06:42.9099401Z ##[debug] "databaseId": 25536411289, +2024-05-29T06:06:42.9099762Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:42.9100103Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9100724Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", +2024-05-29T06:06:42.9101353Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9101678Z ##[debug] } +2024-05-29T06:06:42.9101914Z ##[debug] ] +2024-05-29T06:06:42.9102159Z ##[debug] } +2024-05-29T06:06:42.9102392Z ##[debug] }, +2024-05-29T06:06:42.9102623Z ##[debug] "workflow": { +2024-05-29T06:06:42.9102901Z ##[debug] "name": "💧", +2024-05-29T06:06:42.9103354Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:42.9103835Z ##[debug] }, +2024-05-29T06:06:42.9104075Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9104384Z ##[debug] "databaseId": 9281068678, +2024-05-29T06:06:42.9104712Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9105033Z ##[debug] "workflow": { +2024-05-29T06:06:42.9105320Z ##[debug] "name": "💧", +2024-05-29T06:06:42.9105790Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:42.9106276Z ##[debug] } +2024-05-29T06:06:42.9106505Z ##[debug] } +2024-05-29T06:06:42.9106725Z ##[debug] }, +2024-05-29T06:06:42.9106947Z ##[debug] { +2024-05-29T06:06:42.9107183Z ##[debug] "checkRun": { +2024-05-29T06:06:42.9107477Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:42.9107825Z ##[debug] "name": "intermediate", +2024-05-29T06:06:42.9108361Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:42.9108956Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:42.9109831Z ##[debug] "conclusion": null +2024-05-29T06:06:42.9110119Z ##[debug] }, +2024-05-29T06:06:42.9110359Z ##[debug] "checkSuite": { +2024-05-29T06:06:42.9110659Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:42.9110981Z ##[debug] "conclusion": null, +2024-05-29T06:06:42.9111306Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9111632Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:42.9111975Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9112306Z ##[debug] "workflow": { +2024-05-29T06:06:42.9112660Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:42.9113241Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:42.9113744Z ##[debug] } +2024-05-29T06:06:42.9113981Z ##[debug] }, +2024-05-29T06:06:42.9114216Z ##[debug] "checkRuns": { +2024-05-29T06:06:42.9114510Z ##[debug] "totalCount": 4, +2024-05-29T06:06:42.9114813Z ##[debug] "pageInfo": { +2024-05-29T06:06:42.9115124Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:42.9115535Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXNaM=" +2024-05-29T06:06:42.9115928Z ##[debug] }, +2024-05-29T06:06:42.9116174Z ##[debug] "nodes": [ +2024-05-29T06:06:42.9116574Z ##[debug] { +2024-05-29T06:06:42.9116860Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:42.9117228Z ##[debug] "name": "intermediate", +2024-05-29T06:06:42.9117585Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:42.9118446Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:42.9119047Z ##[debug] "conclusion": null +2024-05-29T06:06:42.9119352Z ##[debug] }, +2024-05-29T06:06:42.9119596Z ##[debug] { +2024-05-29T06:06:42.9119871Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:42.9120225Z ##[debug] "name": "wait-success", +2024-05-29T06:06:42.9120585Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:42.9121189Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:42.9121781Z ##[debug] "conclusion": null +2024-05-29T06:06:42.9122080Z ##[debug] }, +2024-05-29T06:06:42.9122319Z ##[debug] { +2024-05-29T06:06:42.9122590Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:42.9122966Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:42.9123359Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9123962Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:42.9124566Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9124890Z ##[debug] }, +2024-05-29T06:06:42.9125128Z ##[debug] { +2024-05-29T06:06:42.9125392Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:42.9125746Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:42.9126094Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:42.9126699Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:42.9127281Z ##[debug] "conclusion": null +2024-05-29T06:06:42.9127587Z ##[debug] } +2024-05-29T06:06:42.9127830Z ##[debug] ] +2024-05-29T06:06:42.9128158Z ##[debug] } +2024-05-29T06:06:42.9128393Z ##[debug] }, +2024-05-29T06:06:42.9128625Z ##[debug] "workflow": { +2024-05-29T06:06:42.9128950Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:42.9129511Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:42.9130003Z ##[debug] }, +2024-05-29T06:06:42.9130233Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9130542Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:42.9130879Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9131200Z ##[debug] "workflow": { +2024-05-29T06:06:42.9131538Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:42.9132104Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:42.9132600Z ##[debug] } +2024-05-29T06:06:42.9132825Z ##[debug] } +2024-05-29T06:06:42.9133046Z ##[debug] }, +2024-05-29T06:06:42.9133256Z ##[debug] { +2024-05-29T06:06:42.9133495Z ##[debug] "checkRun": { +2024-05-29T06:06:42.9133791Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:42.9134158Z ##[debug] "name": "wait-success", +2024-05-29T06:06:42.9134485Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:42.9135077Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:42.9135663Z ##[debug] "conclusion": null +2024-05-29T06:06:42.9135947Z ##[debug] }, +2024-05-29T06:06:42.9136178Z ##[debug] "checkSuite": { +2024-05-29T06:06:42.9136472Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:42.9136789Z ##[debug] "conclusion": null, +2024-05-29T06:06:42.9137221Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9137543Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:42.9137881Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9138314Z ##[debug] "workflow": { +2024-05-29T06:06:42.9138780Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:42.9139353Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:42.9139856Z ##[debug] } +2024-05-29T06:06:42.9140092Z ##[debug] }, +2024-05-29T06:06:42.9140328Z ##[debug] "checkRuns": { +2024-05-29T06:06:42.9140622Z ##[debug] "totalCount": 4, +2024-05-29T06:06:42.9140926Z ##[debug] "pageInfo": { +2024-05-29T06:06:42.9141223Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:42.9141632Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXNaM=" +2024-05-29T06:06:42.9142023Z ##[debug] }, +2024-05-29T06:06:42.9142271Z ##[debug] "nodes": [ +2024-05-29T06:06:42.9142539Z ##[debug] { +2024-05-29T06:06:42.9142815Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:42.9143185Z ##[debug] "name": "intermediate", +2024-05-29T06:06:42.9143538Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:42.9144160Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:42.9144760Z ##[debug] "conclusion": null +2024-05-29T06:06:42.9145066Z ##[debug] }, +2024-05-29T06:06:42.9145309Z ##[debug] { +2024-05-29T06:06:42.9145585Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:42.9145940Z ##[debug] "name": "wait-success", +2024-05-29T06:06:42.9146298Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:42.9146901Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:42.9147491Z ##[debug] "conclusion": null +2024-05-29T06:06:42.9147807Z ##[debug] }, +2024-05-29T06:06:42.9148048Z ##[debug] { +2024-05-29T06:06:42.9148417Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:42.9148798Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:42.9149185Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9149784Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:42.9150384Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9150708Z ##[debug] }, +2024-05-29T06:06:42.9150947Z ##[debug] { +2024-05-29T06:06:42.9151212Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:42.9151564Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:42.9151914Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:42.9152513Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:42.9153097Z ##[debug] "conclusion": null +2024-05-29T06:06:42.9153407Z ##[debug] } +2024-05-29T06:06:42.9153643Z ##[debug] ] +2024-05-29T06:06:42.9153880Z ##[debug] } +2024-05-29T06:06:42.9154103Z ##[debug] }, +2024-05-29T06:06:42.9154333Z ##[debug] "workflow": { +2024-05-29T06:06:42.9154655Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:42.9155215Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:42.9155712Z ##[debug] }, +2024-05-29T06:06:42.9155943Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9156247Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:42.9156584Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9156901Z ##[debug] "workflow": { +2024-05-29T06:06:42.9157241Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:42.9157951Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:42.9158546Z ##[debug] } +2024-05-29T06:06:42.9158772Z ##[debug] } +2024-05-29T06:06:42.9158993Z ##[debug] }, +2024-05-29T06:06:42.9159333Z ##[debug] { +2024-05-29T06:06:42.9159561Z ##[debug] "checkRun": { +2024-05-29T06:06:42.9159854Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:42.9160212Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:42.9160569Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9161155Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:42.9161749Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9162049Z ##[debug] }, +2024-05-29T06:06:42.9162285Z ##[debug] "checkSuite": { +2024-05-29T06:06:42.9162579Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:42.9162900Z ##[debug] "conclusion": null, +2024-05-29T06:06:42.9163208Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9163527Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:42.9163865Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9164197Z ##[debug] "workflow": { +2024-05-29T06:06:42.9164554Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:42.9165119Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:42.9165620Z ##[debug] } +2024-05-29T06:06:42.9165856Z ##[debug] }, +2024-05-29T06:06:42.9166088Z ##[debug] "checkRuns": { +2024-05-29T06:06:42.9166380Z ##[debug] "totalCount": 4, +2024-05-29T06:06:42.9166684Z ##[debug] "pageInfo": { +2024-05-29T06:06:42.9166984Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:42.9167392Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXNaM=" +2024-05-29T06:06:42.9167803Z ##[debug] }, +2024-05-29T06:06:42.9168046Z ##[debug] "nodes": [ +2024-05-29T06:06:42.9168414Z ##[debug] { +2024-05-29T06:06:42.9168691Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:42.9169055Z ##[debug] "name": "intermediate", +2024-05-29T06:06:42.9169420Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:42.9170028Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:42.9170619Z ##[debug] "conclusion": null +2024-05-29T06:06:42.9170921Z ##[debug] }, +2024-05-29T06:06:42.9171176Z ##[debug] { +2024-05-29T06:06:42.9171453Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:42.9171814Z ##[debug] "name": "wait-success", +2024-05-29T06:06:42.9172173Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:42.9172785Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:42.9173367Z ##[debug] "conclusion": null +2024-05-29T06:06:42.9173671Z ##[debug] }, +2024-05-29T06:06:42.9173913Z ##[debug] { +2024-05-29T06:06:42.9174186Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:42.9174570Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:42.9174954Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9175553Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:42.9176154Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9176481Z ##[debug] }, +2024-05-29T06:06:42.9176718Z ##[debug] { +2024-05-29T06:06:42.9176982Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:42.9177333Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:42.9177681Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:42.9178496Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:42.9179088Z ##[debug] "conclusion": null +2024-05-29T06:06:42.9179396Z ##[debug] } +2024-05-29T06:06:42.9179735Z ##[debug] ] +2024-05-29T06:06:42.9179965Z ##[debug] } +2024-05-29T06:06:42.9180189Z ##[debug] }, +2024-05-29T06:06:42.9180423Z ##[debug] "workflow": { +2024-05-29T06:06:42.9180750Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:42.9181315Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:42.9181809Z ##[debug] }, +2024-05-29T06:06:42.9182041Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9182347Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:42.9182684Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9182998Z ##[debug] "workflow": { +2024-05-29T06:06:42.9183341Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:42.9183912Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:42.9184403Z ##[debug] } +2024-05-29T06:06:42.9184625Z ##[debug] } +2024-05-29T06:06:42.9184858Z ##[debug] }, +2024-05-29T06:06:42.9185071Z ##[debug] { +2024-05-29T06:06:42.9185298Z ##[debug] "checkRun": { +2024-05-29T06:06:42.9185595Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:42.9185923Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:42.9186249Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:42.9186839Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:42.9187425Z ##[debug] "conclusion": null +2024-05-29T06:06:42.9187708Z ##[debug] }, +2024-05-29T06:06:42.9187943Z ##[debug] "checkSuite": { +2024-05-29T06:06:42.9188337Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:42.9188658Z ##[debug] "conclusion": null, +2024-05-29T06:06:42.9188966Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9189284Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:42.9189622Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9189955Z ##[debug] "workflow": { +2024-05-29T06:06:42.9190304Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:42.9190869Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:42.9191374Z ##[debug] } +2024-05-29T06:06:42.9191608Z ##[debug] }, +2024-05-29T06:06:42.9191841Z ##[debug] "checkRuns": { +2024-05-29T06:06:42.9192131Z ##[debug] "totalCount": 4, +2024-05-29T06:06:42.9192431Z ##[debug] "pageInfo": { +2024-05-29T06:06:42.9192732Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:42.9193143Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXNaM=" +2024-05-29T06:06:42.9193538Z ##[debug] }, +2024-05-29T06:06:42.9193777Z ##[debug] "nodes": [ +2024-05-29T06:06:42.9194041Z ##[debug] { +2024-05-29T06:06:42.9194320Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:42.9194680Z ##[debug] "name": "intermediate", +2024-05-29T06:06:42.9195047Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:42.9195657Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:42.9196254Z ##[debug] "conclusion": null +2024-05-29T06:06:42.9196556Z ##[debug] }, +2024-05-29T06:06:42.9196798Z ##[debug] { +2024-05-29T06:06:42.9197075Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:42.9197429Z ##[debug] "name": "wait-success", +2024-05-29T06:06:42.9197790Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:42.9198618Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:42.9199202Z ##[debug] "conclusion": null +2024-05-29T06:06:42.9199508Z ##[debug] }, +2024-05-29T06:06:42.9199747Z ##[debug] { +2024-05-29T06:06:42.9200011Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:42.9200502Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:42.9200889Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9201493Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:42.9202093Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9202416Z ##[debug] }, +2024-05-29T06:06:42.9202655Z ##[debug] { +2024-05-29T06:06:42.9202919Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:42.9203275Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:42.9203629Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:42.9204223Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:42.9204810Z ##[debug] "conclusion": null +2024-05-29T06:06:42.9205114Z ##[debug] } +2024-05-29T06:06:42.9205352Z ##[debug] ] +2024-05-29T06:06:42.9205586Z ##[debug] } +2024-05-29T06:06:42.9205813Z ##[debug] }, +2024-05-29T06:06:42.9206038Z ##[debug] "workflow": { +2024-05-29T06:06:42.9206371Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:42.9206926Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:42.9207417Z ##[debug] }, +2024-05-29T06:06:42.9207649Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9207958Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:42.9208398Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9208712Z ##[debug] "workflow": { +2024-05-29T06:06:42.9209056Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:42.9209617Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:42.9210102Z ##[debug] } +2024-05-29T06:06:42.9210333Z ##[debug] } +2024-05-29T06:06:42.9210553Z ##[debug] }, +2024-05-29T06:06:42.9210765Z ##[debug] { +2024-05-29T06:06:42.9210999Z ##[debug] "checkRun": { +2024-05-29T06:06:42.9211292Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:42.9211642Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:42.9211986Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9212572Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:42.9213166Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:42.9213466Z ##[debug] }, +2024-05-29T06:06:42.9213702Z ##[debug] "checkSuite": { +2024-05-29T06:06:42.9213992Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9214317Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:42.9214638Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9214949Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:42.9215294Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9215654Z ##[debug] "workflow": { +2024-05-29T06:06:42.9215985Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:42.9216490Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:42.9216988Z ##[debug] } +2024-05-29T06:06:42.9217222Z ##[debug] }, +2024-05-29T06:06:42.9217455Z ##[debug] "checkRuns": { +2024-05-29T06:06:42.9217747Z ##[debug] "totalCount": 4, +2024-05-29T06:06:42.9218140Z ##[debug] "pageInfo": { +2024-05-29T06:06:42.9218460Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:42.9218872Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:42.9219393Z ##[debug] }, +2024-05-29T06:06:42.9219637Z ##[debug] "nodes": [ +2024-05-29T06:06:42.9219907Z ##[debug] { +2024-05-29T06:06:42.9220187Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:42.9220684Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:42.9221058Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9221672Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:42.9222281Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:42.9222600Z ##[debug] }, +2024-05-29T06:06:42.9222845Z ##[debug] { +2024-05-29T06:06:42.9223118Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:42.9223462Z ##[debug] "name": "renovate", +2024-05-29T06:06:42.9223801Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9224408Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:42.9225003Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:42.9225334Z ##[debug] }, +2024-05-29T06:06:42.9225579Z ##[debug] { +2024-05-29T06:06:42.9225851Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:42.9226217Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:42.9226578Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9227174Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:42.9227764Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:42.9228180Z ##[debug] }, +2024-05-29T06:06:42.9228425Z ##[debug] { +2024-05-29T06:06:42.9228691Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:42.9229052Z ##[debug] "name": "dependabot", +2024-05-29T06:06:42.9229409Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9229987Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:42.9230599Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:42.9230923Z ##[debug] } +2024-05-29T06:06:42.9231164Z ##[debug] ] +2024-05-29T06:06:42.9231398Z ##[debug] } +2024-05-29T06:06:42.9231623Z ##[debug] }, +2024-05-29T06:06:42.9231851Z ##[debug] "workflow": { +2024-05-29T06:06:42.9232135Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:42.9232624Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:42.9233119Z ##[debug] }, +2024-05-29T06:06:42.9233354Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9233660Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:42.9234033Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9234351Z ##[debug] "workflow": { +2024-05-29T06:06:42.9234640Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:42.9235138Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:42.9235631Z ##[debug] } +2024-05-29T06:06:42.9235860Z ##[debug] } +2024-05-29T06:06:42.9236093Z ##[debug] }, +2024-05-29T06:06:42.9236308Z ##[debug] { +2024-05-29T06:06:42.9236533Z ##[debug] "checkRun": { +2024-05-29T06:06:42.9236826Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:42.9237152Z ##[debug] "name": "renovate", +2024-05-29T06:06:42.9237466Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9238142Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:42.9238741Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:42.9239048Z ##[debug] }, +2024-05-29T06:06:42.9239284Z ##[debug] "checkSuite": { +2024-05-29T06:06:42.9239575Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9240036Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:42.9240368Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9240679Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:42.9241034Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9241492Z ##[debug] "workflow": { +2024-05-29T06:06:42.9241789Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:42.9242290Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:42.9242790Z ##[debug] } +2024-05-29T06:06:42.9243027Z ##[debug] }, +2024-05-29T06:06:42.9243262Z ##[debug] "checkRuns": { +2024-05-29T06:06:42.9243557Z ##[debug] "totalCount": 4, +2024-05-29T06:06:42.9243861Z ##[debug] "pageInfo": { +2024-05-29T06:06:42.9244162Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:42.9244575Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:42.9244976Z ##[debug] }, +2024-05-29T06:06:42.9245217Z ##[debug] "nodes": [ +2024-05-29T06:06:42.9245489Z ##[debug] { +2024-05-29T06:06:42.9245773Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:42.9246142Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:42.9246528Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9247136Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:42.9247744Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:42.9248159Z ##[debug] }, +2024-05-29T06:06:42.9248408Z ##[debug] { +2024-05-29T06:06:42.9248680Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:42.9249025Z ##[debug] "name": "renovate", +2024-05-29T06:06:42.9249366Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9249960Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:42.9250553Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:42.9250884Z ##[debug] }, +2024-05-29T06:06:42.9251125Z ##[debug] { +2024-05-29T06:06:42.9251390Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:42.9251772Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:42.9252134Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9252715Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:42.9253311Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:42.9253634Z ##[debug] }, +2024-05-29T06:06:42.9253873Z ##[debug] { +2024-05-29T06:06:42.9254137Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:42.9254495Z ##[debug] "name": "dependabot", +2024-05-29T06:06:42.9254843Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9255426Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:42.9256043Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:42.9256364Z ##[debug] } +2024-05-29T06:06:42.9256599Z ##[debug] ] +2024-05-29T06:06:42.9256831Z ##[debug] } +2024-05-29T06:06:42.9257057Z ##[debug] }, +2024-05-29T06:06:42.9257292Z ##[debug] "workflow": { +2024-05-29T06:06:42.9257576Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:42.9258173Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:42.9258671Z ##[debug] }, +2024-05-29T06:06:42.9258908Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9259211Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:42.9259544Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9259867Z ##[debug] "workflow": { +2024-05-29T06:06:42.9260283Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:42.9260789Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:42.9261277Z ##[debug] } +2024-05-29T06:06:42.9261501Z ##[debug] } +2024-05-29T06:06:42.9261872Z ##[debug] }, +2024-05-29T06:06:42.9262083Z ##[debug] { +2024-05-29T06:06:42.9262306Z ##[debug] "checkRun": { +2024-05-29T06:06:42.9262600Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:42.9262937Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:42.9263267Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9263852Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:42.9264437Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:42.9264742Z ##[debug] }, +2024-05-29T06:06:42.9264980Z ##[debug] "checkSuite": { +2024-05-29T06:06:42.9265265Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9265601Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:42.9265927Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9266236Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:42.9266588Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9266925Z ##[debug] "workflow": { +2024-05-29T06:06:42.9267219Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:42.9267726Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:42.9268330Z ##[debug] } +2024-05-29T06:06:42.9268566Z ##[debug] }, +2024-05-29T06:06:42.9268800Z ##[debug] "checkRuns": { +2024-05-29T06:06:42.9269089Z ##[debug] "totalCount": 4, +2024-05-29T06:06:42.9269389Z ##[debug] "pageInfo": { +2024-05-29T06:06:42.9269685Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:42.9270092Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:42.9270481Z ##[debug] }, +2024-05-29T06:06:42.9270728Z ##[debug] "nodes": [ +2024-05-29T06:06:42.9271000Z ##[debug] { +2024-05-29T06:06:42.9271287Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:42.9271658Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:42.9272044Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9272652Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:42.9273253Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:42.9273576Z ##[debug] }, +2024-05-29T06:06:42.9273817Z ##[debug] { +2024-05-29T06:06:42.9274082Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:42.9274197Z ##[debug] "name": "renovate", +2024-05-29T06:06:42.9274312Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9274675Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:42.9274790Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:42.9274875Z ##[debug] }, +2024-05-29T06:06:42.9274965Z ##[debug] { +2024-05-29T06:06:42.9275088Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:42.9275216Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:42.9275335Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9275700Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:42.9275821Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:42.9275906Z ##[debug] }, +2024-05-29T06:06:42.9275989Z ##[debug] { +2024-05-29T06:06:42.9276112Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:42.9276227Z ##[debug] "name": "dependabot", +2024-05-29T06:06:42.9276343Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9276821Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:42.9276940Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:42.9277022Z ##[debug] } +2024-05-29T06:06:42.9277212Z ##[debug] ] +2024-05-29T06:06:42.9277294Z ##[debug] } +2024-05-29T06:06:42.9277384Z ##[debug] }, +2024-05-29T06:06:42.9277477Z ##[debug] "workflow": { +2024-05-29T06:06:42.9277577Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:42.9277864Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:42.9277946Z ##[debug] }, +2024-05-29T06:06:42.9278042Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9278319Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:42.9278427Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9278519Z ##[debug] "workflow": { +2024-05-29T06:06:42.9278625Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:42.9278916Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:42.9279005Z ##[debug] } +2024-05-29T06:06:42.9279098Z ##[debug] } +2024-05-29T06:06:42.9279178Z ##[debug] }, +2024-05-29T06:06:42.9279274Z ##[debug] { +2024-05-29T06:06:42.9279366Z ##[debug] "checkRun": { +2024-05-29T06:06:42.9279477Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:42.9279588Z ##[debug] "name": "dependabot", +2024-05-29T06:06:42.9279691Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9280058Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:42.9280172Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:42.9280254Z ##[debug] }, +2024-05-29T06:06:42.9280348Z ##[debug] "checkSuite": { +2024-05-29T06:06:42.9280456Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9280568Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:42.9280673Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9280788Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:42.9280900Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9281001Z ##[debug] "workflow": { +2024-05-29T06:06:42.9281106Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:42.9281398Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:42.9281489Z ##[debug] } +2024-05-29T06:06:42.9281574Z ##[debug] }, +2024-05-29T06:06:42.9281669Z ##[debug] "checkRuns": { +2024-05-29T06:06:42.9281776Z ##[debug] "totalCount": 4, +2024-05-29T06:06:42.9281869Z ##[debug] "pageInfo": { +2024-05-29T06:06:42.9281981Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:42.9282164Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:42.9282248Z ##[debug] }, +2024-05-29T06:06:42.9282348Z ##[debug] "nodes": [ +2024-05-29T06:06:42.9282432Z ##[debug] { +2024-05-29T06:06:42.9282555Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:42.9282691Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:42.9282807Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9283169Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:42.9283292Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:42.9283377Z ##[debug] }, +2024-05-29T06:06:42.9283466Z ##[debug] { +2024-05-29T06:06:42.9283585Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:42.9283693Z ##[debug] "name": "renovate", +2024-05-29T06:06:42.9283813Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9284175Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:42.9284424Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:42.9284516Z ##[debug] }, +2024-05-29T06:06:42.9284597Z ##[debug] { +2024-05-29T06:06:42.9284722Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:42.9284970Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:42.9285085Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9285440Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:42.9285555Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:42.9285640Z ##[debug] }, +2024-05-29T06:06:42.9285731Z ##[debug] { +2024-05-29T06:06:42.9285850Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:42.9285963Z ##[debug] "name": "dependabot", +2024-05-29T06:06:42.9286081Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9286439Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:42.9286561Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:42.9286645Z ##[debug] } +2024-05-29T06:06:42.9286727Z ##[debug] ] +2024-05-29T06:06:42.9286822Z ##[debug] } +2024-05-29T06:06:42.9286905Z ##[debug] }, +2024-05-29T06:06:42.9286996Z ##[debug] "workflow": { +2024-05-29T06:06:42.9287102Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:42.9287384Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:42.9287465Z ##[debug] }, +2024-05-29T06:06:42.9287567Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9287674Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:42.9287782Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9287881Z ##[debug] "workflow": { +2024-05-29T06:06:42.9287978Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:42.9288385Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:42.9288470Z ##[debug] } +2024-05-29T06:06:42.9288552Z ##[debug] } +2024-05-29T06:06:42.9288637Z ##[debug] }, +2024-05-29T06:06:42.9288718Z ##[debug] { +2024-05-29T06:06:42.9288820Z ##[debug] "checkRun": { +2024-05-29T06:06:42.9288935Z ##[debug] "databaseId": 25536411287, +2024-05-29T06:06:42.9289028Z ##[debug] "name": "echo", +2024-05-29T06:06:42.9289129Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9289501Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", +2024-05-29T06:06:42.9289609Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9289697Z ##[debug] }, +2024-05-29T06:06:42.9289788Z ##[debug] "checkSuite": { +2024-05-29T06:06:42.9289890Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9290001Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:42.9290101Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9290215Z ##[debug] "databaseId": 9281068684, +2024-05-29T06:06:42.9290330Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9290422Z ##[debug] "workflow": { +2024-05-29T06:06:42.9290551Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:42.9290847Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:42.9290932Z ##[debug] } +2024-05-29T06:06:42.9291020Z ##[debug] }, +2024-05-29T06:06:42.9291114Z ##[debug] "checkRuns": { +2024-05-29T06:06:42.9291209Z ##[debug] "totalCount": 1, +2024-05-29T06:06:42.9291316Z ##[debug] "pageInfo": { +2024-05-29T06:06:42.9291426Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:42.9291601Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpc=" +2024-05-29T06:06:42.9291693Z ##[debug] }, +2024-05-29T06:06:42.9291782Z ##[debug] "nodes": [ +2024-05-29T06:06:42.9291989Z ##[debug] { +2024-05-29T06:06:42.9292121Z ##[debug] "databaseId": 25536411287, +2024-05-29T06:06:42.9292217Z ##[debug] "name": "echo", +2024-05-29T06:06:42.9292334Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9292808Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", +2024-05-29T06:06:42.9292926Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9293015Z ##[debug] } +2024-05-29T06:06:42.9293096Z ##[debug] ] +2024-05-29T06:06:42.9293179Z ##[debug] } +2024-05-29T06:06:42.9293270Z ##[debug] }, +2024-05-29T06:06:42.9293362Z ##[debug] "workflow": { +2024-05-29T06:06:42.9293477Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:42.9293768Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:42.9293848Z ##[debug] }, +2024-05-29T06:06:42.9293951Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9294066Z ##[debug] "databaseId": 9281068684, +2024-05-29T06:06:42.9294174Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9294273Z ##[debug] "workflow": { +2024-05-29T06:06:42.9294388Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:42.9294681Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:42.9294770Z ##[debug] } +2024-05-29T06:06:42.9294853Z ##[debug] } +2024-05-29T06:06:42.9294935Z ##[debug] }, +2024-05-29T06:06:42.9295022Z ##[debug] { +2024-05-29T06:06:42.9295116Z ##[debug] "checkRun": { +2024-05-29T06:06:42.9295224Z ##[debug] "databaseId": 25536411604, +2024-05-29T06:06:42.9295322Z ##[debug] "name": "wait", +2024-05-29T06:06:42.9295424Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9295797Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", +2024-05-29T06:06:42.9295909Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9295991Z ##[debug] }, +2024-05-29T06:06:42.9296089Z ##[debug] "checkSuite": { +2024-05-29T06:06:42.9296190Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9296304Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:42.9296406Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9296521Z ##[debug] "databaseId": 9281068685, +2024-05-29T06:06:42.9296633Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9296732Z ##[debug] "workflow": { +2024-05-29T06:06:42.9296847Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:42.9297124Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:42.9297211Z ##[debug] } +2024-05-29T06:06:42.9297293Z ##[debug] }, +2024-05-29T06:06:42.9297391Z ##[debug] "checkRuns": { +2024-05-29T06:06:42.9297490Z ##[debug] "totalCount": 1, +2024-05-29T06:06:42.9297588Z ##[debug] "pageInfo": { +2024-05-29T06:06:42.9297710Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:42.9297885Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWt9Q=" +2024-05-29T06:06:42.9297969Z ##[debug] }, +2024-05-29T06:06:42.9298167Z ##[debug] "nodes": [ +2024-05-29T06:06:42.9298252Z ##[debug] { +2024-05-29T06:06:42.9298375Z ##[debug] "databaseId": 25536411604, +2024-05-29T06:06:42.9298478Z ##[debug] "name": "wait", +2024-05-29T06:06:42.9298591Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9298957Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", +2024-05-29T06:06:42.9299077Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9299163Z ##[debug] } +2024-05-29T06:06:42.9299251Z ##[debug] ] +2024-05-29T06:06:42.9299332Z ##[debug] } +2024-05-29T06:06:42.9299531Z ##[debug] }, +2024-05-29T06:06:42.9299631Z ##[debug] "workflow": { +2024-05-29T06:06:42.9299735Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:42.9300008Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:42.9300202Z ##[debug] }, +2024-05-29T06:06:42.9300297Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9300404Z ##[debug] "databaseId": 9281068685, +2024-05-29T06:06:42.9300517Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9300608Z ##[debug] "workflow": { +2024-05-29T06:06:42.9300722Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:42.9300995Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:42.9301079Z ##[debug] } +2024-05-29T06:06:42.9301168Z ##[debug] } +2024-05-29T06:06:42.9301250Z ##[debug] }, +2024-05-29T06:06:42.9301340Z ##[debug] { +2024-05-29T06:06:42.9301437Z ##[debug] "checkRun": { +2024-05-29T06:06:42.9301549Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:42.9301655Z ##[debug] "name": "default_logic", +2024-05-29T06:06:42.9301766Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9302130Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:42.9302250Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9302332Z ##[debug] }, +2024-05-29T06:06:42.9302425Z ##[debug] "checkSuite": { +2024-05-29T06:06:42.9302531Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9302638Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:42.9302735Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9302852Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:42.9302963Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9303059Z ##[debug] "workflow": { +2024-05-29T06:06:42.9303164Z ##[debug] "name": "Itself", +2024-05-29T06:06:42.9303429Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:42.9303520Z ##[debug] } +2024-05-29T06:06:42.9303602Z ##[debug] }, +2024-05-29T06:06:42.9303694Z ##[debug] "checkRuns": { +2024-05-29T06:06:42.9303805Z ##[debug] "totalCount": 7, +2024-05-29T06:06:42.9303899Z ##[debug] "pageInfo": { +2024-05-29T06:06:42.9304008Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:42.9304189Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:42.9304274Z ##[debug] }, +2024-05-29T06:06:42.9304364Z ##[debug] "nodes": [ +2024-05-29T06:06:42.9304453Z ##[debug] { +2024-05-29T06:06:42.9304577Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:42.9304696Z ##[debug] "name": "default_logic", +2024-05-29T06:06:42.9304818Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9305188Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:42.9305313Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9305398Z ##[debug] }, +2024-05-29T06:06:42.9305482Z ##[debug] { +2024-05-29T06:06:42.9305613Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:42.9305735Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:42.9305852Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9306214Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:42.9306331Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9306420Z ##[debug] }, +2024-05-29T06:06:42.9306504Z ##[debug] { +2024-05-29T06:06:42.9306620Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:42.9306796Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:42.9307002Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9307354Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:42.9307475Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9307632Z ##[debug] }, +2024-05-29T06:06:42.9307720Z ##[debug] { +2024-05-29T06:06:42.9307837Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:42.9307945Z ##[debug] "name": "skip-list", +2024-05-29T06:06:42.9308156Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9308521Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:42.9308640Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9308732Z ##[debug] }, +2024-05-29T06:06:42.9308815Z ##[debug] { +2024-05-29T06:06:42.9308932Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:42.9309143Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:42.9309258Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9309610Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:42.9309731Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9309815Z ##[debug] }, +2024-05-29T06:06:42.9309904Z ##[debug] { +2024-05-29T06:06:42.9310023Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:42.9310245Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:42.9310367Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9310719Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:42.9310840Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9310929Z ##[debug] }, +2024-05-29T06:06:42.9311012Z ##[debug] { +2024-05-29T06:06:42.9311133Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:42.9311241Z ##[debug] "name": "wait-list", +2024-05-29T06:06:42.9311364Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9311734Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:42.9311849Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9311940Z ##[debug] } +2024-05-29T06:06:42.9312023Z ##[debug] ] +2024-05-29T06:06:42.9312106Z ##[debug] } +2024-05-29T06:06:42.9312196Z ##[debug] }, +2024-05-29T06:06:42.9312290Z ##[debug] "workflow": { +2024-05-29T06:06:42.9312386Z ##[debug] "name": "Itself", +2024-05-29T06:06:42.9312649Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:42.9312736Z ##[debug] }, +2024-05-29T06:06:42.9312833Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9312946Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:42.9313054Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9313148Z ##[debug] "workflow": { +2024-05-29T06:06:42.9313257Z ##[debug] "name": "Itself", +2024-05-29T06:06:42.9313512Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:42.9313601Z ##[debug] } +2024-05-29T06:06:42.9313685Z ##[debug] } +2024-05-29T06:06:42.9313767Z ##[debug] }, +2024-05-29T06:06:42.9313856Z ##[debug] { +2024-05-29T06:06:42.9313948Z ##[debug] "checkRun": { +2024-05-29T06:06:42.9314060Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:42.9314177Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:42.9314279Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9314785Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:42.9314905Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9314987Z ##[debug] }, +2024-05-29T06:06:42.9315086Z ##[debug] "checkSuite": { +2024-05-29T06:06:42.9315187Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9315395Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:42.9315497Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9315615Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:42.9315724Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9315825Z ##[debug] "workflow": { +2024-05-29T06:06:42.9315924Z ##[debug] "name": "Itself", +2024-05-29T06:06:42.9316182Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:42.9316273Z ##[debug] } +2024-05-29T06:06:42.9316354Z ##[debug] }, +2024-05-29T06:06:42.9316446Z ##[debug] "checkRuns": { +2024-05-29T06:06:42.9316558Z ##[debug] "totalCount": 7, +2024-05-29T06:06:42.9316654Z ##[debug] "pageInfo": { +2024-05-29T06:06:42.9316771Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:42.9316948Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:42.9317039Z ##[debug] }, +2024-05-29T06:06:42.9317134Z ##[debug] "nodes": [ +2024-05-29T06:06:42.9317216Z ##[debug] { +2024-05-29T06:06:42.9317337Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:42.9317462Z ##[debug] "name": "default_logic", +2024-05-29T06:06:42.9317578Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9317937Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:42.9318151Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9318237Z ##[debug] }, +2024-05-29T06:06:42.9318326Z ##[debug] { +2024-05-29T06:06:42.9318453Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:42.9318574Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:42.9318693Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9319054Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:42.9319172Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9319265Z ##[debug] }, +2024-05-29T06:06:42.9319348Z ##[debug] { +2024-05-29T06:06:42.9319473Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:42.9319643Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:42.9319760Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9320114Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:42.9320229Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9320316Z ##[debug] }, +2024-05-29T06:06:42.9320407Z ##[debug] { +2024-05-29T06:06:42.9320522Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:42.9320634Z ##[debug] "name": "skip-list", +2024-05-29T06:06:42.9320753Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9321114Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:42.9321236Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9321321Z ##[debug] }, +2024-05-29T06:06:42.9321404Z ##[debug] { +2024-05-29T06:06:42.9321528Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:42.9321728Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:42.9321840Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9322336Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:42.9322459Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9322553Z ##[debug] }, +2024-05-29T06:06:42.9322634Z ##[debug] { +2024-05-29T06:06:42.9322752Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:42.9323085Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:42.9323201Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9323558Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:42.9323679Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9323762Z ##[debug] }, +2024-05-29T06:06:42.9323849Z ##[debug] { +2024-05-29T06:06:42.9323966Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:42.9324074Z ##[debug] "name": "wait-list", +2024-05-29T06:06:42.9324344Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9324739Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:42.9324887Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9325065Z ##[debug] } +2024-05-29T06:06:42.9325178Z ##[debug] ] +2024-05-29T06:06:42.9325540Z ##[debug] } +2024-05-29T06:06:42.9325658Z ##[debug] }, +2024-05-29T06:06:42.9325782Z ##[debug] "workflow": { +2024-05-29T06:06:42.9325960Z ##[debug] "name": "Itself", +2024-05-29T06:06:42.9326250Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:42.9326399Z ##[debug] }, +2024-05-29T06:06:42.9326578Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9326718Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:42.9326907Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9327031Z ##[debug] "workflow": { +2024-05-29T06:06:42.9327164Z ##[debug] "name": "Itself", +2024-05-29T06:06:42.9327489Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:42.9327659Z ##[debug] } +2024-05-29T06:06:42.9327773Z ##[debug] } +2024-05-29T06:06:42.9327941Z ##[debug] }, +2024-05-29T06:06:42.9328256Z ##[debug] { +2024-05-29T06:06:42.9328470Z ##[debug] "checkRun": { +2024-05-29T06:06:42.9328722Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:42.9328999Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:42.9329188Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9338691Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:42.9338849Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9338940Z ##[debug] }, +2024-05-29T06:06:42.9339037Z ##[debug] "checkSuite": { +2024-05-29T06:06:42.9339157Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9339278Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:42.9339378Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9339507Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:42.9339628Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9339738Z ##[debug] "workflow": { +2024-05-29T06:06:42.9339837Z ##[debug] "name": "Itself", +2024-05-29T06:06:42.9340110Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:42.9340201Z ##[debug] } +2024-05-29T06:06:42.9340284Z ##[debug] }, +2024-05-29T06:06:42.9340383Z ##[debug] "checkRuns": { +2024-05-29T06:06:42.9340486Z ##[debug] "totalCount": 7, +2024-05-29T06:06:42.9340582Z ##[debug] "pageInfo": { +2024-05-29T06:06:42.9340698Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:42.9340888Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:42.9340971Z ##[debug] }, +2024-05-29T06:06:42.9341246Z ##[debug] "nodes": [ +2024-05-29T06:06:42.9341341Z ##[debug] { +2024-05-29T06:06:42.9341479Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:42.9341607Z ##[debug] "name": "default_logic", +2024-05-29T06:06:42.9341866Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9342256Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:42.9342384Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9342470Z ##[debug] }, +2024-05-29T06:06:42.9342554Z ##[debug] { +2024-05-29T06:06:42.9342683Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:42.9342806Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:42.9342929Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9343306Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:42.9343426Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9343517Z ##[debug] }, +2024-05-29T06:06:42.9343599Z ##[debug] { +2024-05-29T06:06:42.9343716Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:42.9343900Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:42.9344016Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9344389Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:42.9344505Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9344586Z ##[debug] }, +2024-05-29T06:06:42.9344676Z ##[debug] { +2024-05-29T06:06:42.9344800Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:42.9344910Z ##[debug] "name": "skip-list", +2024-05-29T06:06:42.9345043Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9345415Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:42.9345543Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9345627Z ##[debug] }, +2024-05-29T06:06:42.9345718Z ##[debug] { +2024-05-29T06:06:42.9345849Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:42.9346048Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:42.9346166Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9346537Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:42.9346655Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9346740Z ##[debug] }, +2024-05-29T06:06:42.9346830Z ##[debug] { +2024-05-29T06:06:42.9346948Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:42.9347176Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:42.9347293Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9347649Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:42.9347778Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9347862Z ##[debug] }, +2024-05-29T06:06:42.9347944Z ##[debug] { +2024-05-29T06:06:42.9348200Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:42.9348315Z ##[debug] "name": "wait-list", +2024-05-29T06:06:42.9348436Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9348790Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:42.9348907Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9348996Z ##[debug] } +2024-05-29T06:06:42.9349197Z ##[debug] ] +2024-05-29T06:06:42.9349283Z ##[debug] } +2024-05-29T06:06:42.9349373Z ##[debug] }, +2024-05-29T06:06:42.9349467Z ##[debug] "workflow": { +2024-05-29T06:06:42.9349566Z ##[debug] "name": "Itself", +2024-05-29T06:06:42.9349936Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:42.9350022Z ##[debug] }, +2024-05-29T06:06:42.9350128Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9350237Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:42.9350346Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9350445Z ##[debug] "workflow": { +2024-05-29T06:06:42.9350544Z ##[debug] "name": "Itself", +2024-05-29T06:06:42.9350803Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:42.9350891Z ##[debug] } +2024-05-29T06:06:42.9350974Z ##[debug] } +2024-05-29T06:06:42.9351055Z ##[debug] }, +2024-05-29T06:06:42.9351149Z ##[debug] { +2024-05-29T06:06:42.9351242Z ##[debug] "checkRun": { +2024-05-29T06:06:42.9351351Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:42.9351460Z ##[debug] "name": "skip-list", +2024-05-29T06:06:42.9351566Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9351945Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:42.9352053Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9352139Z ##[debug] }, +2024-05-29T06:06:42.9352240Z ##[debug] "checkSuite": { +2024-05-29T06:06:42.9352340Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9352447Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:42.9352551Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9352666Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:42.9352777Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9352885Z ##[debug] "workflow": { +2024-05-29T06:06:42.9352983Z ##[debug] "name": "Itself", +2024-05-29T06:06:42.9353245Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:42.9353329Z ##[debug] } +2024-05-29T06:06:42.9353417Z ##[debug] }, +2024-05-29T06:06:42.9353520Z ##[debug] "checkRuns": { +2024-05-29T06:06:42.9353619Z ##[debug] "totalCount": 7, +2024-05-29T06:06:42.9353714Z ##[debug] "pageInfo": { +2024-05-29T06:06:42.9353832Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:42.9354011Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:42.9354096Z ##[debug] }, +2024-05-29T06:06:42.9354194Z ##[debug] "nodes": [ +2024-05-29T06:06:42.9354280Z ##[debug] { +2024-05-29T06:06:42.9354403Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:42.9354529Z ##[debug] "name": "default_logic", +2024-05-29T06:06:42.9354653Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9355021Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:42.9355139Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9355228Z ##[debug] }, +2024-05-29T06:06:42.9355322Z ##[debug] { +2024-05-29T06:06:42.9355442Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:42.9355559Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:42.9355680Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9356046Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:42.9356169Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9356254Z ##[debug] }, +2024-05-29T06:06:42.9356337Z ##[debug] { +2024-05-29T06:06:42.9356460Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:42.9356748Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:42.9356866Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9357223Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:42.9357414Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9357504Z ##[debug] }, +2024-05-29T06:06:42.9357586Z ##[debug] { +2024-05-29T06:06:42.9357701Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:42.9357813Z ##[debug] "name": "skip-list", +2024-05-29T06:06:42.9357926Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9358387Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:42.9358514Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9358598Z ##[debug] }, +2024-05-29T06:06:42.9358687Z ##[debug] { +2024-05-29T06:06:42.9358812Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:42.9359011Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:42.9359128Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9359488Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:42.9359602Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9359692Z ##[debug] }, +2024-05-29T06:06:42.9359774Z ##[debug] { +2024-05-29T06:06:42.9359890Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:42.9360119Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:42.9360232Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9360594Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:42.9360709Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9360795Z ##[debug] }, +2024-05-29T06:06:42.9360884Z ##[debug] { +2024-05-29T06:06:42.9361001Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:42.9361115Z ##[debug] "name": "wait-list", +2024-05-29T06:06:42.9361235Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9361582Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:42.9361703Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9361786Z ##[debug] } +2024-05-29T06:06:42.9361869Z ##[debug] ] +2024-05-29T06:06:42.9361958Z ##[debug] } +2024-05-29T06:06:42.9362040Z ##[debug] }, +2024-05-29T06:06:42.9362133Z ##[debug] "workflow": { +2024-05-29T06:06:42.9362238Z ##[debug] "name": "Itself", +2024-05-29T06:06:42.9362498Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:42.9362581Z ##[debug] }, +2024-05-29T06:06:42.9362684Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9362792Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:42.9362910Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9363009Z ##[debug] "workflow": { +2024-05-29T06:06:42.9363105Z ##[debug] "name": "Itself", +2024-05-29T06:06:42.9363368Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:42.9363451Z ##[debug] } +2024-05-29T06:06:42.9363533Z ##[debug] } +2024-05-29T06:06:42.9363621Z ##[debug] }, +2024-05-29T06:06:42.9363704Z ##[debug] { +2024-05-29T06:06:42.9363795Z ##[debug] "checkRun": { +2024-05-29T06:06:42.9363911Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:42.9364106Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:42.9364327Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9364706Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:42.9364813Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9365027Z ##[debug] }, +2024-05-29T06:06:42.9365122Z ##[debug] "checkSuite": { +2024-05-29T06:06:42.9365222Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9365335Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:42.9365431Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9365545Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:42.9365661Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9365755Z ##[debug] "workflow": { +2024-05-29T06:06:42.9365853Z ##[debug] "name": "Itself", +2024-05-29T06:06:42.9366121Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:42.9366205Z ##[debug] } +2024-05-29T06:06:42.9366299Z ##[debug] }, +2024-05-29T06:06:42.9366396Z ##[debug] "checkRuns": { +2024-05-29T06:06:42.9366495Z ##[debug] "totalCount": 7, +2024-05-29T06:06:42.9366598Z ##[debug] "pageInfo": { +2024-05-29T06:06:42.9366708Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:42.9366895Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:42.9366986Z ##[debug] }, +2024-05-29T06:06:42.9367078Z ##[debug] "nodes": [ +2024-05-29T06:06:42.9367162Z ##[debug] { +2024-05-29T06:06:42.9367289Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:42.9367411Z ##[debug] "name": "default_logic", +2024-05-29T06:06:42.9367527Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9367899Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:42.9368016Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9368310Z ##[debug] }, +2024-05-29T06:06:42.9368454Z ##[debug] { +2024-05-29T06:06:42.9368627Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:42.9368757Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:42.9368880Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9369236Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:42.9369359Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9369447Z ##[debug] }, +2024-05-29T06:06:42.9369540Z ##[debug] { +2024-05-29T06:06:42.9369665Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:42.9369838Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:42.9369962Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9370330Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:42.9370458Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9370545Z ##[debug] }, +2024-05-29T06:06:42.9370629Z ##[debug] { +2024-05-29T06:06:42.9370755Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:42.9370870Z ##[debug] "name": "skip-list", +2024-05-29T06:06:42.9370985Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9371375Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:42.9371492Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9371582Z ##[debug] }, +2024-05-29T06:06:42.9371664Z ##[debug] { +2024-05-29T06:06:42.9371783Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:42.9371985Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:42.9372259Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9372621Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:42.9372738Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9372822Z ##[debug] }, +2024-05-29T06:06:42.9373012Z ##[debug] { +2024-05-29T06:06:42.9373133Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:42.9373353Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:42.9373474Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9373831Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:42.9373954Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9374037Z ##[debug] }, +2024-05-29T06:06:42.9374118Z ##[debug] { +2024-05-29T06:06:42.9374241Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:42.9374354Z ##[debug] "name": "wait-list", +2024-05-29T06:06:42.9374469Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9374833Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:42.9374954Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9375039Z ##[debug] } +2024-05-29T06:06:42.9375129Z ##[debug] ] +2024-05-29T06:06:42.9375211Z ##[debug] } +2024-05-29T06:06:42.9375293Z ##[debug] }, +2024-05-29T06:06:42.9375398Z ##[debug] "workflow": { +2024-05-29T06:06:42.9375494Z ##[debug] "name": "Itself", +2024-05-29T06:06:42.9375757Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:42.9375839Z ##[debug] }, +2024-05-29T06:06:42.9375936Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9376049Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:42.9376162Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9376255Z ##[debug] "workflow": { +2024-05-29T06:06:42.9376359Z ##[debug] "name": "Itself", +2024-05-29T06:06:42.9376614Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:42.9376703Z ##[debug] } +2024-05-29T06:06:42.9376791Z ##[debug] } +2024-05-29T06:06:42.9376872Z ##[debug] }, +2024-05-29T06:06:42.9376953Z ##[debug] { +2024-05-29T06:06:42.9377051Z ##[debug] "checkRun": { +2024-05-29T06:06:42.9377162Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:42.9377381Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:42.9377486Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9377852Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:42.9377969Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9378214Z ##[debug] }, +2024-05-29T06:06:42.9378310Z ##[debug] "checkSuite": { +2024-05-29T06:06:42.9378418Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9378525Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:42.9378628Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9378746Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:42.9378856Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9378956Z ##[debug] "workflow": { +2024-05-29T06:06:42.9379053Z ##[debug] "name": "Itself", +2024-05-29T06:06:42.9379310Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:42.9379398Z ##[debug] } +2024-05-29T06:06:42.9379480Z ##[debug] }, +2024-05-29T06:06:42.9379574Z ##[debug] "checkRuns": { +2024-05-29T06:06:42.9379677Z ##[debug] "totalCount": 7, +2024-05-29T06:06:42.9379771Z ##[debug] "pageInfo": { +2024-05-29T06:06:42.9380008Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:42.9380206Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:42.9380295Z ##[debug] }, +2024-05-29T06:06:42.9380393Z ##[debug] "nodes": [ +2024-05-29T06:06:42.9380478Z ##[debug] { +2024-05-29T06:06:42.9380705Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:42.9380832Z ##[debug] "name": "default_logic", +2024-05-29T06:06:42.9380948Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9381325Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:42.9381452Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9381536Z ##[debug] }, +2024-05-29T06:06:42.9381618Z ##[debug] { +2024-05-29T06:06:42.9381744Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:42.9381862Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:42.9381987Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9382356Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:42.9382474Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9382570Z ##[debug] }, +2024-05-29T06:06:42.9382655Z ##[debug] { +2024-05-29T06:06:42.9382772Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:42.9382947Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:42.9383061Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9383454Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:42.9383571Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9383655Z ##[debug] }, +2024-05-29T06:06:42.9383744Z ##[debug] { +2024-05-29T06:06:42.9383865Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:42.9383974Z ##[debug] "name": "skip-list", +2024-05-29T06:06:42.9384093Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9384456Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:42.9384584Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9384667Z ##[debug] }, +2024-05-29T06:06:42.9384750Z ##[debug] { +2024-05-29T06:06:42.9384873Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:42.9385066Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:42.9385177Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9385532Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:42.9385644Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9385735Z ##[debug] }, +2024-05-29T06:06:42.9385820Z ##[debug] { +2024-05-29T06:06:42.9385935Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:42.9386161Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:42.9386277Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9386631Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:42.9386752Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9386836Z ##[debug] }, +2024-05-29T06:06:42.9386919Z ##[debug] { +2024-05-29T06:06:42.9387042Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:42.9387148Z ##[debug] "name": "wait-list", +2024-05-29T06:06:42.9387269Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9387709Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:42.9387828Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9387917Z ##[debug] } +2024-05-29T06:06:42.9387998Z ##[debug] ] +2024-05-29T06:06:42.9388187Z ##[debug] } +2024-05-29T06:06:42.9388388Z ##[debug] }, +2024-05-29T06:06:42.9388480Z ##[debug] "workflow": { +2024-05-29T06:06:42.9388578Z ##[debug] "name": "Itself", +2024-05-29T06:06:42.9388841Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:42.9388923Z ##[debug] }, +2024-05-29T06:06:42.9389024Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9389138Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:42.9389248Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9389346Z ##[debug] "workflow": { +2024-05-29T06:06:42.9389444Z ##[debug] "name": "Itself", +2024-05-29T06:06:42.9389704Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:42.9389791Z ##[debug] } +2024-05-29T06:06:42.9389873Z ##[debug] } +2024-05-29T06:06:42.9389954Z ##[debug] }, +2024-05-29T06:06:42.9390044Z ##[debug] { +2024-05-29T06:06:42.9390134Z ##[debug] "checkRun": { +2024-05-29T06:06:42.9390251Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:42.9390357Z ##[debug] "name": "wait-list", +2024-05-29T06:06:42.9390459Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9390831Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:42.9390937Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9391018Z ##[debug] }, +2024-05-29T06:06:42.9391116Z ##[debug] "checkSuite": { +2024-05-29T06:06:42.9391218Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9391324Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:42.9391428Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9391547Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:42.9391664Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9391764Z ##[debug] "workflow": { +2024-05-29T06:06:42.9391862Z ##[debug] "name": "Itself", +2024-05-29T06:06:42.9392128Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:42.9392218Z ##[debug] } +2024-05-29T06:06:42.9392301Z ##[debug] }, +2024-05-29T06:06:42.9392404Z ##[debug] "checkRuns": { +2024-05-29T06:06:42.9392501Z ##[debug] "totalCount": 7, +2024-05-29T06:06:42.9392596Z ##[debug] "pageInfo": { +2024-05-29T06:06:42.9392714Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:42.9392893Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:42.9392989Z ##[debug] }, +2024-05-29T06:06:42.9393107Z ##[debug] "nodes": [ +2024-05-29T06:06:42.9393192Z ##[debug] { +2024-05-29T06:06:42.9393322Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:42.9393444Z ##[debug] "name": "default_logic", +2024-05-29T06:06:42.9393559Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9393923Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:42.9394044Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9394128Z ##[debug] }, +2024-05-29T06:06:42.9394216Z ##[debug] { +2024-05-29T06:06:42.9394335Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:42.9394453Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:42.9394573Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9394934Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:42.9395057Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9395140Z ##[debug] }, +2024-05-29T06:06:42.9395363Z ##[debug] { +2024-05-29T06:06:42.9395488Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:42.9395658Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:42.9395771Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9396202Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:42.9396316Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9396403Z ##[debug] }, +2024-05-29T06:06:42.9396485Z ##[debug] { +2024-05-29T06:06:42.9396600Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:42.9396712Z ##[debug] "name": "skip-list", +2024-05-29T06:06:42.9396824Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9397177Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:42.9397304Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9397388Z ##[debug] }, +2024-05-29T06:06:42.9397474Z ##[debug] { +2024-05-29T06:06:42.9397589Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:42.9397793Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:42.9397909Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9398361Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:42.9398477Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9398566Z ##[debug] }, +2024-05-29T06:06:42.9398649Z ##[debug] { +2024-05-29T06:06:42.9398763Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:42.9398990Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:42.9399106Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9399461Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:42.9399577Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9399666Z ##[debug] }, +2024-05-29T06:06:42.9399756Z ##[debug] { +2024-05-29T06:06:42.9399873Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:42.9399981Z ##[debug] "name": "wait-list", +2024-05-29T06:06:42.9400102Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9400451Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:42.9400573Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9400657Z ##[debug] } +2024-05-29T06:06:42.9400740Z ##[debug] ] +2024-05-29T06:06:42.9400828Z ##[debug] } +2024-05-29T06:06:42.9400909Z ##[debug] }, +2024-05-29T06:06:42.9401004Z ##[debug] "workflow": { +2024-05-29T06:06:42.9401107Z ##[debug] "name": "Itself", +2024-05-29T06:06:42.9401364Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:42.9401447Z ##[debug] }, +2024-05-29T06:06:42.9401554Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9401661Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:42.9401775Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9401867Z ##[debug] "workflow": { +2024-05-29T06:06:42.9401964Z ##[debug] "name": "Itself", +2024-05-29T06:06:42.9402225Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:42.9402307Z ##[debug] } +2024-05-29T06:06:42.9402390Z ##[debug] } +2024-05-29T06:06:42.9402481Z ##[debug] }, +2024-05-29T06:06:42.9402562Z ##[debug] { +2024-05-29T06:06:42.9402652Z ##[debug] "checkRun": { +2024-05-29T06:06:42.9402767Z ##[debug] "databaseId": 25536411358, +2024-05-29T06:06:42.9403015Z ##[debug] "name": "dependency-review", +2024-05-29T06:06:42.9403122Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9403491Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", +2024-05-29T06:06:42.9403702Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9403791Z ##[debug] }, +2024-05-29T06:06:42.9403883Z ##[debug] "checkSuite": { +2024-05-29T06:06:42.9403983Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9404095Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:42.9404192Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9404305Z ##[debug] "databaseId": 9281068690, +2024-05-29T06:06:42.9404420Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9404513Z ##[debug] "workflow": { +2024-05-29T06:06:42.9404630Z ##[debug] "name": "💂➕", +2024-05-29T06:06:42.9404966Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:42.9405051Z ##[debug] } +2024-05-29T06:06:42.9405139Z ##[debug] }, +2024-05-29T06:06:42.9405233Z ##[debug] "checkRuns": { +2024-05-29T06:06:42.9405329Z ##[debug] "totalCount": 1, +2024-05-29T06:06:42.9405437Z ##[debug] "pageInfo": { +2024-05-29T06:06:42.9405549Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:42.9405730Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtt4=" +2024-05-29T06:06:42.9405821Z ##[debug] }, +2024-05-29T06:06:42.9405912Z ##[debug] "nodes": [ +2024-05-29T06:06:42.9405995Z ##[debug] { +2024-05-29T06:06:42.9406123Z ##[debug] "databaseId": 25536411358, +2024-05-29T06:06:42.9406258Z ##[debug] "name": "dependency-review", +2024-05-29T06:06:42.9406376Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:42.9406753Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", +2024-05-29T06:06:42.9406871Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:42.9406959Z ##[debug] } +2024-05-29T06:06:42.9407041Z ##[debug] ] +2024-05-29T06:06:42.9407123Z ##[debug] } +2024-05-29T06:06:42.9407215Z ##[debug] }, +2024-05-29T06:06:42.9407306Z ##[debug] "workflow": { +2024-05-29T06:06:42.9407400Z ##[debug] "name": "💂➕", +2024-05-29T06:06:42.9407715Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:42.9407799Z ##[debug] }, +2024-05-29T06:06:42.9407893Z ##[debug] "workflowRun": { +2024-05-29T06:06:42.9408008Z ##[debug] "databaseId": 9281068690, +2024-05-29T06:06:42.9408346Z ##[debug] "event": "pull_request", +2024-05-29T06:06:42.9408501Z ##[debug] "workflow": { +2024-05-29T06:06:42.9408601Z ##[debug] "name": "💂➕", +2024-05-29T06:06:42.9408929Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:42.9409017Z ##[debug] } +2024-05-29T06:06:42.9409099Z ##[debug] } +2024-05-29T06:06:42.9409180Z ##[debug] } +2024-05-29T06:06:42.9409267Z ##[debug] ], +2024-05-29T06:06:42.9409381Z ##[debug] "elapsedMsec": 6646.416636000387 +2024-05-29T06:06:42.9409469Z ##[debug]} +2024-05-29T06:06:42.9410921Z GH-820-graceperiod.yml(quickstarter-success): [suiteStatus: IN_PROGRESS][suiteConclusion: (null)][runStatus: COMPLETED][runConclusion: SUCCESS][eventName: pull_request][runURL: https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631] +2024-05-29T06:06:42.9411593Z ##[debug]{ +2024-05-29T06:06:42.9411690Z ##[debug] "label": "filtered", +2024-05-29T06:06:42.9411788Z ##[debug] "report": { +2024-05-29T06:06:42.9411896Z ##[debug] "progress": "in_progress", +2024-05-29T06:06:42.9412012Z ##[debug] "conclusion": "acceptable", +2024-05-29T06:06:42.9412106Z ##[debug] "summaries": [ +2024-05-29T06:06:42.9412187Z ##[debug] { +2024-05-29T06:06:42.9412436Z ##[debug] "acceptable": true, +2024-05-29T06:06:42.9412589Z ##[debug] "workflowPath": "GH-820-graceperiod.yml", +2024-05-29T06:06:42.9412698Z ##[debug] "isSameWorkflow": true, +2024-05-29T06:06:42.9412824Z ##[debug] "eventName": "pull_request", +2024-05-29T06:06:42.9413066Z ##[debug] "checkSuiteStatus": "IN_PROGRESS", +2024-05-29T06:06:42.9413193Z ##[debug] "checkSuiteConclusion": null, +2024-05-29T06:06:42.9413315Z ##[debug] "runDatabaseId": 25536443631, +2024-05-29T06:06:42.9413447Z ##[debug] "jobName": "quickstarter-success", +2024-05-29T06:06:42.9413838Z ##[debug] "checkRunUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:42.9413952Z ##[debug] "runStatus": "COMPLETED", +2024-05-29T06:06:42.9414067Z ##[debug] "runConclusion": "SUCCESS" +2024-05-29T06:06:42.9414157Z ##[debug] } +2024-05-29T06:06:42.9414238Z ##[debug] ] +2024-05-29T06:06:42.9414322Z ##[debug] } +2024-05-29T06:06:42.9414406Z ##[debug]} +2024-05-29T06:06:42.9414512Z some jobs still in progress +2024-05-29T06:06:42.9414816Z ::endgroup:: +2024-05-29T06:06:42.9414921Z ##[endgroup] +2024-05-29T06:06:42.9415123Z Wait about 5 seconds before next polling to reduce API calls. +2024-05-29T06:06:47.8864864Z ::group::Polling 3: 2024-05-29T06:06:47.886Z +2024-05-29T06:06:47.8865476Z ##[group]Polling 3: 2024-05-29T06:06:47.886Z +2024-05-29T06:06:48.4170231Z ##[debug]{ +2024-05-29T06:06:48.4170518Z ##[debug] "label": "rawdata", +2024-05-29T06:06:48.4170814Z ##[debug] "checks": [ +2024-05-29T06:06:48.4171060Z ##[debug] { +2024-05-29T06:06:48.4171286Z ##[debug] "checkRun": { +2024-05-29T06:06:48.4171588Z ##[debug] "databaseId": 25536410411, +2024-05-29T06:06:48.4171923Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:48.4172232Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4172875Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", +2024-05-29T06:06:48.4173492Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4173795Z ##[debug] }, +2024-05-29T06:06:48.4174033Z ##[debug] "checkSuite": { +2024-05-29T06:06:48.4174341Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4174690Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:48.4175020Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4175336Z ##[debug] "databaseId": 9281068413, +2024-05-29T06:06:48.4175675Z ##[debug] "event": "push", +2024-05-29T06:06:48.4175978Z ##[debug] "workflow": { +2024-05-29T06:06:48.4176300Z ##[debug] "name": "💧", +2024-05-29T06:06:48.4176800Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:48.4177293Z ##[debug] } +2024-05-29T06:06:48.4177529Z ##[debug] }, +2024-05-29T06:06:48.4177775Z ##[debug] "checkRuns": { +2024-05-29T06:06:48.4178187Z ##[debug] "totalCount": 1, +2024-05-29T06:06:48.4178539Z ##[debug] "pageInfo": { +2024-05-29T06:06:48.4178856Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:48.4179271Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWsys=" +2024-05-29T06:06:48.4179668Z ##[debug] }, +2024-05-29T06:06:48.4179926Z ##[debug] "nodes": [ +2024-05-29T06:06:48.4180192Z ##[debug] { +2024-05-29T06:06:48.4180475Z ##[debug] "databaseId": 25536410411, +2024-05-29T06:06:48.4180834Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:48.4181175Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4181797Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", +2024-05-29T06:06:48.4182419Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4182745Z ##[debug] } +2024-05-29T06:06:48.4182981Z ##[debug] ] +2024-05-29T06:06:48.4183213Z ##[debug] } +2024-05-29T06:06:48.4183441Z ##[debug] }, +2024-05-29T06:06:48.4184009Z ##[debug] "workflow": { +2024-05-29T06:06:48.4184296Z ##[debug] "name": "💧", +2024-05-29T06:06:48.4184760Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:48.4185234Z ##[debug] }, +2024-05-29T06:06:48.4185609Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4185916Z ##[debug] "databaseId": 9281068413, +2024-05-29T06:06:48.4186233Z ##[debug] "event": "push", +2024-05-29T06:06:48.4186531Z ##[debug] "workflow": { +2024-05-29T06:06:48.4186815Z ##[debug] "name": "💧", +2024-05-29T06:06:48.4187267Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:48.4187755Z ##[debug] } +2024-05-29T06:06:48.4187994Z ##[debug] } +2024-05-29T06:06:48.4188330Z ##[debug] }, +2024-05-29T06:06:48.4188559Z ##[debug] { +2024-05-29T06:06:48.4188801Z ##[debug] "checkRun": { +2024-05-29T06:06:48.4189120Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:48.4189451Z ##[debug] "name": "build", +2024-05-29T06:06:48.4189757Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4190345Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:48.4190954Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4191265Z ##[debug] }, +2024-05-29T06:06:48.4191499Z ##[debug] "checkSuite": { +2024-05-29T06:06:48.4191797Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4192131Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:48.4192457Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4192773Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:48.4193125Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4193455Z ##[debug] "workflow": { +2024-05-29T06:06:48.4193758Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:48.4194238Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:48.4194700Z ##[debug] } +2024-05-29T06:06:48.4194938Z ##[debug] }, +2024-05-29T06:06:48.4195185Z ##[debug] "checkRuns": { +2024-05-29T06:06:48.4195486Z ##[debug] "totalCount": 3, +2024-05-29T06:06:48.4195794Z ##[debug] "pageInfo": { +2024-05-29T06:06:48.4196104Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:48.4196518Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:48.4196910Z ##[debug] }, +2024-05-29T06:06:48.4197159Z ##[debug] "nodes": [ +2024-05-29T06:06:48.4197428Z ##[debug] { +2024-05-29T06:06:48.4197705Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:48.4198173Z ##[debug] "name": "build", +2024-05-29T06:06:48.4198515Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4199127Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:48.4199745Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4200076Z ##[debug] }, +2024-05-29T06:06:48.4200319Z ##[debug] { +2024-05-29T06:06:48.4200585Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:48.4200929Z ##[debug] "name": "test", +2024-05-29T06:06:48.4201260Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4201851Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:48.4202463Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4202785Z ##[debug] }, +2024-05-29T06:06:48.4203020Z ##[debug] { +2024-05-29T06:06:48.4203297Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:48.4203656Z ##[debug] "name": "typecheck", +2024-05-29T06:06:48.4204000Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4204740Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:48.4205341Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4205659Z ##[debug] } +2024-05-29T06:06:48.4205921Z ##[debug] ] +2024-05-29T06:06:48.4206281Z ##[debug] } +2024-05-29T06:06:48.4206506Z ##[debug] }, +2024-05-29T06:06:48.4206732Z ##[debug] "workflow": { +2024-05-29T06:06:48.4207017Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:48.4207477Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:48.4207925Z ##[debug] }, +2024-05-29T06:06:48.4208396Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4208714Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:48.4209047Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4209372Z ##[debug] "workflow": { +2024-05-29T06:06:48.4209664Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:48.4210128Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:48.4210585Z ##[debug] } +2024-05-29T06:06:48.4210811Z ##[debug] } +2024-05-29T06:06:48.4211024Z ##[debug] }, +2024-05-29T06:06:48.4211241Z ##[debug] { +2024-05-29T06:06:48.4211472Z ##[debug] "checkRun": { +2024-05-29T06:06:48.4211757Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:48.4212091Z ##[debug] "name": "test", +2024-05-29T06:06:48.4212388Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4212977Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:48.4213573Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4213881Z ##[debug] }, +2024-05-29T06:06:48.4214111Z ##[debug] "checkSuite": { +2024-05-29T06:06:48.4214405Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4214734Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:48.4215064Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4215375Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:48.4215728Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4216056Z ##[debug] "workflow": { +2024-05-29T06:06:48.4216362Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:48.4216838Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:48.4217294Z ##[debug] } +2024-05-29T06:06:48.4217523Z ##[debug] }, +2024-05-29T06:06:48.4217763Z ##[debug] "checkRuns": { +2024-05-29T06:06:48.4218152Z ##[debug] "totalCount": 3, +2024-05-29T06:06:48.4218455Z ##[debug] "pageInfo": { +2024-05-29T06:06:48.4218759Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:48.4219163Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:48.4219548Z ##[debug] }, +2024-05-29T06:06:48.4219792Z ##[debug] "nodes": [ +2024-05-29T06:06:48.4220065Z ##[debug] { +2024-05-29T06:06:48.4220339Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:48.4220686Z ##[debug] "name": "build", +2024-05-29T06:06:48.4221022Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4221632Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:48.4222249Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4222577Z ##[debug] }, +2024-05-29T06:06:48.4222819Z ##[debug] { +2024-05-29T06:06:48.4223085Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:48.4223425Z ##[debug] "name": "test", +2024-05-29T06:06:48.4223757Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4224347Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:48.4225091Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4225417Z ##[debug] }, +2024-05-29T06:06:48.4225650Z ##[debug] { +2024-05-29T06:06:48.4225923Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:48.4226272Z ##[debug] "name": "typecheck", +2024-05-29T06:06:48.4226728Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4227320Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:48.4227917Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4228391Z ##[debug] } +2024-05-29T06:06:48.4228623Z ##[debug] ] +2024-05-29T06:06:48.4228855Z ##[debug] } +2024-05-29T06:06:48.4229076Z ##[debug] }, +2024-05-29T06:06:48.4229302Z ##[debug] "workflow": { +2024-05-29T06:06:48.4229588Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:48.4230052Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:48.4230507Z ##[debug] }, +2024-05-29T06:06:48.4230742Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4231042Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:48.4231379Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4231700Z ##[debug] "workflow": { +2024-05-29T06:06:48.4232000Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:48.4232453Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:48.4232905Z ##[debug] } +2024-05-29T06:06:48.4233133Z ##[debug] } +2024-05-29T06:06:48.4233348Z ##[debug] }, +2024-05-29T06:06:48.4233572Z ##[debug] { +2024-05-29T06:06:48.4233799Z ##[debug] "checkRun": { +2024-05-29T06:06:48.4234080Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:48.4234410Z ##[debug] "name": "typecheck", +2024-05-29T06:06:48.4234732Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4235323Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:48.4235918Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4236222Z ##[debug] }, +2024-05-29T06:06:48.4236461Z ##[debug] "checkSuite": { +2024-05-29T06:06:48.4236743Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4237083Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:48.4237406Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4237717Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:48.4238166Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4238496Z ##[debug] "workflow": { +2024-05-29T06:06:48.4238807Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:48.4239275Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:48.4239730Z ##[debug] } +2024-05-29T06:06:48.4239958Z ##[debug] }, +2024-05-29T06:06:48.4240195Z ##[debug] "checkRuns": { +2024-05-29T06:06:48.4240491Z ##[debug] "totalCount": 3, +2024-05-29T06:06:48.4240784Z ##[debug] "pageInfo": { +2024-05-29T06:06:48.4241084Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:48.4241487Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:48.4241883Z ##[debug] }, +2024-05-29T06:06:48.4242131Z ##[debug] "nodes": [ +2024-05-29T06:06:48.4242401Z ##[debug] { +2024-05-29T06:06:48.4242673Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:48.4243020Z ##[debug] "name": "build", +2024-05-29T06:06:48.4243360Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4243972Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:48.4244582Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4244906Z ##[debug] }, +2024-05-29T06:06:48.4245151Z ##[debug] { +2024-05-29T06:06:48.4245590Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:48.4245938Z ##[debug] "name": "test", +2024-05-29T06:06:48.4246269Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4246856Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:48.4247573Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4247892Z ##[debug] }, +2024-05-29T06:06:48.4248330Z ##[debug] { +2024-05-29T06:06:48.4248659Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:48.4249009Z ##[debug] "name": "typecheck", +2024-05-29T06:06:48.4249351Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4249947Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:48.4250550Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4250871Z ##[debug] } +2024-05-29T06:06:48.4251109Z ##[debug] ] +2024-05-29T06:06:48.4251343Z ##[debug] } +2024-05-29T06:06:48.4251570Z ##[debug] }, +2024-05-29T06:06:48.4251798Z ##[debug] "workflow": { +2024-05-29T06:06:48.4252086Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:48.4252553Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:48.4252998Z ##[debug] }, +2024-05-29T06:06:48.4253233Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4253545Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:48.4253882Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4254212Z ##[debug] "workflow": { +2024-05-29T06:06:48.4254506Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:48.4254962Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:48.4255416Z ##[debug] } +2024-05-29T06:06:48.4255643Z ##[debug] } +2024-05-29T06:06:48.4255861Z ##[debug] }, +2024-05-29T06:06:48.4256084Z ##[debug] { +2024-05-29T06:06:48.4256312Z ##[debug] "checkRun": { +2024-05-29T06:06:48.4256596Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:48.4256924Z ##[debug] "name": "typos", +2024-05-29T06:06:48.4257225Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4257816Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:48.4258551Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4258855Z ##[debug] }, +2024-05-29T06:06:48.4259093Z ##[debug] "checkSuite": { +2024-05-29T06:06:48.4259375Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4259705Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:48.4260030Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4260334Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:48.4260685Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4261013Z ##[debug] "workflow": { +2024-05-29T06:06:48.4261319Z ##[debug] "name": "👕", +2024-05-29T06:06:48.4261780Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:48.4262246Z ##[debug] } +2024-05-29T06:06:48.4262478Z ##[debug] }, +2024-05-29T06:06:48.4262726Z ##[debug] "checkRuns": { +2024-05-29T06:06:48.4263019Z ##[debug] "totalCount": 4, +2024-05-29T06:06:48.4263317Z ##[debug] "pageInfo": { +2024-05-29T06:06:48.4263626Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:48.4264034Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:48.4264416Z ##[debug] }, +2024-05-29T06:06:48.4264673Z ##[debug] "nodes": [ +2024-05-29T06:06:48.4264936Z ##[debug] { +2024-05-29T06:06:48.4265210Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:48.4265555Z ##[debug] "name": "typos", +2024-05-29T06:06:48.4265893Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4266643Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:48.4267254Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4267578Z ##[debug] }, +2024-05-29T06:06:48.4267925Z ##[debug] { +2024-05-29T06:06:48.4268317Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:48.4268670Z ##[debug] "name": "dprint", +2024-05-29T06:06:48.4269006Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4269597Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:48.4270203Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4270525Z ##[debug] }, +2024-05-29T06:06:48.4270758Z ##[debug] { +2024-05-29T06:06:48.4271028Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:48.4271388Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:48.4271740Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4272333Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:48.4272941Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4273259Z ##[debug] }, +2024-05-29T06:06:48.4273494Z ##[debug] { +2024-05-29T06:06:48.4273768Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:48.4274105Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:48.4274437Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4275038Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:48.4275650Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4275968Z ##[debug] } +2024-05-29T06:06:48.4276203Z ##[debug] ] +2024-05-29T06:06:48.4276442Z ##[debug] } +2024-05-29T06:06:48.4276670Z ##[debug] }, +2024-05-29T06:06:48.4276907Z ##[debug] "workflow": { +2024-05-29T06:06:48.4277187Z ##[debug] "name": "👕", +2024-05-29T06:06:48.4277621Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:48.4278181Z ##[debug] }, +2024-05-29T06:06:48.4278417Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4278755Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:48.4279086Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4279412Z ##[debug] "workflow": { +2024-05-29T06:06:48.4279692Z ##[debug] "name": "👕", +2024-05-29T06:06:48.4280133Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:48.4280597Z ##[debug] } +2024-05-29T06:06:48.4280825Z ##[debug] } +2024-05-29T06:06:48.4281040Z ##[debug] }, +2024-05-29T06:06:48.4281257Z ##[debug] { +2024-05-29T06:06:48.4281480Z ##[debug] "checkRun": { +2024-05-29T06:06:48.4281769Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:48.4282102Z ##[debug] "name": "dprint", +2024-05-29T06:06:48.4282411Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4282995Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:48.4283604Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4283911Z ##[debug] }, +2024-05-29T06:06:48.4284139Z ##[debug] "checkSuite": { +2024-05-29T06:06:48.4284426Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4284756Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:48.4285070Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4285388Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:48.4285734Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4286053Z ##[debug] "workflow": { +2024-05-29T06:06:48.4286341Z ##[debug] "name": "👕", +2024-05-29T06:06:48.4286921Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:48.4287394Z ##[debug] } +2024-05-29T06:06:48.4287623Z ##[debug] }, +2024-05-29T06:06:48.4287864Z ##[debug] "checkRuns": { +2024-05-29T06:06:48.4288364Z ##[debug] "totalCount": 4, +2024-05-29T06:06:48.4288661Z ##[debug] "pageInfo": { +2024-05-29T06:06:48.4288968Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:48.4289375Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:48.4289758Z ##[debug] }, +2024-05-29T06:06:48.4290003Z ##[debug] "nodes": [ +2024-05-29T06:06:48.4290270Z ##[debug] { +2024-05-29T06:06:48.4290544Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:48.4290889Z ##[debug] "name": "typos", +2024-05-29T06:06:48.4291225Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4291834Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:48.4292447Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4292774Z ##[debug] }, +2024-05-29T06:06:48.4293011Z ##[debug] { +2024-05-29T06:06:48.4293300Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:48.4293646Z ##[debug] "name": "dprint", +2024-05-29T06:06:48.4293992Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4294578Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:48.4295182Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4295502Z ##[debug] }, +2024-05-29T06:06:48.4295734Z ##[debug] { +2024-05-29T06:06:48.4296009Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:48.4296358Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:48.4296694Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4297291Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:48.4297888Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4298293Z ##[debug] }, +2024-05-29T06:06:48.4298537Z ##[debug] { +2024-05-29T06:06:48.4298809Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:48.4299147Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:48.4299480Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4300080Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:48.4300686Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4301000Z ##[debug] } +2024-05-29T06:06:48.4301237Z ##[debug] ] +2024-05-29T06:06:48.4301470Z ##[debug] } +2024-05-29T06:06:48.4301689Z ##[debug] }, +2024-05-29T06:06:48.4301923Z ##[debug] "workflow": { +2024-05-29T06:06:48.4302198Z ##[debug] "name": "👕", +2024-05-29T06:06:48.4302627Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:48.4303094Z ##[debug] }, +2024-05-29T06:06:48.4303338Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4303635Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:48.4303977Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4304298Z ##[debug] "workflow": { +2024-05-29T06:06:48.4304581Z ##[debug] "name": "👕", +2024-05-29T06:06:48.4305026Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:48.4305489Z ##[debug] } +2024-05-29T06:06:48.4305710Z ##[debug] } +2024-05-29T06:06:48.4305932Z ##[debug] }, +2024-05-29T06:06:48.4306151Z ##[debug] { +2024-05-29T06:06:48.4306368Z ##[debug] "checkRun": { +2024-05-29T06:06:48.4306659Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:48.4307119Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:48.4307435Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4308027Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:48.4308846Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4309153Z ##[debug] }, +2024-05-29T06:06:48.4309379Z ##[debug] "checkSuite": { +2024-05-29T06:06:48.4309671Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4309998Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:48.4310313Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4310631Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:48.4310976Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4311299Z ##[debug] "workflow": { +2024-05-29T06:06:48.4311590Z ##[debug] "name": "👕", +2024-05-29T06:06:48.4312054Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:48.4312515Z ##[debug] } +2024-05-29T06:06:48.4312749Z ##[debug] }, +2024-05-29T06:06:48.4312991Z ##[debug] "checkRuns": { +2024-05-29T06:06:48.4313277Z ##[debug] "totalCount": 4, +2024-05-29T06:06:48.4313584Z ##[debug] "pageInfo": { +2024-05-29T06:06:48.4313896Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:48.4314303Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:48.4314693Z ##[debug] }, +2024-05-29T06:06:48.4314944Z ##[debug] "nodes": [ +2024-05-29T06:06:48.4315204Z ##[debug] { +2024-05-29T06:06:48.4315483Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:48.4315828Z ##[debug] "name": "typos", +2024-05-29T06:06:48.4316161Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4316765Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:48.4317382Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4317708Z ##[debug] }, +2024-05-29T06:06:48.4317944Z ##[debug] { +2024-05-29T06:06:48.4318319Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:48.4318664Z ##[debug] "name": "dprint", +2024-05-29T06:06:48.4319000Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4319597Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:48.4320195Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4320516Z ##[debug] }, +2024-05-29T06:06:48.4320748Z ##[debug] { +2024-05-29T06:06:48.4321024Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:48.4321371Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:48.4321707Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4322300Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:48.4322897Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4323208Z ##[debug] }, +2024-05-29T06:06:48.4323448Z ##[debug] { +2024-05-29T06:06:48.4323726Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:48.4324063Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:48.4324399Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4324998Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:48.4325606Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4325926Z ##[debug] } +2024-05-29T06:06:48.4326158Z ##[debug] ] +2024-05-29T06:06:48.4326393Z ##[debug] } +2024-05-29T06:06:48.4326614Z ##[debug] }, +2024-05-29T06:06:48.4326846Z ##[debug] "workflow": { +2024-05-29T06:06:48.4327121Z ##[debug] "name": "👕", +2024-05-29T06:06:48.4327702Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:48.4328360Z ##[debug] }, +2024-05-29T06:06:48.4328696Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4329273Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:48.4329863Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4330243Z ##[debug] "workflow": { +2024-05-29T06:06:48.4340705Z ##[debug] "name": "👕", +2024-05-29T06:06:48.4341201Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:48.4341695Z ##[debug] } +2024-05-29T06:06:48.4341934Z ##[debug] } +2024-05-29T06:06:48.4342166Z ##[debug] }, +2024-05-29T06:06:48.4342387Z ##[debug] { +2024-05-29T06:06:48.4342616Z ##[debug] "checkRun": { +2024-05-29T06:06:48.4342926Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:48.4343270Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:48.4343587Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4344199Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:48.4344813Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4345155Z ##[debug] }, +2024-05-29T06:06:48.4345390Z ##[debug] "checkSuite": { +2024-05-29T06:06:48.4345688Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4346018Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:48.4346337Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4346652Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:48.4347008Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4347337Z ##[debug] "workflow": { +2024-05-29T06:06:48.4347628Z ##[debug] "name": "👕", +2024-05-29T06:06:48.4348216Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:48.4348698Z ##[debug] } +2024-05-29T06:06:48.4348949Z ##[debug] }, +2024-05-29T06:06:48.4349195Z ##[debug] "checkRuns": { +2024-05-29T06:06:48.4349482Z ##[debug] "totalCount": 4, +2024-05-29T06:06:48.4349789Z ##[debug] "pageInfo": { +2024-05-29T06:06:48.4350101Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:48.4350515Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:48.4350908Z ##[debug] }, +2024-05-29T06:06:48.4351154Z ##[debug] "nodes": [ +2024-05-29T06:06:48.4351417Z ##[debug] { +2024-05-29T06:06:48.4351701Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:48.4352050Z ##[debug] "name": "typos", +2024-05-29T06:06:48.4352384Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4353001Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:48.4353619Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4353953Z ##[debug] }, +2024-05-29T06:06:48.4354199Z ##[debug] { +2024-05-29T06:06:48.4354475Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:48.4354828Z ##[debug] "name": "dprint", +2024-05-29T06:06:48.4355161Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4355763Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:48.4356366Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4356682Z ##[debug] }, +2024-05-29T06:06:48.4356928Z ##[debug] { +2024-05-29T06:06:48.4357203Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:48.4357548Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:48.4357893Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4358582Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:48.4359362Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4359684Z ##[debug] }, +2024-05-29T06:06:48.4359930Z ##[debug] { +2024-05-29T06:06:48.4360203Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:48.4360539Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:48.4361031Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4361647Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:48.4362254Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4362578Z ##[debug] } +2024-05-29T06:06:48.4362815Z ##[debug] ] +2024-05-29T06:06:48.4363042Z ##[debug] } +2024-05-29T06:06:48.4363273Z ##[debug] }, +2024-05-29T06:06:48.4363506Z ##[debug] "workflow": { +2024-05-29T06:06:48.4363777Z ##[debug] "name": "👕", +2024-05-29T06:06:48.4364224Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:48.4364693Z ##[debug] }, +2024-05-29T06:06:48.4364933Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4365242Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:48.4365579Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4365908Z ##[debug] "workflow": { +2024-05-29T06:06:48.4366184Z ##[debug] "name": "👕", +2024-05-29T06:06:48.4366633Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:48.4367096Z ##[debug] } +2024-05-29T06:06:48.4367317Z ##[debug] } +2024-05-29T06:06:48.4367535Z ##[debug] }, +2024-05-29T06:06:48.4367753Z ##[debug] { +2024-05-29T06:06:48.4367972Z ##[debug] "checkRun": { +2024-05-29T06:06:48.4368371Z ##[debug] "databaseId": 25536411289, +2024-05-29T06:06:48.4368704Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:48.4369012Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4369606Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", +2024-05-29T06:06:48.4370213Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4370516Z ##[debug] }, +2024-05-29T06:06:48.4370755Z ##[debug] "checkSuite": { +2024-05-29T06:06:48.4371056Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4371389Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:48.4371720Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4372039Z ##[debug] "databaseId": 9281068678, +2024-05-29T06:06:48.4372382Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4372714Z ##[debug] "workflow": { +2024-05-29T06:06:48.4373011Z ##[debug] "name": "💧", +2024-05-29T06:06:48.4373479Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:48.4373964Z ##[debug] } +2024-05-29T06:06:48.4374198Z ##[debug] }, +2024-05-29T06:06:48.4374441Z ##[debug] "checkRuns": { +2024-05-29T06:06:48.4374733Z ##[debug] "totalCount": 1, +2024-05-29T06:06:48.4375038Z ##[debug] "pageInfo": { +2024-05-29T06:06:48.4375341Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:48.4375745Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpk=" +2024-05-29T06:06:48.4376144Z ##[debug] }, +2024-05-29T06:06:48.4376392Z ##[debug] "nodes": [ +2024-05-29T06:06:48.4376656Z ##[debug] { +2024-05-29T06:06:48.4376938Z ##[debug] "databaseId": 25536411289, +2024-05-29T06:06:48.4377290Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:48.4377641Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4378536Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", +2024-05-29T06:06:48.4379165Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4379490Z ##[debug] } +2024-05-29T06:06:48.4379720Z ##[debug] ] +2024-05-29T06:06:48.4380091Z ##[debug] } +2024-05-29T06:06:48.4380320Z ##[debug] }, +2024-05-29T06:06:48.4380545Z ##[debug] "workflow": { +2024-05-29T06:06:48.4380819Z ##[debug] "name": "💧", +2024-05-29T06:06:48.4381269Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:48.4381858Z ##[debug] }, +2024-05-29T06:06:48.4382095Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4382396Z ##[debug] "databaseId": 9281068678, +2024-05-29T06:06:48.4382732Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4383043Z ##[debug] "workflow": { +2024-05-29T06:06:48.4383321Z ##[debug] "name": "💧", +2024-05-29T06:06:48.4383781Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:48.4384249Z ##[debug] } +2024-05-29T06:06:48.4384476Z ##[debug] } +2024-05-29T06:06:48.4384701Z ##[debug] }, +2024-05-29T06:06:48.4384916Z ##[debug] { +2024-05-29T06:06:48.4385150Z ##[debug] "checkRun": { +2024-05-29T06:06:48.4385445Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:48.4385776Z ##[debug] "name": "intermediate", +2024-05-29T06:06:48.4386108Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:48.4386714Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:48.4387296Z ##[debug] "conclusion": null +2024-05-29T06:06:48.4387585Z ##[debug] }, +2024-05-29T06:06:48.4387823Z ##[debug] "checkSuite": { +2024-05-29T06:06:48.4388246Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:48.4388576Z ##[debug] "conclusion": null, +2024-05-29T06:06:48.4388891Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4389199Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:48.4389554Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4389887Z ##[debug] "workflow": { +2024-05-29T06:06:48.4390246Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:48.4390814Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:48.4391320Z ##[debug] } +2024-05-29T06:06:48.4391556Z ##[debug] }, +2024-05-29T06:06:48.4391796Z ##[debug] "checkRuns": { +2024-05-29T06:06:48.4392087Z ##[debug] "totalCount": 4, +2024-05-29T06:06:48.4392385Z ##[debug] "pageInfo": { +2024-05-29T06:06:48.4392685Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:48.4393092Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXNaM=" +2024-05-29T06:06:48.4393480Z ##[debug] }, +2024-05-29T06:06:48.4393718Z ##[debug] "nodes": [ +2024-05-29T06:06:48.4393983Z ##[debug] { +2024-05-29T06:06:48.4394260Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:48.4394625Z ##[debug] "name": "intermediate", +2024-05-29T06:06:48.4394996Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:48.4395612Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:48.4396213Z ##[debug] "conclusion": null +2024-05-29T06:06:48.4396514Z ##[debug] }, +2024-05-29T06:06:48.4396761Z ##[debug] { +2024-05-29T06:06:48.4397034Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:48.4397385Z ##[debug] "name": "wait-success", +2024-05-29T06:06:48.4397736Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:48.4398427Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:48.4399011Z ##[debug] "conclusion": null +2024-05-29T06:06:48.4399320Z ##[debug] }, +2024-05-29T06:06:48.4399562Z ##[debug] { +2024-05-29T06:06:48.4399827Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:48.4400333Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:48.4400721Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4401315Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:48.4402030Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4402354Z ##[debug] }, +2024-05-29T06:06:48.4402593Z ##[debug] { +2024-05-29T06:06:48.4402857Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:48.4403204Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:48.4403551Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:48.4404146Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:48.4404743Z ##[debug] "conclusion": null +2024-05-29T06:06:48.4405050Z ##[debug] } +2024-05-29T06:06:48.4405279Z ##[debug] ] +2024-05-29T06:06:48.4405511Z ##[debug] } +2024-05-29T06:06:48.4405739Z ##[debug] }, +2024-05-29T06:06:48.4405968Z ##[debug] "workflow": { +2024-05-29T06:06:48.4406304Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:48.4406865Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:48.4407359Z ##[debug] }, +2024-05-29T06:06:48.4407595Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4407898Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:48.4408337Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4408647Z ##[debug] "workflow": { +2024-05-29T06:06:48.4408986Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:48.4409543Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:48.4410038Z ##[debug] } +2024-05-29T06:06:48.4410262Z ##[debug] } +2024-05-29T06:06:48.4410482Z ##[debug] }, +2024-05-29T06:06:48.4410694Z ##[debug] { +2024-05-29T06:06:48.4410924Z ##[debug] "checkRun": { +2024-05-29T06:06:48.4411217Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:48.4411547Z ##[debug] "name": "wait-success", +2024-05-29T06:06:48.4411876Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:48.4412475Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:48.4413055Z ##[debug] "conclusion": null +2024-05-29T06:06:48.4413347Z ##[debug] }, +2024-05-29T06:06:48.4413581Z ##[debug] "checkSuite": { +2024-05-29T06:06:48.4413869Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:48.4414186Z ##[debug] "conclusion": null, +2024-05-29T06:06:48.4414496Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4414806Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:48.4415161Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4415487Z ##[debug] "workflow": { +2024-05-29T06:06:48.4415842Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:48.4416404Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:48.4416908Z ##[debug] } +2024-05-29T06:06:48.4417146Z ##[debug] }, +2024-05-29T06:06:48.4417380Z ##[debug] "checkRuns": { +2024-05-29T06:06:48.4417670Z ##[debug] "totalCount": 4, +2024-05-29T06:06:48.4417969Z ##[debug] "pageInfo": { +2024-05-29T06:06:48.4418361Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:48.4418767Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXNaM=" +2024-05-29T06:06:48.4419157Z ##[debug] }, +2024-05-29T06:06:48.4419393Z ##[debug] "nodes": [ +2024-05-29T06:06:48.4419658Z ##[debug] { +2024-05-29T06:06:48.4419933Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:48.4420294Z ##[debug] "name": "intermediate", +2024-05-29T06:06:48.4420775Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:48.4421397Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:48.4421993Z ##[debug] "conclusion": null +2024-05-29T06:06:48.4422395Z ##[debug] }, +2024-05-29T06:06:48.4422638Z ##[debug] { +2024-05-29T06:06:48.4422909Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:48.4423263Z ##[debug] "name": "wait-success", +2024-05-29T06:06:48.4423614Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:48.4424213Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:48.4424803Z ##[debug] "conclusion": null +2024-05-29T06:06:48.4425113Z ##[debug] }, +2024-05-29T06:06:48.4425352Z ##[debug] { +2024-05-29T06:06:48.4425615Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:48.4426004Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:48.4426399Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4427012Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:48.4427637Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4427962Z ##[debug] }, +2024-05-29T06:06:48.4428298Z ##[debug] { +2024-05-29T06:06:48.4428562Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:48.4428912Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:48.4429276Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:48.4429881Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:48.4430485Z ##[debug] "conclusion": null +2024-05-29T06:06:48.4430803Z ##[debug] } +2024-05-29T06:06:48.4431039Z ##[debug] ] +2024-05-29T06:06:48.4431278Z ##[debug] } +2024-05-29T06:06:48.4431504Z ##[debug] }, +2024-05-29T06:06:48.4431731Z ##[debug] "workflow": { +2024-05-29T06:06:48.4432067Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:48.4432636Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:48.4433134Z ##[debug] }, +2024-05-29T06:06:48.4433370Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4433673Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:48.4434007Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4434324Z ##[debug] "workflow": { +2024-05-29T06:06:48.4434664Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:48.4435224Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:48.4435719Z ##[debug] } +2024-05-29T06:06:48.4435943Z ##[debug] } +2024-05-29T06:06:48.4436163Z ##[debug] }, +2024-05-29T06:06:48.4436378Z ##[debug] { +2024-05-29T06:06:48.4436602Z ##[debug] "checkRun": { +2024-05-29T06:06:48.4436895Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:48.4437252Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:48.4437614Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4438301Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:48.4438900Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4439208Z ##[debug] }, +2024-05-29T06:06:48.4439441Z ##[debug] "checkSuite": { +2024-05-29T06:06:48.4439728Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:48.4440048Z ##[debug] "conclusion": null, +2024-05-29T06:06:48.4440359Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4440667Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:48.4441011Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4441484Z ##[debug] "workflow": { +2024-05-29T06:06:48.4441837Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:48.4442410Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:48.4443028Z ##[debug] } +2024-05-29T06:06:48.4443263Z ##[debug] }, +2024-05-29T06:06:48.4443497Z ##[debug] "checkRuns": { +2024-05-29T06:06:48.4443789Z ##[debug] "totalCount": 4, +2024-05-29T06:06:48.4444095Z ##[debug] "pageInfo": { +2024-05-29T06:06:48.4444395Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:48.4444800Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXNaM=" +2024-05-29T06:06:48.4445199Z ##[debug] }, +2024-05-29T06:06:48.4445435Z ##[debug] "nodes": [ +2024-05-29T06:06:48.4445699Z ##[debug] { +2024-05-29T06:06:48.4445979Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:48.4446340Z ##[debug] "name": "intermediate", +2024-05-29T06:06:48.4446707Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:48.4447321Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:48.4447917Z ##[debug] "conclusion": null +2024-05-29T06:06:48.4448330Z ##[debug] }, +2024-05-29T06:06:48.4448573Z ##[debug] { +2024-05-29T06:06:48.4448846Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:48.4449200Z ##[debug] "name": "wait-success", +2024-05-29T06:06:48.4449545Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:48.4450135Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:48.4450717Z ##[debug] "conclusion": null +2024-05-29T06:06:48.4451020Z ##[debug] }, +2024-05-29T06:06:48.4451256Z ##[debug] { +2024-05-29T06:06:48.4451521Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:48.4451899Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:48.4452271Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4452864Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:48.4453476Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4453870Z ##[debug] }, +2024-05-29T06:06:48.4454108Z ##[debug] { +2024-05-29T06:06:48.4454390Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:48.4454751Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:48.4455108Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:48.4455716Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:48.4456318Z ##[debug] "conclusion": null +2024-05-29T06:06:48.4456630Z ##[debug] } +2024-05-29T06:06:48.4456868Z ##[debug] ] +2024-05-29T06:06:48.4457101Z ##[debug] } +2024-05-29T06:06:48.4457325Z ##[debug] }, +2024-05-29T06:06:48.4457553Z ##[debug] "workflow": { +2024-05-29T06:06:48.4457887Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:48.4458550Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:48.4459042Z ##[debug] }, +2024-05-29T06:06:48.4459284Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4459589Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:48.4459923Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4460237Z ##[debug] "workflow": { +2024-05-29T06:06:48.4460577Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:48.4461136Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:48.4461629Z ##[debug] } +2024-05-29T06:06:48.4461856Z ##[debug] } +2024-05-29T06:06:48.4462195Z ##[debug] }, +2024-05-29T06:06:48.4462414Z ##[debug] { +2024-05-29T06:06:48.4462637Z ##[debug] "checkRun": { +2024-05-29T06:06:48.4462927Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:48.4463253Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:48.4463690Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:48.4464284Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:48.4464872Z ##[debug] "conclusion": null +2024-05-29T06:06:48.4465164Z ##[debug] }, +2024-05-29T06:06:48.4465396Z ##[debug] "checkSuite": { +2024-05-29T06:06:48.4465683Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:48.4466000Z ##[debug] "conclusion": null, +2024-05-29T06:06:48.4466315Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4466622Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:48.4466968Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4467299Z ##[debug] "workflow": { +2024-05-29T06:06:48.4467650Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:48.4468318Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:48.4468827Z ##[debug] } +2024-05-29T06:06:48.4469057Z ##[debug] }, +2024-05-29T06:06:48.4469291Z ##[debug] "checkRuns": { +2024-05-29T06:06:48.4469581Z ##[debug] "totalCount": 4, +2024-05-29T06:06:48.4469883Z ##[debug] "pageInfo": { +2024-05-29T06:06:48.4470183Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:48.4470592Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXNaM=" +2024-05-29T06:06:48.4470985Z ##[debug] }, +2024-05-29T06:06:48.4471225Z ##[debug] "nodes": [ +2024-05-29T06:06:48.4471489Z ##[debug] { +2024-05-29T06:06:48.4471767Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:48.4472134Z ##[debug] "name": "intermediate", +2024-05-29T06:06:48.4472492Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:48.4473103Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:48.4473703Z ##[debug] "conclusion": null +2024-05-29T06:06:48.4474012Z ##[debug] }, +2024-05-29T06:06:48.4474253Z ##[debug] { +2024-05-29T06:06:48.4474523Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:48.4474881Z ##[debug] "name": "wait-success", +2024-05-29T06:06:48.4475233Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:48.4475829Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:48.4476411Z ##[debug] "conclusion": null +2024-05-29T06:06:48.4476719Z ##[debug] }, +2024-05-29T06:06:48.4476957Z ##[debug] { +2024-05-29T06:06:48.4477224Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:48.4477607Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:48.4477992Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4478711Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:48.4479326Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4479650Z ##[debug] }, +2024-05-29T06:06:48.4479880Z ##[debug] { +2024-05-29T06:06:48.4480147Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:48.4480497Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:48.4480845Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:48.4481436Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:48.4482033Z ##[debug] "conclusion": null +2024-05-29T06:06:48.4482456Z ##[debug] } +2024-05-29T06:06:48.4482690Z ##[debug] ] +2024-05-29T06:06:48.4482920Z ##[debug] } +2024-05-29T06:06:48.4483143Z ##[debug] }, +2024-05-29T06:06:48.4483368Z ##[debug] "workflow": { +2024-05-29T06:06:48.4483696Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:48.4484360Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:48.4484851Z ##[debug] }, +2024-05-29T06:06:48.4485085Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4485395Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:48.4485726Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4486042Z ##[debug] "workflow": { +2024-05-29T06:06:48.4486381Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:48.4486936Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:48.4487425Z ##[debug] } +2024-05-29T06:06:48.4487658Z ##[debug] } +2024-05-29T06:06:48.4487878Z ##[debug] }, +2024-05-29T06:06:48.4488183Z ##[debug] { +2024-05-29T06:06:48.4488411Z ##[debug] "checkRun": { +2024-05-29T06:06:48.4488700Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:48.4489056Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:48.4489399Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4489989Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:48.4490581Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:48.4490884Z ##[debug] }, +2024-05-29T06:06:48.4491118Z ##[debug] "checkSuite": { +2024-05-29T06:06:48.4491402Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4491734Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:48.4492055Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4492364Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:48.4492713Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4493037Z ##[debug] "workflow": { +2024-05-29T06:06:48.4493349Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:48.4493868Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:48.4494435Z ##[debug] } +2024-05-29T06:06:48.4494814Z ##[debug] }, +2024-05-29T06:06:48.4495116Z ##[debug] "checkRuns": { +2024-05-29T06:06:48.4495411Z ##[debug] "totalCount": 4, +2024-05-29T06:06:48.4495716Z ##[debug] "pageInfo": { +2024-05-29T06:06:48.4496018Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:48.4496428Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:48.4496819Z ##[debug] }, +2024-05-29T06:06:48.4497058Z ##[debug] "nodes": [ +2024-05-29T06:06:48.4497326Z ##[debug] { +2024-05-29T06:06:48.4497607Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:48.4497988Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:48.4498477Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4499094Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:48.4499709Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:48.4500037Z ##[debug] }, +2024-05-29T06:06:48.4500280Z ##[debug] { +2024-05-29T06:06:48.4500548Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:48.4500897Z ##[debug] "name": "renovate", +2024-05-29T06:06:48.4501280Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4501874Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:48.4502471Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:48.4502792Z ##[debug] }, +2024-05-29T06:06:48.4503030Z ##[debug] { +2024-05-29T06:06:48.4503464Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:48.4503842Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:48.4504202Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4504791Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:48.4505579Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:48.4505898Z ##[debug] }, +2024-05-29T06:06:48.4506132Z ##[debug] { +2024-05-29T06:06:48.4506402Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:48.4506759Z ##[debug] "name": "dependabot", +2024-05-29T06:06:48.4507109Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4507688Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:48.4508386Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:48.4508711Z ##[debug] } +2024-05-29T06:06:48.4508941Z ##[debug] ] +2024-05-29T06:06:48.4509173Z ##[debug] } +2024-05-29T06:06:48.4509400Z ##[debug] }, +2024-05-29T06:06:48.4509629Z ##[debug] "workflow": { +2024-05-29T06:06:48.4509913Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:48.4510413Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:48.4511331Z ##[debug] }, +2024-05-29T06:06:48.4511581Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4512421Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:48.4512976Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4513298Z ##[debug] "workflow": { +2024-05-29T06:06:48.4513584Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:48.4514341Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:48.4515108Z ##[debug] } +2024-05-29T06:06:48.4515729Z ##[debug] } +2024-05-29T06:06:48.4516141Z ##[debug] }, +2024-05-29T06:06:48.4517078Z ##[debug] { +2024-05-29T06:06:48.4517387Z ##[debug] "checkRun": { +2024-05-29T06:06:48.4517675Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:48.4519564Z ##[debug] "name": "renovate", +2024-05-29T06:06:48.4519989Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4520943Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:48.4522385Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:48.4523297Z ##[debug] }, +2024-05-29T06:06:48.4523660Z ##[debug] "checkSuite": { +2024-05-29T06:06:48.4524585Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4525141Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:48.4525468Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4525779Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:48.4526127Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4526987Z ##[debug] "workflow": { +2024-05-29T06:06:48.4527363Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:48.4530306Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:48.4531501Z ##[debug] } +2024-05-29T06:06:48.4531735Z ##[debug] }, +2024-05-29T06:06:48.4531978Z ##[debug] "checkRuns": { +2024-05-29T06:06:48.4532270Z ##[debug] "totalCount": 4, +2024-05-29T06:06:48.4532572Z ##[debug] "pageInfo": { +2024-05-29T06:06:48.4533359Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:48.4534555Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:48.4535046Z ##[debug] }, +2024-05-29T06:06:48.4535290Z ##[debug] "nodes": [ +2024-05-29T06:06:48.4535556Z ##[debug] { +2024-05-29T06:06:48.4536383Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:48.4537180Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:48.4537559Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4540370Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:48.4541474Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:48.4542058Z ##[debug] }, +2024-05-29T06:06:48.4542301Z ##[debug] { +2024-05-29T06:06:48.4542903Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:48.4543437Z ##[debug] "name": "renovate", +2024-05-29T06:06:48.4543781Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4544375Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:48.4544977Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:48.4545303Z ##[debug] }, +2024-05-29T06:06:48.4545544Z ##[debug] { +2024-05-29T06:06:48.4545814Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:48.4546173Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:48.4546532Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4547113Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:48.4547730Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:48.4548148Z ##[debug] }, +2024-05-29T06:06:48.4548385Z ##[debug] { +2024-05-29T06:06:48.4548659Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:48.4549011Z ##[debug] "name": "dependabot", +2024-05-29T06:06:48.4549354Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4549944Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:48.4550542Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:48.4550856Z ##[debug] } +2024-05-29T06:06:48.4551095Z ##[debug] ] +2024-05-29T06:06:48.4551331Z ##[debug] } +2024-05-29T06:06:48.4551554Z ##[debug] }, +2024-05-29T06:06:48.4551782Z ##[debug] "workflow": { +2024-05-29T06:06:48.4552066Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:48.4552566Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:48.4553056Z ##[debug] }, +2024-05-29T06:06:48.4553292Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4553597Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:48.4553930Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4554251Z ##[debug] "workflow": { +2024-05-29T06:06:48.4554533Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:48.4555021Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:48.4555518Z ##[debug] } +2024-05-29T06:06:48.4555747Z ##[debug] } +2024-05-29T06:06:48.4555974Z ##[debug] }, +2024-05-29T06:06:48.4556192Z ##[debug] { +2024-05-29T06:06:48.4556417Z ##[debug] "checkRun": { +2024-05-29T06:06:48.4556702Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:48.4557044Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:48.4557377Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4557965Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:48.4558654Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:48.4558961Z ##[debug] }, +2024-05-29T06:06:48.4559194Z ##[debug] "checkSuite": { +2024-05-29T06:06:48.4559482Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4559808Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:48.4560128Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4560438Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:48.4560783Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4561232Z ##[debug] "workflow": { +2024-05-29T06:06:48.4561526Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:48.4562031Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:48.4562527Z ##[debug] } +2024-05-29T06:06:48.4562865Z ##[debug] }, +2024-05-29T06:06:48.4563105Z ##[debug] "checkRuns": { +2024-05-29T06:06:48.4563402Z ##[debug] "totalCount": 4, +2024-05-29T06:06:48.4563698Z ##[debug] "pageInfo": { +2024-05-29T06:06:48.4564003Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:48.4564407Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:48.4564786Z ##[debug] }, +2024-05-29T06:06:48.4565038Z ##[debug] "nodes": [ +2024-05-29T06:06:48.4565304Z ##[debug] { +2024-05-29T06:06:48.4565577Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:48.4565954Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:48.4566338Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4566942Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:48.4567548Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:48.4567879Z ##[debug] }, +2024-05-29T06:06:48.4568218Z ##[debug] { +2024-05-29T06:06:48.4568486Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:48.4568596Z ##[debug] "name": "renovate", +2024-05-29T06:06:48.4568712Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4569067Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:48.4569192Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:48.4569276Z ##[debug] }, +2024-05-29T06:06:48.4569359Z ##[debug] { +2024-05-29T06:06:48.4569487Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:48.4569612Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:48.4569732Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4570101Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:48.4570225Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:48.4570315Z ##[debug] }, +2024-05-29T06:06:48.4570398Z ##[debug] { +2024-05-29T06:06:48.4570515Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:48.4570632Z ##[debug] "name": "dependabot", +2024-05-29T06:06:48.4570745Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4571101Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:48.4571215Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:48.4571297Z ##[debug] } +2024-05-29T06:06:48.4571389Z ##[debug] ] +2024-05-29T06:06:48.4571475Z ##[debug] } +2024-05-29T06:06:48.4571556Z ##[debug] }, +2024-05-29T06:06:48.4571653Z ##[debug] "workflow": { +2024-05-29T06:06:48.4571754Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:48.4572041Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:48.4572129Z ##[debug] }, +2024-05-29T06:06:48.4572224Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4572338Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:48.4572445Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4572538Z ##[debug] "workflow": { +2024-05-29T06:06:48.4572641Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:48.4572925Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:48.4573007Z ##[debug] } +2024-05-29T06:06:48.4573094Z ##[debug] } +2024-05-29T06:06:48.4573176Z ##[debug] }, +2024-05-29T06:06:48.4573384Z ##[debug] { +2024-05-29T06:06:48.4573484Z ##[debug] "checkRun": { +2024-05-29T06:06:48.4573593Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:48.4573696Z ##[debug] "name": "dependabot", +2024-05-29T06:06:48.4573804Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4574273Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:48.4574386Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:48.4574467Z ##[debug] }, +2024-05-29T06:06:48.4574559Z ##[debug] "checkSuite": { +2024-05-29T06:06:48.4574664Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4574771Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:48.4574869Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4574989Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:48.4575099Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4575201Z ##[debug] "workflow": { +2024-05-29T06:06:48.4575311Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:48.4575598Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:48.4575688Z ##[debug] } +2024-05-29T06:06:48.4575776Z ##[debug] }, +2024-05-29T06:06:48.4575871Z ##[debug] "checkRuns": { +2024-05-29T06:06:48.4575973Z ##[debug] "totalCount": 4, +2024-05-29T06:06:48.4576066Z ##[debug] "pageInfo": { +2024-05-29T06:06:48.4576177Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:48.4576362Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:48.4576445Z ##[debug] }, +2024-05-29T06:06:48.4576535Z ##[debug] "nodes": [ +2024-05-29T06:06:48.4576624Z ##[debug] { +2024-05-29T06:06:48.4576745Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:48.4576872Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:48.4576999Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4577356Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:48.4577478Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:48.4577573Z ##[debug] }, +2024-05-29T06:06:48.4577655Z ##[debug] { +2024-05-29T06:06:48.4577781Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:48.4577888Z ##[debug] "name": "renovate", +2024-05-29T06:06:48.4578006Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4578476Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:48.4578620Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:48.4578707Z ##[debug] }, +2024-05-29T06:06:48.4578791Z ##[debug] { +2024-05-29T06:06:48.4578914Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:48.4579046Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:48.4579160Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4579513Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:48.4579637Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:48.4579721Z ##[debug] }, +2024-05-29T06:06:48.4579808Z ##[debug] { +2024-05-29T06:06:48.4579928Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:48.4580040Z ##[debug] "name": "dependabot", +2024-05-29T06:06:48.4580159Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4580511Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:48.4580624Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:48.4580714Z ##[debug] } +2024-05-29T06:06:48.4580797Z ##[debug] ] +2024-05-29T06:06:48.4580997Z ##[debug] } +2024-05-29T06:06:48.4581088Z ##[debug] }, +2024-05-29T06:06:48.4581179Z ##[debug] "workflow": { +2024-05-29T06:06:48.4581278Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:48.4581573Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:48.4581781Z ##[debug] }, +2024-05-29T06:06:48.4581881Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4581986Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:48.4582093Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4582190Z ##[debug] "workflow": { +2024-05-29T06:06:48.4582288Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:48.4582572Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:48.4582660Z ##[debug] } +2024-05-29T06:06:48.4582742Z ##[debug] } +2024-05-29T06:06:48.4582822Z ##[debug] }, +2024-05-29T06:06:48.4582910Z ##[debug] { +2024-05-29T06:06:48.4583011Z ##[debug] "checkRun": { +2024-05-29T06:06:48.4583125Z ##[debug] "databaseId": 25536411287, +2024-05-29T06:06:48.4583219Z ##[debug] "name": "echo", +2024-05-29T06:06:48.4583321Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4583700Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", +2024-05-29T06:06:48.4583806Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4583888Z ##[debug] }, +2024-05-29T06:06:48.4583987Z ##[debug] "checkSuite": { +2024-05-29T06:06:48.4584087Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4584194Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:48.4584297Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4584412Z ##[debug] "databaseId": 9281068684, +2024-05-29T06:06:48.4584530Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4584623Z ##[debug] "workflow": { +2024-05-29T06:06:48.4584752Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:48.4585056Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:48.4585140Z ##[debug] } +2024-05-29T06:06:48.4585223Z ##[debug] }, +2024-05-29T06:06:48.4585326Z ##[debug] "checkRuns": { +2024-05-29T06:06:48.4585423Z ##[debug] "totalCount": 1, +2024-05-29T06:06:48.4585517Z ##[debug] "pageInfo": { +2024-05-29T06:06:48.4585634Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:48.4585809Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpc=" +2024-05-29T06:06:48.4585899Z ##[debug] }, +2024-05-29T06:06:48.4585989Z ##[debug] "nodes": [ +2024-05-29T06:06:48.4586071Z ##[debug] { +2024-05-29T06:06:48.4586198Z ##[debug] "databaseId": 25536411287, +2024-05-29T06:06:48.4586295Z ##[debug] "name": "echo", +2024-05-29T06:06:48.4586412Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4586783Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", +2024-05-29T06:06:48.4586901Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4586987Z ##[debug] } +2024-05-29T06:06:48.4587081Z ##[debug] ] +2024-05-29T06:06:48.4587163Z ##[debug] } +2024-05-29T06:06:48.4587244Z ##[debug] }, +2024-05-29T06:06:48.4587346Z ##[debug] "workflow": { +2024-05-29T06:06:48.4587458Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:48.4587748Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:48.4587830Z ##[debug] }, +2024-05-29T06:06:48.4587924Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4588034Z ##[debug] "databaseId": 9281068684, +2024-05-29T06:06:48.4588242Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4588336Z ##[debug] "workflow": { +2024-05-29T06:06:48.4588579Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:48.4588870Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:48.4588955Z ##[debug] } +2024-05-29T06:06:48.4589045Z ##[debug] } +2024-05-29T06:06:48.4589230Z ##[debug] }, +2024-05-29T06:06:48.4589318Z ##[debug] { +2024-05-29T06:06:48.4589410Z ##[debug] "checkRun": { +2024-05-29T06:06:48.4589519Z ##[debug] "databaseId": 25536411604, +2024-05-29T06:06:48.4589615Z ##[debug] "name": "wait", +2024-05-29T06:06:48.4589715Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4590080Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", +2024-05-29T06:06:48.4590191Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4590273Z ##[debug] }, +2024-05-29T06:06:48.4590367Z ##[debug] "checkSuite": { +2024-05-29T06:06:48.4590474Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4590585Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:48.4590682Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4590797Z ##[debug] "databaseId": 9281068685, +2024-05-29T06:06:48.4590908Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4591011Z ##[debug] "workflow": { +2024-05-29T06:06:48.4591126Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:48.4591400Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:48.4591489Z ##[debug] } +2024-05-29T06:06:48.4591572Z ##[debug] }, +2024-05-29T06:06:48.4591666Z ##[debug] "checkRuns": { +2024-05-29T06:06:48.4591769Z ##[debug] "totalCount": 1, +2024-05-29T06:06:48.4591862Z ##[debug] "pageInfo": { +2024-05-29T06:06:48.4591972Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:48.4592154Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWt9Q=" +2024-05-29T06:06:48.4592238Z ##[debug] }, +2024-05-29T06:06:48.4592339Z ##[debug] "nodes": [ +2024-05-29T06:06:48.4592423Z ##[debug] { +2024-05-29T06:06:48.4592544Z ##[debug] "databaseId": 25536411604, +2024-05-29T06:06:48.4592647Z ##[debug] "name": "wait", +2024-05-29T06:06:48.4592767Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4593131Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", +2024-05-29T06:06:48.4593255Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4593337Z ##[debug] } +2024-05-29T06:06:48.4593420Z ##[debug] ] +2024-05-29T06:06:48.4593510Z ##[debug] } +2024-05-29T06:06:48.4593592Z ##[debug] }, +2024-05-29T06:06:48.4593690Z ##[debug] "workflow": { +2024-05-29T06:06:48.4593793Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:48.4594063Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:48.4594155Z ##[debug] }, +2024-05-29T06:06:48.4594249Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4594354Z ##[debug] "databaseId": 9281068685, +2024-05-29T06:06:48.4594465Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4594554Z ##[debug] "workflow": { +2024-05-29T06:06:48.4594666Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:48.4594943Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:48.4595026Z ##[debug] } +2024-05-29T06:06:48.4595115Z ##[debug] } +2024-05-29T06:06:48.4595204Z ##[debug] }, +2024-05-29T06:06:48.4595285Z ##[debug] { +2024-05-29T06:06:48.4595382Z ##[debug] "checkRun": { +2024-05-29T06:06:48.4595488Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:48.4595593Z ##[debug] "name": "default_logic", +2024-05-29T06:06:48.4595699Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4596147Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:48.4596255Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4596342Z ##[debug] }, +2024-05-29T06:06:48.4596435Z ##[debug] "checkSuite": { +2024-05-29T06:06:48.4596611Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4596719Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:48.4596815Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4596931Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:48.4597042Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4597137Z ##[debug] "workflow": { +2024-05-29T06:06:48.4597241Z ##[debug] "name": "Itself", +2024-05-29T06:06:48.4597497Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:48.4597580Z ##[debug] } +2024-05-29T06:06:48.4597666Z ##[debug] }, +2024-05-29T06:06:48.4597760Z ##[debug] "checkRuns": { +2024-05-29T06:06:48.4597860Z ##[debug] "totalCount": 7, +2024-05-29T06:06:48.4597958Z ##[debug] "pageInfo": { +2024-05-29T06:06:48.4598227Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:48.4598510Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:48.4598642Z ##[debug] }, +2024-05-29T06:06:48.4598772Z ##[debug] "nodes": [ +2024-05-29T06:06:48.4598902Z ##[debug] { +2024-05-29T06:06:48.4599096Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:48.4599272Z ##[debug] "name": "default_logic", +2024-05-29T06:06:48.4599397Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4599768Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:48.4599887Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4599977Z ##[debug] }, +2024-05-29T06:06:48.4600059Z ##[debug] { +2024-05-29T06:06:48.4600192Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:48.4600314Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:48.4600429Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4600789Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:48.4600911Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4600995Z ##[debug] }, +2024-05-29T06:06:48.4601084Z ##[debug] { +2024-05-29T06:06:48.4601201Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:48.4601371Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:48.4601490Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4601838Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:48.4601957Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4602043Z ##[debug] }, +2024-05-29T06:06:48.4602127Z ##[debug] { +2024-05-29T06:06:48.4602251Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:48.4602360Z ##[debug] "name": "skip-list", +2024-05-29T06:06:48.4602479Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4602847Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:48.4602964Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4603054Z ##[debug] }, +2024-05-29T06:06:48.4603136Z ##[debug] { +2024-05-29T06:06:48.4603253Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:48.4603457Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:48.4603570Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4604076Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:48.4604202Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4604287Z ##[debug] }, +2024-05-29T06:06:48.4604376Z ##[debug] { +2024-05-29T06:06:48.4604605Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:48.4604827Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:48.4604948Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4605306Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:48.4605419Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4605508Z ##[debug] }, +2024-05-29T06:06:48.4605592Z ##[debug] { +2024-05-29T06:06:48.4605713Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:48.4605823Z ##[debug] "name": "wait-list", +2024-05-29T06:06:48.4605942Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4606309Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:48.4606423Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4606515Z ##[debug] } +2024-05-29T06:06:48.4606605Z ##[debug] ] +2024-05-29T06:06:48.4606687Z ##[debug] } +2024-05-29T06:06:48.4606767Z ##[debug] }, +2024-05-29T06:06:48.4606864Z ##[debug] "workflow": { +2024-05-29T06:06:48.4606961Z ##[debug] "name": "Itself", +2024-05-29T06:06:48.4607219Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:48.4607302Z ##[debug] }, +2024-05-29T06:06:48.4607398Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4607512Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:48.4607619Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4607712Z ##[debug] "workflow": { +2024-05-29T06:06:48.4607821Z ##[debug] "name": "Itself", +2024-05-29T06:06:48.4608201Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:48.4608287Z ##[debug] } +2024-05-29T06:06:48.4608373Z ##[debug] } +2024-05-29T06:06:48.4608461Z ##[debug] }, +2024-05-29T06:06:48.4608541Z ##[debug] { +2024-05-29T06:06:48.4608638Z ##[debug] "checkRun": { +2024-05-29T06:06:48.4608746Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:48.4608863Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:48.4608965Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4609335Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:48.4609450Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4609530Z ##[debug] }, +2024-05-29T06:06:48.4609625Z ##[debug] "checkSuite": { +2024-05-29T06:06:48.4609735Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4609843Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:48.4609941Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4610062Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:48.4610172Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4610275Z ##[debug] "workflow": { +2024-05-29T06:06:48.4610373Z ##[debug] "name": "Itself", +2024-05-29T06:06:48.4610629Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:48.4610720Z ##[debug] } +2024-05-29T06:06:48.4610802Z ##[debug] }, +2024-05-29T06:06:48.4610896Z ##[debug] "checkRuns": { +2024-05-29T06:06:48.4610998Z ##[debug] "totalCount": 7, +2024-05-29T06:06:48.4611095Z ##[debug] "pageInfo": { +2024-05-29T06:06:48.4611205Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:48.4611417Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:48.4611629Z ##[debug] }, +2024-05-29T06:06:48.4611721Z ##[debug] "nodes": [ +2024-05-29T06:06:48.4611811Z ##[debug] { +2024-05-29T06:06:48.4611933Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:48.4612063Z ##[debug] "name": "default_logic", +2024-05-29T06:06:48.4612304Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4612716Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:48.4612840Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4612923Z ##[debug] }, +2024-05-29T06:06:48.4613008Z ##[debug] { +2024-05-29T06:06:48.4613137Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:48.4613261Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:48.4613382Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4613791Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:48.4613908Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4613997Z ##[debug] }, +2024-05-29T06:06:48.4614083Z ##[debug] { +2024-05-29T06:06:48.4614199Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:48.4614384Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:48.4614500Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4614861Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:48.4614982Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4615067Z ##[debug] }, +2024-05-29T06:06:48.4615156Z ##[debug] { +2024-05-29T06:06:48.4615275Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:48.4615381Z ##[debug] "name": "skip-list", +2024-05-29T06:06:48.4615512Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4615872Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:48.4616097Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4616471Z ##[debug] }, +2024-05-29T06:06:48.4616590Z ##[debug] { +2024-05-29T06:06:48.4616780Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:48.4617009Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:48.4617210Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4617595Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:48.4617804Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4617961Z ##[debug] }, +2024-05-29T06:06:48.4618289Z ##[debug] { +2024-05-29T06:06:48.4618534Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:48.4618852Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:48.4619003Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4619509Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:48.4619667Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4619784Z ##[debug] }, +2024-05-29T06:06:48.4630180Z ##[debug] { +2024-05-29T06:06:48.4630351Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:48.4630476Z ##[debug] "name": "wait-list", +2024-05-29T06:06:48.4630604Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4631006Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:48.4631131Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4631393Z ##[debug] } +2024-05-29T06:06:48.4631487Z ##[debug] ] +2024-05-29T06:06:48.4631573Z ##[debug] } +2024-05-29T06:06:48.4631654Z ##[debug] }, +2024-05-29T06:06:48.4631752Z ##[debug] "workflow": { +2024-05-29T06:06:48.4631850Z ##[debug] "name": "Itself", +2024-05-29T06:06:48.4632229Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:48.4632318Z ##[debug] }, +2024-05-29T06:06:48.4632418Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4632527Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:48.4632649Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4632744Z ##[debug] "workflow": { +2024-05-29T06:06:48.4632848Z ##[debug] "name": "Itself", +2024-05-29T06:06:48.4633110Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:48.4633193Z ##[debug] } +2024-05-29T06:06:48.4633284Z ##[debug] } +2024-05-29T06:06:48.4633371Z ##[debug] }, +2024-05-29T06:06:48.4633452Z ##[debug] { +2024-05-29T06:06:48.4633551Z ##[debug] "checkRun": { +2024-05-29T06:06:48.4633662Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:48.4633830Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:48.4633948Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4634327Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:48.4634443Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4634525Z ##[debug] }, +2024-05-29T06:06:48.4634619Z ##[debug] "checkSuite": { +2024-05-29T06:06:48.4634726Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4634834Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:48.4634932Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4635064Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:48.4635175Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4635274Z ##[debug] "workflow": { +2024-05-29T06:06:48.4635380Z ##[debug] "name": "Itself", +2024-05-29T06:06:48.4635641Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:48.4635730Z ##[debug] } +2024-05-29T06:06:48.4635816Z ##[debug] }, +2024-05-29T06:06:48.4635912Z ##[debug] "checkRuns": { +2024-05-29T06:06:48.4636014Z ##[debug] "totalCount": 7, +2024-05-29T06:06:48.4636108Z ##[debug] "pageInfo": { +2024-05-29T06:06:48.4636220Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:48.4636407Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:48.4636490Z ##[debug] }, +2024-05-29T06:06:48.4636580Z ##[debug] "nodes": [ +2024-05-29T06:06:48.4636670Z ##[debug] { +2024-05-29T06:06:48.4636794Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:48.4636919Z ##[debug] "name": "default_logic", +2024-05-29T06:06:48.4637048Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4637421Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:48.4637547Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4637636Z ##[debug] }, +2024-05-29T06:06:48.4637719Z ##[debug] { +2024-05-29T06:06:48.4637847Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:48.4637969Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:48.4638241Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4638610Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:48.4638730Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4638824Z ##[debug] }, +2024-05-29T06:06:48.4638908Z ##[debug] { +2024-05-29T06:06:48.4639146Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:48.4639328Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:48.4639440Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4639790Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:48.4640021Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4640108Z ##[debug] }, +2024-05-29T06:06:48.4640193Z ##[debug] { +2024-05-29T06:06:48.4640315Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:48.4640425Z ##[debug] "name": "skip-list", +2024-05-29T06:06:48.4640545Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4640908Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:48.4641026Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4641121Z ##[debug] }, +2024-05-29T06:06:48.4641204Z ##[debug] { +2024-05-29T06:06:48.4641321Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:48.4641525Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:48.4641646Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4641996Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:48.4642115Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4642202Z ##[debug] }, +2024-05-29T06:06:48.4642291Z ##[debug] { +2024-05-29T06:06:48.4642409Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:48.4642631Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:48.4642753Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4643112Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:48.4643242Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4643328Z ##[debug] }, +2024-05-29T06:06:48.4643410Z ##[debug] { +2024-05-29T06:06:48.4643536Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:48.4643651Z ##[debug] "name": "wait-list", +2024-05-29T06:06:48.4643769Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4644151Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:48.4644269Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4644361Z ##[debug] } +2024-05-29T06:06:48.4644447Z ##[debug] ] +2024-05-29T06:06:48.4644530Z ##[debug] } +2024-05-29T06:06:48.4644619Z ##[debug] }, +2024-05-29T06:06:48.4644712Z ##[debug] "workflow": { +2024-05-29T06:06:48.4644809Z ##[debug] "name": "Itself", +2024-05-29T06:06:48.4645079Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:48.4645162Z ##[debug] }, +2024-05-29T06:06:48.4645260Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4645377Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:48.4645493Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4645584Z ##[debug] "workflow": { +2024-05-29T06:06:48.4645695Z ##[debug] "name": "Itself", +2024-05-29T06:06:48.4645952Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:48.4646041Z ##[debug] } +2024-05-29T06:06:48.4646123Z ##[debug] } +2024-05-29T06:06:48.4646205Z ##[debug] }, +2024-05-29T06:06:48.4646293Z ##[debug] { +2024-05-29T06:06:48.4646384Z ##[debug] "checkRun": { +2024-05-29T06:06:48.4646494Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:48.4646603Z ##[debug] "name": "skip-list", +2024-05-29T06:06:48.4646856Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4647231Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:48.4647348Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4647508Z ##[debug] }, +2024-05-29T06:06:48.4647604Z ##[debug] "checkSuite": { +2024-05-29T06:06:48.4647714Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4647825Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:48.4647928Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4648044Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:48.4648260Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4648364Z ##[debug] "workflow": { +2024-05-29T06:06:48.4648462Z ##[debug] "name": "Itself", +2024-05-29T06:06:48.4648727Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:48.4648817Z ##[debug] } +2024-05-29T06:06:48.4648905Z ##[debug] }, +2024-05-29T06:06:48.4649000Z ##[debug] "checkRuns": { +2024-05-29T06:06:48.4649106Z ##[debug] "totalCount": 7, +2024-05-29T06:06:48.4649200Z ##[debug] "pageInfo": { +2024-05-29T06:06:48.4649319Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:48.4649503Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:48.4649586Z ##[debug] }, +2024-05-29T06:06:48.4649681Z ##[debug] "nodes": [ +2024-05-29T06:06:48.4649764Z ##[debug] { +2024-05-29T06:06:48.4649887Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:48.4650015Z ##[debug] "name": "default_logic", +2024-05-29T06:06:48.4650134Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4650492Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:48.4650619Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4650709Z ##[debug] }, +2024-05-29T06:06:48.4650799Z ##[debug] { +2024-05-29T06:06:48.4650922Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:48.4651047Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:48.4651179Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4651545Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:48.4651665Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4651759Z ##[debug] }, +2024-05-29T06:06:48.4651842Z ##[debug] { +2024-05-29T06:06:48.4651964Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:48.4652142Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:48.4652257Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4652629Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:48.4652746Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4652831Z ##[debug] }, +2024-05-29T06:06:48.4652922Z ##[debug] { +2024-05-29T06:06:48.4653040Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:48.4653153Z ##[debug] "name": "skip-list", +2024-05-29T06:06:48.4653274Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4653636Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:48.4653760Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4653845Z ##[debug] }, +2024-05-29T06:06:48.4653928Z ##[debug] { +2024-05-29T06:06:48.4654055Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:48.4654253Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:48.4654507Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4654875Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:48.4654991Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4655080Z ##[debug] }, +2024-05-29T06:06:48.4655270Z ##[debug] { +2024-05-29T06:06:48.4655395Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:48.4655622Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:48.4655736Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4656089Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:48.4656213Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4656299Z ##[debug] }, +2024-05-29T06:06:48.4656388Z ##[debug] { +2024-05-29T06:06:48.4656506Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:48.4656620Z ##[debug] "name": "wait-list", +2024-05-29T06:06:48.4656741Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4657091Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:48.4657219Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4657311Z ##[debug] } +2024-05-29T06:06:48.4657395Z ##[debug] ] +2024-05-29T06:06:48.4657478Z ##[debug] } +2024-05-29T06:06:48.4657569Z ##[debug] }, +2024-05-29T06:06:48.4657664Z ##[debug] "workflow": { +2024-05-29T06:06:48.4657769Z ##[debug] "name": "Itself", +2024-05-29T06:06:48.4658022Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:48.4658308Z ##[debug] }, +2024-05-29T06:06:48.4658474Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4658588Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:48.4658708Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4658802Z ##[debug] "workflow": { +2024-05-29T06:06:48.4658898Z ##[debug] "name": "Itself", +2024-05-29T06:06:48.4659162Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:48.4659249Z ##[debug] } +2024-05-29T06:06:48.4659336Z ##[debug] } +2024-05-29T06:06:48.4659418Z ##[debug] }, +2024-05-29T06:06:48.4659498Z ##[debug] { +2024-05-29T06:06:48.4659596Z ##[debug] "checkRun": { +2024-05-29T06:06:48.4659703Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:48.4659897Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:48.4660005Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4660371Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:48.4660477Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4660567Z ##[debug] }, +2024-05-29T06:06:48.4660660Z ##[debug] "checkSuite": { +2024-05-29T06:06:48.4660761Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4660871Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:48.4660966Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4661094Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:48.4661206Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4661299Z ##[debug] "workflow": { +2024-05-29T06:06:48.4661410Z ##[debug] "name": "Itself", +2024-05-29T06:06:48.4661670Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:48.4661756Z ##[debug] } +2024-05-29T06:06:48.4661843Z ##[debug] }, +2024-05-29T06:06:48.4661936Z ##[debug] "checkRuns": { +2024-05-29T06:06:48.4662035Z ##[debug] "totalCount": 7, +2024-05-29T06:06:48.4662135Z ##[debug] "pageInfo": { +2024-05-29T06:06:48.4662380Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:48.4662568Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:48.4662651Z ##[debug] }, +2024-05-29T06:06:48.4662740Z ##[debug] "nodes": [ +2024-05-29T06:06:48.4662827Z ##[debug] { +2024-05-29T06:06:48.4663051Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:48.4663170Z ##[debug] "name": "default_logic", +2024-05-29T06:06:48.4663291Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4663657Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:48.4663777Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4663866Z ##[debug] }, +2024-05-29T06:06:48.4663949Z ##[debug] { +2024-05-29T06:06:48.4664071Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:48.4664192Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:48.4664309Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4664666Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:48.4664782Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4664873Z ##[debug] }, +2024-05-29T06:06:48.4664962Z ##[debug] { +2024-05-29T06:06:48.4665077Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:48.4665257Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:48.4665370Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4665716Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:48.4665836Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4665919Z ##[debug] }, +2024-05-29T06:06:48.4666002Z ##[debug] { +2024-05-29T06:06:48.4666128Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:48.4666236Z ##[debug] "name": "skip-list", +2024-05-29T06:06:48.4666350Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4666720Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:48.4666841Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4666928Z ##[debug] }, +2024-05-29T06:06:48.4667011Z ##[debug] { +2024-05-29T06:06:48.4667127Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:48.4667330Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:48.4667443Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4667789Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:48.4667909Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4667995Z ##[debug] }, +2024-05-29T06:06:48.4668228Z ##[debug] { +2024-05-29T06:06:48.4668348Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:48.4668567Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:48.4668690Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4669044Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:48.4669158Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4669247Z ##[debug] }, +2024-05-29T06:06:48.4669330Z ##[debug] { +2024-05-29T06:06:48.4669451Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:48.4669558Z ##[debug] "name": "wait-list", +2024-05-29T06:06:48.4669672Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4670158Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:48.4670276Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4670359Z ##[debug] } +2024-05-29T06:06:48.4670446Z ##[debug] ] +2024-05-29T06:06:48.4670528Z ##[debug] } +2024-05-29T06:06:48.4670712Z ##[debug] }, +2024-05-29T06:06:48.4670808Z ##[debug] "workflow": { +2024-05-29T06:06:48.4670903Z ##[debug] "name": "Itself", +2024-05-29T06:06:48.4671163Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:48.4671245Z ##[debug] }, +2024-05-29T06:06:48.4671344Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4671456Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:48.4671563Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4671657Z ##[debug] "workflow": { +2024-05-29T06:06:48.4671761Z ##[debug] "name": "Itself", +2024-05-29T06:06:48.4672015Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:48.4672103Z ##[debug] } +2024-05-29T06:06:48.4672190Z ##[debug] } +2024-05-29T06:06:48.4672272Z ##[debug] }, +2024-05-29T06:06:48.4672351Z ##[debug] { +2024-05-29T06:06:48.4672447Z ##[debug] "checkRun": { +2024-05-29T06:06:48.4672561Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:48.4672781Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:48.4672883Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4673249Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:48.4673365Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4673446Z ##[debug] }, +2024-05-29T06:06:48.4673539Z ##[debug] "checkSuite": { +2024-05-29T06:06:48.4673646Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4673752Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:48.4673849Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4673971Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:48.4674082Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4674180Z ##[debug] "workflow": { +2024-05-29T06:06:48.4674278Z ##[debug] "name": "Itself", +2024-05-29T06:06:48.4674542Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:48.4674631Z ##[debug] } +2024-05-29T06:06:48.4674715Z ##[debug] }, +2024-05-29T06:06:48.4674809Z ##[debug] "checkRuns": { +2024-05-29T06:06:48.4674911Z ##[debug] "totalCount": 7, +2024-05-29T06:06:48.4675005Z ##[debug] "pageInfo": { +2024-05-29T06:06:48.4675116Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:48.4675298Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:48.4675381Z ##[debug] }, +2024-05-29T06:06:48.4675474Z ##[debug] "nodes": [ +2024-05-29T06:06:48.4675556Z ##[debug] { +2024-05-29T06:06:48.4675678Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:48.4675803Z ##[debug] "name": "default_logic", +2024-05-29T06:06:48.4675917Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4676277Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:48.4676407Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4676493Z ##[debug] }, +2024-05-29T06:06:48.4676575Z ##[debug] { +2024-05-29T06:06:48.4676700Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:48.4676819Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:48.4676937Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4677293Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:48.4677408Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4677583Z ##[debug] }, +2024-05-29T06:06:48.4677670Z ##[debug] { +2024-05-29T06:06:48.4677786Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:48.4677960Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:48.4678255Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4678641Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:48.4678756Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4678841Z ##[debug] }, +2024-05-29T06:06:48.4678931Z ##[debug] { +2024-05-29T06:06:48.4679048Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:48.4679155Z ##[debug] "name": "skip-list", +2024-05-29T06:06:48.4679273Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4679635Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:48.4679761Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4679846Z ##[debug] }, +2024-05-29T06:06:48.4679928Z ##[debug] { +2024-05-29T06:06:48.4680049Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:48.4680249Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:48.4680360Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4680713Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:48.4680825Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4680909Z ##[debug] }, +2024-05-29T06:06:48.4680996Z ##[debug] { +2024-05-29T06:06:48.4681111Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:48.4681334Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:48.4681451Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4681802Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:48.4681923Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4682010Z ##[debug] }, +2024-05-29T06:06:48.4682092Z ##[debug] { +2024-05-29T06:06:48.4682213Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:48.4682321Z ##[debug] "name": "wait-list", +2024-05-29T06:06:48.4682442Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4682786Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:48.4682900Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4682988Z ##[debug] } +2024-05-29T06:06:48.4683071Z ##[debug] ] +2024-05-29T06:06:48.4683152Z ##[debug] } +2024-05-29T06:06:48.4683242Z ##[debug] }, +2024-05-29T06:06:48.4683334Z ##[debug] "workflow": { +2024-05-29T06:06:48.4683430Z ##[debug] "name": "Itself", +2024-05-29T06:06:48.4683689Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:48.4683778Z ##[debug] }, +2024-05-29T06:06:48.4683879Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4683986Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:48.4684094Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4684190Z ##[debug] "workflow": { +2024-05-29T06:06:48.4684285Z ##[debug] "name": "Itself", +2024-05-29T06:06:48.4684541Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:48.4684630Z ##[debug] } +2024-05-29T06:06:48.4684713Z ##[debug] } +2024-05-29T06:06:48.4684794Z ##[debug] }, +2024-05-29T06:06:48.4684880Z ##[debug] { +2024-05-29T06:06:48.4684971Z ##[debug] "checkRun": { +2024-05-29T06:06:48.4685215Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:48.4685326Z ##[debug] "name": "wait-list", +2024-05-29T06:06:48.4685427Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4685794Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:48.4686002Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4686083Z ##[debug] }, +2024-05-29T06:06:48.4686181Z ##[debug] "checkSuite": { +2024-05-29T06:06:48.4686282Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4686387Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:48.4686490Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4686604Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:48.4686713Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4686813Z ##[debug] "workflow": { +2024-05-29T06:06:48.4686910Z ##[debug] "name": "Itself", +2024-05-29T06:06:48.4687178Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:48.4687263Z ##[debug] } +2024-05-29T06:06:48.4687344Z ##[debug] }, +2024-05-29T06:06:48.4687443Z ##[debug] "checkRuns": { +2024-05-29T06:06:48.4687545Z ##[debug] "totalCount": 7, +2024-05-29T06:06:48.4687638Z ##[debug] "pageInfo": { +2024-05-29T06:06:48.4687755Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:48.4687931Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:48.4688014Z ##[debug] }, +2024-05-29T06:06:48.4688208Z ##[debug] "nodes": [ +2024-05-29T06:06:48.4688293Z ##[debug] { +2024-05-29T06:06:48.4688413Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:48.4688540Z ##[debug] "name": "default_logic", +2024-05-29T06:06:48.4688655Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4689018Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:48.4689135Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4689220Z ##[debug] }, +2024-05-29T06:06:48.4689308Z ##[debug] { +2024-05-29T06:06:48.4689427Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:48.4689550Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:48.4689667Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4690031Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:48.4690151Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4690237Z ##[debug] }, +2024-05-29T06:06:48.4690321Z ##[debug] { +2024-05-29T06:06:48.4690442Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:48.4690609Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:48.4690724Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4691078Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:48.4691192Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4691286Z ##[debug] }, +2024-05-29T06:06:48.4691369Z ##[debug] { +2024-05-29T06:06:48.4691484Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:48.4691595Z ##[debug] "name": "skip-list", +2024-05-29T06:06:48.4691710Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4692060Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:48.4692180Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4692263Z ##[debug] }, +2024-05-29T06:06:48.4692346Z ##[debug] { +2024-05-29T06:06:48.4692467Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:48.4692782Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:48.4692903Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4693256Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:48.4693471Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4693559Z ##[debug] }, +2024-05-29T06:06:48.4693642Z ##[debug] { +2024-05-29T06:06:48.4693756Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:48.4693983Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:48.4694095Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4694448Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:48.4694562Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4694652Z ##[debug] }, +2024-05-29T06:06:48.4694741Z ##[debug] { +2024-05-29T06:06:48.4694857Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:48.4694963Z ##[debug] "name": "wait-list", +2024-05-29T06:06:48.4695081Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4695439Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:48.4695561Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4695643Z ##[debug] } +2024-05-29T06:06:48.4695725Z ##[debug] ] +2024-05-29T06:06:48.4695811Z ##[debug] } +2024-05-29T06:06:48.4695894Z ##[debug] }, +2024-05-29T06:06:48.4695984Z ##[debug] "workflow": { +2024-05-29T06:06:48.4696086Z ##[debug] "name": "Itself", +2024-05-29T06:06:48.4696343Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:48.4696428Z ##[debug] }, +2024-05-29T06:06:48.4696537Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4696644Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:48.4696752Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4696851Z ##[debug] "workflow": { +2024-05-29T06:06:48.4696951Z ##[debug] "name": "Itself", +2024-05-29T06:06:48.4697209Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:48.4697291Z ##[debug] } +2024-05-29T06:06:48.4697374Z ##[debug] } +2024-05-29T06:06:48.4697461Z ##[debug] }, +2024-05-29T06:06:48.4697545Z ##[debug] { +2024-05-29T06:06:48.4697636Z ##[debug] "checkRun": { +2024-05-29T06:06:48.4697750Z ##[debug] "databaseId": 25536411358, +2024-05-29T06:06:48.4697870Z ##[debug] "name": "dependency-review", +2024-05-29T06:06:48.4697972Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4698597Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", +2024-05-29T06:06:48.4698709Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4698796Z ##[debug] }, +2024-05-29T06:06:48.4698889Z ##[debug] "checkSuite": { +2024-05-29T06:06:48.4698989Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4699107Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:48.4699203Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4699316Z ##[debug] "databaseId": 9281068690, +2024-05-29T06:06:48.4699431Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4699524Z ##[debug] "workflow": { +2024-05-29T06:06:48.4699633Z ##[debug] "name": "💂➕", +2024-05-29T06:06:48.4699958Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:48.4700043Z ##[debug] } +2024-05-29T06:06:48.4700130Z ##[debug] }, +2024-05-29T06:06:48.4700224Z ##[debug] "checkRuns": { +2024-05-29T06:06:48.4700320Z ##[debug] "totalCount": 1, +2024-05-29T06:06:48.4700552Z ##[debug] "pageInfo": { +2024-05-29T06:06:48.4700669Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:48.4700847Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtt4=" +2024-05-29T06:06:48.4700938Z ##[debug] }, +2024-05-29T06:06:48.4701132Z ##[debug] "nodes": [ +2024-05-29T06:06:48.4701217Z ##[debug] { +2024-05-29T06:06:48.4701346Z ##[debug] "databaseId": 25536411358, +2024-05-29T06:06:48.4701480Z ##[debug] "name": "dependency-review", +2024-05-29T06:06:48.4701596Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:48.4701958Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", +2024-05-29T06:06:48.4702074Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:48.4702162Z ##[debug] } +2024-05-29T06:06:48.4702244Z ##[debug] ] +2024-05-29T06:06:48.4702325Z ##[debug] } +2024-05-29T06:06:48.4702417Z ##[debug] }, +2024-05-29T06:06:48.4702508Z ##[debug] "workflow": { +2024-05-29T06:06:48.4702603Z ##[debug] "name": "💂➕", +2024-05-29T06:06:48.4702918Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:48.4703008Z ##[debug] }, +2024-05-29T06:06:48.4703101Z ##[debug] "workflowRun": { +2024-05-29T06:06:48.4703213Z ##[debug] "databaseId": 9281068690, +2024-05-29T06:06:48.4703320Z ##[debug] "event": "pull_request", +2024-05-29T06:06:48.4703417Z ##[debug] "workflow": { +2024-05-29T06:06:48.4703513Z ##[debug] "name": "💂➕", +2024-05-29T06:06:48.4703824Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:48.4703912Z ##[debug] } +2024-05-29T06:06:48.4703994Z ##[debug] } +2024-05-29T06:06:48.4704076Z ##[debug] } +2024-05-29T06:06:48.4704163Z ##[debug] ], +2024-05-29T06:06:48.4704283Z ##[debug] "elapsedMsec": 12174.69366000034 +2024-05-29T06:06:48.4704362Z ##[debug]} +2024-05-29T06:06:48.4705791Z GH-820-graceperiod.yml(quickstarter-success): [suiteStatus: IN_PROGRESS][suiteConclusion: (null)][runStatus: COMPLETED][runConclusion: SUCCESS][eventName: pull_request][runURL: https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631] +2024-05-29T06:06:48.4706461Z ##[debug]{ +2024-05-29T06:06:48.4706559Z ##[debug] "label": "filtered", +2024-05-29T06:06:48.4706652Z ##[debug] "report": { +2024-05-29T06:06:48.4706761Z ##[debug] "progress": "in_progress", +2024-05-29T06:06:48.4706877Z ##[debug] "conclusion": "acceptable", +2024-05-29T06:06:48.4706971Z ##[debug] "summaries": [ +2024-05-29T06:06:48.4707053Z ##[debug] { +2024-05-29T06:06:48.4707157Z ##[debug] "acceptable": true, +2024-05-29T06:06:48.4707304Z ##[debug] "workflowPath": "GH-820-graceperiod.yml", +2024-05-29T06:06:48.4707415Z ##[debug] "isSameWorkflow": true, +2024-05-29T06:06:48.4707545Z ##[debug] "eventName": "pull_request", +2024-05-29T06:06:48.4707679Z ##[debug] "checkSuiteStatus": "IN_PROGRESS", +2024-05-29T06:06:48.4707808Z ##[debug] "checkSuiteConclusion": null, +2024-05-29T06:06:48.4707929Z ##[debug] "runDatabaseId": 25536443631, +2024-05-29T06:06:48.4708211Z ##[debug] "jobName": "quickstarter-success", +2024-05-29T06:06:48.4708597Z ##[debug] "checkRunUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:48.4708711Z ##[debug] "runStatus": "COMPLETED", +2024-05-29T06:06:48.4708826Z ##[debug] "runConclusion": "SUCCESS" +2024-05-29T06:06:48.4708915Z ##[debug] } +2024-05-29T06:06:48.4708996Z ##[debug] ] +2024-05-29T06:06:48.4709076Z ##[debug] } +2024-05-29T06:06:48.4709159Z ##[debug]} +2024-05-29T06:06:48.4709264Z some jobs still in progress +2024-05-29T06:06:48.4709537Z ::endgroup:: +2024-05-29T06:06:48.4709636Z ##[endgroup] +2024-05-29T06:06:48.4709841Z Wait about 5 seconds before next polling to reduce API calls. +2024-05-29T06:06:53.4142531Z ::group::Polling 4: 2024-05-29T06:06:53.413Z +2024-05-29T06:06:53.4143142Z ##[group]Polling 4: 2024-05-29T06:06:53.413Z +2024-05-29T06:06:53.8233343Z ##[debug]{ +2024-05-29T06:06:53.8233748Z ##[debug] "label": "rawdata", +2024-05-29T06:06:53.8234704Z ##[debug] "checks": [ +2024-05-29T06:06:53.8235146Z ##[debug] { +2024-05-29T06:06:53.8235549Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8236057Z ##[debug] "databaseId": 25536410411, +2024-05-29T06:06:53.8236620Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:53.8237168Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8238384Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", +2024-05-29T06:06:53.8239466Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8239985Z ##[debug] }, +2024-05-29T06:06:53.8240396Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8240885Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8241482Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:53.8242058Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8242604Z ##[debug] "databaseId": 9281068413, +2024-05-29T06:06:53.8243175Z ##[debug] "event": "push", +2024-05-29T06:06:53.8243720Z ##[debug] "workflow": { +2024-05-29T06:06:53.8244242Z ##[debug] "name": "💧", +2024-05-29T06:06:53.8245051Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:53.8245905Z ##[debug] } +2024-05-29T06:06:53.8246326Z ##[debug] }, +2024-05-29T06:06:53.8246726Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8247231Z ##[debug] "totalCount": 1, +2024-05-29T06:06:53.8247737Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8248542Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8249216Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWsys=" +2024-05-29T06:06:53.8249844Z ##[debug] }, +2024-05-29T06:06:53.8250296Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8250778Z ##[debug] { +2024-05-29T06:06:53.8251278Z ##[debug] "databaseId": 25536410411, +2024-05-29T06:06:53.8251898Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:53.8252536Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8253682Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", +2024-05-29T06:06:53.8254824Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8255388Z ##[debug] } +2024-05-29T06:06:53.8255817Z ##[debug] ] +2024-05-29T06:06:53.8256234Z ##[debug] } +2024-05-29T06:06:53.8256615Z ##[debug] }, +2024-05-29T06:06:53.8257068Z ##[debug] "workflow": { +2024-05-29T06:06:53.8257561Z ##[debug] "name": "💧", +2024-05-29T06:06:53.8258602Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:53.8259461Z ##[debug] }, +2024-05-29T06:06:53.8259890Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8260428Z ##[debug] "databaseId": 9281068413, +2024-05-29T06:06:53.8260993Z ##[debug] "event": "push", +2024-05-29T06:06:53.8261506Z ##[debug] "workflow": { +2024-05-29T06:06:53.8262023Z ##[debug] "name": "💧", +2024-05-29T06:06:53.8262823Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:53.8263315Z ##[debug] } +2024-05-29T06:06:53.8263553Z ##[debug] } +2024-05-29T06:06:53.8263775Z ##[debug] }, +2024-05-29T06:06:53.8263999Z ##[debug] { +2024-05-29T06:06:53.8264228Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8264523Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:53.8264854Z ##[debug] "name": "build", +2024-05-29T06:06:53.8265158Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8266026Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:53.8266660Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8266970Z ##[debug] }, +2024-05-29T06:06:53.8267202Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8267498Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8267987Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:53.8268568Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8268889Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:53.8269241Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8269564Z ##[debug] "workflow": { +2024-05-29T06:06:53.8269876Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:53.8270356Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:53.8270818Z ##[debug] } +2024-05-29T06:06:53.8271058Z ##[debug] }, +2024-05-29T06:06:53.8271300Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8271585Z ##[debug] "totalCount": 3, +2024-05-29T06:06:53.8271898Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8272205Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8272612Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:53.8272997Z ##[debug] }, +2024-05-29T06:06:53.8273251Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8273516Z ##[debug] { +2024-05-29T06:06:53.8273792Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:53.8274138Z ##[debug] "name": "build", +2024-05-29T06:06:53.8274472Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8275078Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:53.8275696Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8276020Z ##[debug] }, +2024-05-29T06:06:53.8276255Z ##[debug] { +2024-05-29T06:06:53.8276532Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:53.8276882Z ##[debug] "name": "test", +2024-05-29T06:06:53.8277204Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8277806Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:53.8278625Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8278954Z ##[debug] }, +2024-05-29T06:06:53.8279191Z ##[debug] { +2024-05-29T06:06:53.8279466Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:53.8279820Z ##[debug] "name": "typecheck", +2024-05-29T06:06:53.8280167Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8280766Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:53.8281373Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8281687Z ##[debug] } +2024-05-29T06:06:53.8281921Z ##[debug] ] +2024-05-29T06:06:53.8282159Z ##[debug] } +2024-05-29T06:06:53.8282377Z ##[debug] }, +2024-05-29T06:06:53.8282607Z ##[debug] "workflow": { +2024-05-29T06:06:53.8282891Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:53.8283345Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:53.8283808Z ##[debug] }, +2024-05-29T06:06:53.8284043Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8284341Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:53.8284676Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8284995Z ##[debug] "workflow": { +2024-05-29T06:06:53.8285288Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:53.8285743Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:53.8286195Z ##[debug] } +2024-05-29T06:06:53.8286427Z ##[debug] } +2024-05-29T06:06:53.8286652Z ##[debug] }, +2024-05-29T06:06:53.8286871Z ##[debug] { +2024-05-29T06:06:53.8287237Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8287534Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:53.8287864Z ##[debug] "name": "test", +2024-05-29T06:06:53.8288345Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8289071Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:53.8289672Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8289975Z ##[debug] }, +2024-05-29T06:06:53.8290203Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8290494Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8290827Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:53.8291142Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8291455Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:53.8291803Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8292123Z ##[debug] "workflow": { +2024-05-29T06:06:53.8292432Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:53.8292905Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:53.8293362Z ##[debug] } +2024-05-29T06:06:53.8293589Z ##[debug] }, +2024-05-29T06:06:53.8293832Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8294122Z ##[debug] "totalCount": 3, +2024-05-29T06:06:53.8294415Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8294716Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8295117Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:53.8295504Z ##[debug] }, +2024-05-29T06:06:53.8295748Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8296019Z ##[debug] { +2024-05-29T06:06:53.8296291Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:53.8296636Z ##[debug] "name": "build", +2024-05-29T06:06:53.8296968Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8297573Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:53.8298436Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8298756Z ##[debug] }, +2024-05-29T06:06:53.8298999Z ##[debug] { +2024-05-29T06:06:53.8299278Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:53.8299619Z ##[debug] "name": "test", +2024-05-29T06:06:53.8299945Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8300539Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:53.8301140Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8301453Z ##[debug] }, +2024-05-29T06:06:53.8301682Z ##[debug] { +2024-05-29T06:06:53.8301953Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:53.8302305Z ##[debug] "name": "typecheck", +2024-05-29T06:06:53.8302649Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8303250Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:53.8303854Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8304179Z ##[debug] } +2024-05-29T06:06:53.8304417Z ##[debug] ] +2024-05-29T06:06:53.8304648Z ##[debug] } +2024-05-29T06:06:53.8304866Z ##[debug] }, +2024-05-29T06:06:53.8305098Z ##[debug] "workflow": { +2024-05-29T06:06:53.8305381Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:53.8305833Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:53.8306285Z ##[debug] }, +2024-05-29T06:06:53.8306521Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8306824Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:53.8307152Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8307602Z ##[debug] "workflow": { +2024-05-29T06:06:53.8307895Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:53.8308526Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:53.8308979Z ##[debug] } +2024-05-29T06:06:53.8309332Z ##[debug] } +2024-05-29T06:06:53.8309545Z ##[debug] }, +2024-05-29T06:06:53.8309761Z ##[debug] { +2024-05-29T06:06:53.8309979Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8310262Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:53.8310592Z ##[debug] "name": "typecheck", +2024-05-29T06:06:53.8310904Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8311494Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:53.8312109Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8312410Z ##[debug] }, +2024-05-29T06:06:53.8312637Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8312934Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8313267Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:53.8313581Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8313894Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:53.8314238Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8314563Z ##[debug] "workflow": { +2024-05-29T06:06:53.8314871Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:53.8315340Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:53.8315793Z ##[debug] } +2024-05-29T06:06:53.8316020Z ##[debug] }, +2024-05-29T06:06:53.8316269Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8316559Z ##[debug] "totalCount": 3, +2024-05-29T06:06:53.8316853Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8317156Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8317558Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:53.8317944Z ##[debug] }, +2024-05-29T06:06:53.8318402Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8318666Z ##[debug] { +2024-05-29T06:06:53.8318937Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:53.8319277Z ##[debug] "name": "build", +2024-05-29T06:06:53.8319623Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8320226Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:53.8320831Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8321151Z ##[debug] }, +2024-05-29T06:06:53.8321382Z ##[debug] { +2024-05-29T06:06:53.8321655Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:53.8321992Z ##[debug] "name": "test", +2024-05-29T06:06:53.8322320Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8322908Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:53.8323503Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8323815Z ##[debug] }, +2024-05-29T06:06:53.8324045Z ##[debug] { +2024-05-29T06:06:53.8324318Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:53.8324672Z ##[debug] "name": "typecheck", +2024-05-29T06:06:53.8325010Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8325600Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:53.8326197Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8326506Z ##[debug] } +2024-05-29T06:06:53.8326742Z ##[debug] ] +2024-05-29T06:06:53.8326971Z ##[debug] } +2024-05-29T06:06:53.8327186Z ##[debug] }, +2024-05-29T06:06:53.8327414Z ##[debug] "workflow": { +2024-05-29T06:06:53.8327694Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:53.8328422Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:53.8328883Z ##[debug] }, +2024-05-29T06:06:53.8329113Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8329415Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:53.8329860Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8330174Z ##[debug] "workflow": { +2024-05-29T06:06:53.8330467Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:53.8330918Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:53.8331366Z ##[debug] } +2024-05-29T06:06:53.8331586Z ##[debug] } +2024-05-29T06:06:53.8331796Z ##[debug] }, +2024-05-29T06:06:53.8332007Z ##[debug] { +2024-05-29T06:06:53.8332227Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8332509Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:53.8332834Z ##[debug] "name": "typos", +2024-05-29T06:06:53.8333141Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8333724Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:53.8334316Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8334617Z ##[debug] }, +2024-05-29T06:06:53.8334851Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8335138Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8335462Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:53.8335779Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8336090Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:53.8336442Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8336758Z ##[debug] "workflow": { +2024-05-29T06:06:53.8337060Z ##[debug] "name": "👕", +2024-05-29T06:06:53.8337516Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:53.8337980Z ##[debug] } +2024-05-29T06:06:53.8338459Z ##[debug] }, +2024-05-29T06:06:53.8338699Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8338986Z ##[debug] "totalCount": 4, +2024-05-29T06:06:53.8339277Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8339580Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8339990Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:53.8340375Z ##[debug] }, +2024-05-29T06:06:53.8340616Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8340878Z ##[debug] { +2024-05-29T06:06:53.8341145Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:53.8341482Z ##[debug] "name": "typos", +2024-05-29T06:06:53.8341814Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8342412Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:53.8343020Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8343339Z ##[debug] }, +2024-05-29T06:06:53.8343575Z ##[debug] { +2024-05-29T06:06:53.8343842Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:53.8344182Z ##[debug] "name": "dprint", +2024-05-29T06:06:53.8344512Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8345096Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:53.8345705Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8346023Z ##[debug] }, +2024-05-29T06:06:53.8346256Z ##[debug] { +2024-05-29T06:06:53.8346530Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:53.8346883Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:53.8347218Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8347819Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:53.8348768Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8349085Z ##[debug] }, +2024-05-29T06:06:53.8349323Z ##[debug] { +2024-05-29T06:06:53.8349592Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:53.8349932Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:53.8350372Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8350973Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:53.8351580Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8351892Z ##[debug] } +2024-05-29T06:06:53.8352128Z ##[debug] ] +2024-05-29T06:06:53.8352359Z ##[debug] } +2024-05-29T06:06:53.8352572Z ##[debug] }, +2024-05-29T06:06:53.8352797Z ##[debug] "workflow": { +2024-05-29T06:06:53.8353071Z ##[debug] "name": "👕", +2024-05-29T06:06:53.8353508Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:53.8353968Z ##[debug] }, +2024-05-29T06:06:53.8354198Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8354496Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:53.8354829Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8355156Z ##[debug] "workflow": { +2024-05-29T06:06:53.8355425Z ##[debug] "name": "👕", +2024-05-29T06:06:53.8355867Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:53.8356334Z ##[debug] } +2024-05-29T06:06:53.8356551Z ##[debug] } +2024-05-29T06:06:53.8356770Z ##[debug] }, +2024-05-29T06:06:53.8357022Z ##[debug] { +2024-05-29T06:06:53.8357236Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8357523Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:53.8357846Z ##[debug] "name": "dprint", +2024-05-29T06:06:53.8358253Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8358848Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:53.8359439Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8359743Z ##[debug] }, +2024-05-29T06:06:53.8359965Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8360262Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8360588Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:53.8360899Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8361210Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:53.8361555Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8361869Z ##[debug] "workflow": { +2024-05-29T06:06:53.8362153Z ##[debug] "name": "👕", +2024-05-29T06:06:53.8362602Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:53.8363057Z ##[debug] } +2024-05-29T06:06:53.8363290Z ##[debug] }, +2024-05-29T06:06:53.8363528Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8363816Z ##[debug] "totalCount": 4, +2024-05-29T06:06:53.8364113Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8364415Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8364811Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:53.8365205Z ##[debug] }, +2024-05-29T06:06:53.8365444Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8365698Z ##[debug] { +2024-05-29T06:06:53.8365974Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:53.8366328Z ##[debug] "name": "typos", +2024-05-29T06:06:53.8366660Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8367259Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:53.8367869Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8368288Z ##[debug] }, +2024-05-29T06:06:53.8368521Z ##[debug] { +2024-05-29T06:06:53.8368915Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:53.8369261Z ##[debug] "name": "dprint", +2024-05-29T06:06:53.8369585Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8370177Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:53.8370880Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8371196Z ##[debug] }, +2024-05-29T06:06:53.8371425Z ##[debug] { +2024-05-29T06:06:53.8371689Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:53.8372034Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:53.8372367Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8373290Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:53.8373897Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8374210Z ##[debug] }, +2024-05-29T06:06:53.8374449Z ##[debug] { +2024-05-29T06:06:53.8374718Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:53.8375056Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:53.8375387Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8375998Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:53.8376606Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8376918Z ##[debug] } +2024-05-29T06:06:53.8377148Z ##[debug] ] +2024-05-29T06:06:53.8377378Z ##[debug] } +2024-05-29T06:06:53.8377591Z ##[debug] }, +2024-05-29T06:06:53.8377815Z ##[debug] "workflow": { +2024-05-29T06:06:53.8378207Z ##[debug] "name": "👕", +2024-05-29T06:06:53.8378634Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:53.8379093Z ##[debug] }, +2024-05-29T06:06:53.8379330Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8379624Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:53.8379957Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8380266Z ##[debug] "workflow": { +2024-05-29T06:06:53.8380531Z ##[debug] "name": "👕", +2024-05-29T06:06:53.8380977Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:53.8381433Z ##[debug] } +2024-05-29T06:06:53.8381649Z ##[debug] } +2024-05-29T06:06:53.8381863Z ##[debug] }, +2024-05-29T06:06:53.8382078Z ##[debug] { +2024-05-29T06:06:53.8382291Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8382578Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:53.8382908Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:53.8383214Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8383801Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:53.8384399Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8384695Z ##[debug] }, +2024-05-29T06:06:53.8384926Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8385217Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8385535Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:53.8385865Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8386175Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:53.8386522Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8386843Z ##[debug] "workflow": { +2024-05-29T06:06:53.8387130Z ##[debug] "name": "👕", +2024-05-29T06:06:53.8387579Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:53.8388032Z ##[debug] } +2024-05-29T06:06:53.8388367Z ##[debug] }, +2024-05-29T06:06:53.8388603Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8388884Z ##[debug] "totalCount": 4, +2024-05-29T06:06:53.8389335Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8389641Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8390035Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:53.8390418Z ##[debug] }, +2024-05-29T06:06:53.8390657Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8391021Z ##[debug] { +2024-05-29T06:06:53.8391297Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:53.8391635Z ##[debug] "name": "typos", +2024-05-29T06:06:53.8391959Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8392566Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:53.8393173Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8393491Z ##[debug] }, +2024-05-29T06:06:53.8393721Z ##[debug] { +2024-05-29T06:06:53.8393993Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:53.8394341Z ##[debug] "name": "dprint", +2024-05-29T06:06:53.8394667Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8395262Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:53.8395872Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8396181Z ##[debug] }, +2024-05-29T06:06:53.8396418Z ##[debug] { +2024-05-29T06:06:53.8396686Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:53.8397024Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:53.8397365Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8397960Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:53.8398657Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8398962Z ##[debug] }, +2024-05-29T06:06:53.8399390Z ##[debug] { +2024-05-29T06:06:53.8399944Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:53.8400382Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:53.8400832Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8411929Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:53.8412699Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8413053Z ##[debug] } +2024-05-29T06:06:53.8413310Z ##[debug] ] +2024-05-29T06:06:53.8413543Z ##[debug] } +2024-05-29T06:06:53.8413774Z ##[debug] }, +2024-05-29T06:06:53.8414015Z ##[debug] "workflow": { +2024-05-29T06:06:53.8414297Z ##[debug] "name": "👕", +2024-05-29T06:06:53.8414748Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:53.8415224Z ##[debug] }, +2024-05-29T06:06:53.8415463Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8415785Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:53.8416136Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8416466Z ##[debug] "workflow": { +2024-05-29T06:06:53.8416755Z ##[debug] "name": "👕", +2024-05-29T06:06:53.8417208Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:53.8417680Z ##[debug] } +2024-05-29T06:06:53.8417916Z ##[debug] } +2024-05-29T06:06:53.8418279Z ##[debug] }, +2024-05-29T06:06:53.8418497Z ##[debug] { +2024-05-29T06:06:53.8418726Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8419043Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:53.8419378Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:53.8419698Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8420313Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:53.8420918Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8421425Z ##[debug] }, +2024-05-29T06:06:53.8421678Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8421987Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8422321Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:53.8422658Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8423096Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:53.8423445Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8423776Z ##[debug] "workflow": { +2024-05-29T06:06:53.8424077Z ##[debug] "name": "👕", +2024-05-29T06:06:53.8424538Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:53.8425016Z ##[debug] } +2024-05-29T06:06:53.8425258Z ##[debug] }, +2024-05-29T06:06:53.8425497Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8425791Z ##[debug] "totalCount": 4, +2024-05-29T06:06:53.8426103Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8426408Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8426836Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:53.8427234Z ##[debug] }, +2024-05-29T06:06:53.8427479Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8427752Z ##[debug] { +2024-05-29T06:06:53.8428048Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:53.8428509Z ##[debug] "name": "typos", +2024-05-29T06:06:53.8428850Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8429472Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:53.8430096Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8430424Z ##[debug] }, +2024-05-29T06:06:53.8430674Z ##[debug] { +2024-05-29T06:06:53.8430958Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:53.8431310Z ##[debug] "name": "dprint", +2024-05-29T06:06:53.8431656Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8432273Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:53.8432875Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8433212Z ##[debug] }, +2024-05-29T06:06:53.8433459Z ##[debug] { +2024-05-29T06:06:53.8433732Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:53.8434087Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:53.8434438Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8435033Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:53.8435630Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8435958Z ##[debug] }, +2024-05-29T06:06:53.8436197Z ##[debug] { +2024-05-29T06:06:53.8436464Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:53.8436821Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:53.8437162Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8437757Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:53.8438468Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8438791Z ##[debug] } +2024-05-29T06:06:53.8439023Z ##[debug] ] +2024-05-29T06:06:53.8439259Z ##[debug] } +2024-05-29T06:06:53.8439485Z ##[debug] }, +2024-05-29T06:06:53.8439713Z ##[debug] "workflow": { +2024-05-29T06:06:53.8439992Z ##[debug] "name": "👕", +2024-05-29T06:06:53.8440428Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:53.8440889Z ##[debug] }, +2024-05-29T06:06:53.8441121Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8441435Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:53.8441772Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8442212Z ##[debug] "workflow": { +2024-05-29T06:06:53.8442507Z ##[debug] "name": "👕", +2024-05-29T06:06:53.8442953Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:53.8443414Z ##[debug] } +2024-05-29T06:06:53.8443760Z ##[debug] } +2024-05-29T06:06:53.8443988Z ##[debug] }, +2024-05-29T06:06:53.8444203Z ##[debug] { +2024-05-29T06:06:53.8444430Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8444726Z ##[debug] "databaseId": 25536411289, +2024-05-29T06:06:53.8445057Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:53.8445378Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8445980Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", +2024-05-29T06:06:53.8446572Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8446892Z ##[debug] }, +2024-05-29T06:06:53.8447131Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8447423Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8447757Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:53.8448185Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8448515Z ##[debug] "databaseId": 9281068678, +2024-05-29T06:06:53.8448875Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8449206Z ##[debug] "workflow": { +2024-05-29T06:06:53.8449500Z ##[debug] "name": "💧", +2024-05-29T06:06:53.8449968Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:53.8450452Z ##[debug] } +2024-05-29T06:06:53.8450690Z ##[debug] }, +2024-05-29T06:06:53.8450924Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8451218Z ##[debug] "totalCount": 1, +2024-05-29T06:06:53.8451521Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8451825Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8452241Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpk=" +2024-05-29T06:06:53.8452634Z ##[debug] }, +2024-05-29T06:06:53.8452874Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8453142Z ##[debug] { +2024-05-29T06:06:53.8453423Z ##[debug] "databaseId": 25536411289, +2024-05-29T06:06:53.8453779Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:53.8454123Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8454736Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", +2024-05-29T06:06:53.8455349Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8455675Z ##[debug] } +2024-05-29T06:06:53.8455912Z ##[debug] ] +2024-05-29T06:06:53.8456139Z ##[debug] } +2024-05-29T06:06:53.8456366Z ##[debug] }, +2024-05-29T06:06:53.8456597Z ##[debug] "workflow": { +2024-05-29T06:06:53.8456874Z ##[debug] "name": "💧", +2024-05-29T06:06:53.8457363Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:53.8457841Z ##[debug] }, +2024-05-29T06:06:53.8458198Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8458500Z ##[debug] "databaseId": 9281068678, +2024-05-29T06:06:53.8458835Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8459161Z ##[debug] "workflow": { +2024-05-29T06:06:53.8459437Z ##[debug] "name": "💧", +2024-05-29T06:06:53.8459897Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:53.8460373Z ##[debug] } +2024-05-29T06:06:53.8460594Z ##[debug] } +2024-05-29T06:06:53.8460815Z ##[debug] }, +2024-05-29T06:06:53.8461033Z ##[debug] { +2024-05-29T06:06:53.8461253Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8461549Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:53.8461892Z ##[debug] "name": "intermediate", +2024-05-29T06:06:53.8462217Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8462932Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:53.8463539Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8463837Z ##[debug] }, +2024-05-29T06:06:53.8464072Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8464490Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:53.8464801Z ##[debug] "conclusion": null, +2024-05-29T06:06:53.8465110Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8465426Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:53.8465775Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8466097Z ##[debug] "workflow": { +2024-05-29T06:06:53.8466447Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:53.8467025Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:53.8467521Z ##[debug] } +2024-05-29T06:06:53.8467755Z ##[debug] }, +2024-05-29T06:06:53.8467998Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8468385Z ##[debug] "totalCount": 6, +2024-05-29T06:06:53.8468687Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8469000Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8469411Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:06:53.8469800Z ##[debug] }, +2024-05-29T06:06:53.8470045Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8470306Z ##[debug] { +2024-05-29T06:06:53.8470586Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:53.8470958Z ##[debug] "name": "intermediate", +2024-05-29T06:06:53.8471315Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8471923Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:53.8472536Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8472860Z ##[debug] }, +2024-05-29T06:06:53.8473102Z ##[debug] { +2024-05-29T06:06:53.8473377Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:53.8473735Z ##[debug] "name": "wait-success", +2024-05-29T06:06:53.8474085Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:53.8474698Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:53.8475296Z ##[debug] "conclusion": null +2024-05-29T06:06:53.8475599Z ##[debug] }, +2024-05-29T06:06:53.8475843Z ##[debug] { +2024-05-29T06:06:53.8476121Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:53.8476505Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:53.8476890Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8477485Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:53.8478193Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8478511Z ##[debug] }, +2024-05-29T06:06:53.8478753Z ##[debug] { +2024-05-29T06:06:53.8479026Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:53.8479369Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:53.8479727Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:53.8480335Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:53.8480922Z ##[debug] "conclusion": null +2024-05-29T06:06:53.8481230Z ##[debug] }, +2024-05-29T06:06:53.8481471Z ##[debug] { +2024-05-29T06:06:53.8481736Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:06:53.8482108Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:06:53.8482470Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:53.8483177Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:53.8483769Z ##[debug] "conclusion": null +2024-05-29T06:06:53.8484084Z ##[debug] }, +2024-05-29T06:06:53.8484323Z ##[debug] { +2024-05-29T06:06:53.8484588Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:06:53.8485083Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:06:53.8485457Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:53.8486053Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:06:53.8486652Z ##[debug] "conclusion": null +2024-05-29T06:06:53.8486959Z ##[debug] } +2024-05-29T06:06:53.8487190Z ##[debug] ] +2024-05-29T06:06:53.8487428Z ##[debug] } +2024-05-29T06:06:53.8487649Z ##[debug] }, +2024-05-29T06:06:53.8487874Z ##[debug] "workflow": { +2024-05-29T06:06:53.8488317Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:53.8488883Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:53.8489382Z ##[debug] }, +2024-05-29T06:06:53.8489615Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8489921Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:53.8490257Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8490575Z ##[debug] "workflow": { +2024-05-29T06:06:53.8490917Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:53.8491495Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:53.8491992Z ##[debug] } +2024-05-29T06:06:53.8492218Z ##[debug] } +2024-05-29T06:06:53.8492440Z ##[debug] }, +2024-05-29T06:06:53.8492658Z ##[debug] { +2024-05-29T06:06:53.8492892Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8493188Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:53.8493530Z ##[debug] "name": "wait-success", +2024-05-29T06:06:53.8493865Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:53.8494469Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:53.8495062Z ##[debug] "conclusion": null +2024-05-29T06:06:53.8495351Z ##[debug] }, +2024-05-29T06:06:53.8495588Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8495868Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:53.8496175Z ##[debug] "conclusion": null, +2024-05-29T06:06:53.8496487Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8496805Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:53.8497155Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8497481Z ##[debug] "workflow": { +2024-05-29T06:06:53.8497833Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:53.8498498Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:53.8499006Z ##[debug] } +2024-05-29T06:06:53.8499238Z ##[debug] }, +2024-05-29T06:06:53.8499472Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8499761Z ##[debug] "totalCount": 6, +2024-05-29T06:06:53.8500061Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8500368Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8500776Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:06:53.8501168Z ##[debug] }, +2024-05-29T06:06:53.8501406Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8501675Z ##[debug] { +2024-05-29T06:06:53.8501956Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:53.8502320Z ##[debug] "name": "intermediate", +2024-05-29T06:06:53.8502679Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8503284Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:53.8504018Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8504333Z ##[debug] }, +2024-05-29T06:06:53.8504575Z ##[debug] { +2024-05-29T06:06:53.8504848Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:53.8505314Z ##[debug] "name": "wait-success", +2024-05-29T06:06:53.8505662Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:53.8506272Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:53.8506863Z ##[debug] "conclusion": null +2024-05-29T06:06:53.8507173Z ##[debug] }, +2024-05-29T06:06:53.8507412Z ##[debug] { +2024-05-29T06:06:53.8507680Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:53.8508199Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:53.8508585Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8509190Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:53.8509789Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8510115Z ##[debug] }, +2024-05-29T06:06:53.8510353Z ##[debug] { +2024-05-29T06:06:53.8510626Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:53.8510975Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:53.8511327Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:53.8511924Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:53.8512522Z ##[debug] "conclusion": null +2024-05-29T06:06:53.8512829Z ##[debug] }, +2024-05-29T06:06:53.8513064Z ##[debug] { +2024-05-29T06:06:53.8513335Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:06:53.8513706Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:06:53.8514073Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:53.8514661Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:53.8515249Z ##[debug] "conclusion": null +2024-05-29T06:06:53.8515560Z ##[debug] }, +2024-05-29T06:06:53.8515793Z ##[debug] { +2024-05-29T06:06:53.8516064Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:06:53.8516441Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:06:53.8516811Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:53.8517398Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:06:53.8517993Z ##[debug] "conclusion": null +2024-05-29T06:06:53.8518398Z ##[debug] } +2024-05-29T06:06:53.8518636Z ##[debug] ] +2024-05-29T06:06:53.8518871Z ##[debug] } +2024-05-29T06:06:53.8519092Z ##[debug] }, +2024-05-29T06:06:53.8519327Z ##[debug] "workflow": { +2024-05-29T06:06:53.8519659Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:53.8520217Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:53.8520722Z ##[debug] }, +2024-05-29T06:06:53.8520960Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8521262Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:53.8521594Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8521910Z ##[debug] "workflow": { +2024-05-29T06:06:53.8522253Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:53.8522811Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:53.8523310Z ##[debug] } +2024-05-29T06:06:53.8523539Z ##[debug] } +2024-05-29T06:06:53.8523754Z ##[debug] }, +2024-05-29T06:06:53.8523975Z ##[debug] { +2024-05-29T06:06:53.8524324Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8524615Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:53.8524980Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:53.8525340Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8525927Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:53.8526639Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8526945Z ##[debug] }, +2024-05-29T06:06:53.8527175Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8527461Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:53.8527771Z ##[debug] "conclusion": null, +2024-05-29T06:06:53.8528167Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8528486Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:53.8528836Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8529162Z ##[debug] "workflow": { +2024-05-29T06:06:53.8529515Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:53.8530089Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:53.8530590Z ##[debug] } +2024-05-29T06:06:53.8530819Z ##[debug] }, +2024-05-29T06:06:53.8531060Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8531346Z ##[debug] "totalCount": 6, +2024-05-29T06:06:53.8531637Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8531940Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8532347Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:06:53.8532726Z ##[debug] }, +2024-05-29T06:06:53.8532963Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8533221Z ##[debug] { +2024-05-29T06:06:53.8533490Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:53.8533859Z ##[debug] "name": "intermediate", +2024-05-29T06:06:53.8534220Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8534822Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:53.8535432Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8535755Z ##[debug] }, +2024-05-29T06:06:53.8536003Z ##[debug] { +2024-05-29T06:06:53.8536270Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:53.8536625Z ##[debug] "name": "wait-success", +2024-05-29T06:06:53.8536976Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:53.8537580Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:53.8538273Z ##[debug] "conclusion": null +2024-05-29T06:06:53.8538581Z ##[debug] }, +2024-05-29T06:06:53.8538818Z ##[debug] { +2024-05-29T06:06:53.8539090Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:53.8539467Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:53.8539850Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8540452Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:53.8541064Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8541389Z ##[debug] }, +2024-05-29T06:06:53.8541621Z ##[debug] { +2024-05-29T06:06:53.8541888Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:53.8542235Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:53.8542583Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:53.8543190Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:53.8543782Z ##[debug] "conclusion": null +2024-05-29T06:06:53.8544085Z ##[debug] }, +2024-05-29T06:06:53.8544328Z ##[debug] { +2024-05-29T06:06:53.8544751Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:06:53.8545116Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:06:53.8545477Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:53.8546063Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:53.8546762Z ##[debug] "conclusion": null +2024-05-29T06:06:53.8547059Z ##[debug] }, +2024-05-29T06:06:53.8547298Z ##[debug] { +2024-05-29T06:06:53.8547567Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:06:53.8547937Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:06:53.8548404Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:53.8548995Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:06:53.8549577Z ##[debug] "conclusion": null +2024-05-29T06:06:53.8549882Z ##[debug] } +2024-05-29T06:06:53.8550120Z ##[debug] ] +2024-05-29T06:06:53.8550348Z ##[debug] } +2024-05-29T06:06:53.8550576Z ##[debug] }, +2024-05-29T06:06:53.8550822Z ##[debug] "workflow": { +2024-05-29T06:06:53.8551147Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:53.8551717Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:53.8552211Z ##[debug] }, +2024-05-29T06:06:53.8552450Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8552748Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:53.8553084Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8553398Z ##[debug] "workflow": { +2024-05-29T06:06:53.8553731Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:53.8554295Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:53.8554790Z ##[debug] } +2024-05-29T06:06:53.8555010Z ##[debug] } +2024-05-29T06:06:53.8555238Z ##[debug] }, +2024-05-29T06:06:53.8555458Z ##[debug] { +2024-05-29T06:06:53.8555678Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8555969Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:53.8556303Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:53.8556626Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:53.8557247Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:53.8557834Z ##[debug] "conclusion": null +2024-05-29T06:06:53.8558208Z ##[debug] }, +2024-05-29T06:06:53.8558446Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8558732Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:53.8559034Z ##[debug] "conclusion": null, +2024-05-29T06:06:53.8559346Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8559661Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:53.8560007Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8560334Z ##[debug] "workflow": { +2024-05-29T06:06:53.8560683Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:53.8561268Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:53.8561774Z ##[debug] } +2024-05-29T06:06:53.8562008Z ##[debug] }, +2024-05-29T06:06:53.8562247Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8562535Z ##[debug] "totalCount": 6, +2024-05-29T06:06:53.8562838Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8563149Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8563554Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:06:53.8563949Z ##[debug] }, +2024-05-29T06:06:53.8564196Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8564455Z ##[debug] { +2024-05-29T06:06:53.8564739Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:53.8565234Z ##[debug] "name": "intermediate", +2024-05-29T06:06:53.8565594Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8566202Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:53.8566928Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8567253Z ##[debug] }, +2024-05-29T06:06:53.8567490Z ##[debug] { +2024-05-29T06:06:53.8567762Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:53.8568213Z ##[debug] "name": "wait-success", +2024-05-29T06:06:53.8568572Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:53.8569185Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:53.8569781Z ##[debug] "conclusion": null +2024-05-29T06:06:53.8570084Z ##[debug] }, +2024-05-29T06:06:53.8570327Z ##[debug] { +2024-05-29T06:06:53.8570607Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:53.8570980Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:53.8571364Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8571968Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:53.8572578Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8572896Z ##[debug] }, +2024-05-29T06:06:53.8573141Z ##[debug] { +2024-05-29T06:06:53.8573415Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:53.8573757Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:53.8574108Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:53.8574712Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:53.8575298Z ##[debug] "conclusion": null +2024-05-29T06:06:53.8575613Z ##[debug] }, +2024-05-29T06:06:53.8575855Z ##[debug] { +2024-05-29T06:06:53.8576119Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:06:53.8576490Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:06:53.8576852Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:53.8577446Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:53.8578026Z ##[debug] "conclusion": null +2024-05-29T06:06:53.8578426Z ##[debug] }, +2024-05-29T06:06:53.8578663Z ##[debug] { +2024-05-29T06:06:53.8578924Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:06:53.8579303Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:06:53.8579677Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:53.8580257Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:06:53.8580856Z ##[debug] "conclusion": null +2024-05-29T06:06:53.8581161Z ##[debug] } +2024-05-29T06:06:53.8581390Z ##[debug] ] +2024-05-29T06:06:53.8581624Z ##[debug] } +2024-05-29T06:06:53.8581852Z ##[debug] }, +2024-05-29T06:06:53.8582081Z ##[debug] "workflow": { +2024-05-29T06:06:53.8582412Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:53.8582971Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:53.8583465Z ##[debug] }, +2024-05-29T06:06:53.8583698Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8584002Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:53.8584337Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8584650Z ##[debug] "workflow": { +2024-05-29T06:06:53.8584990Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:53.8585676Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:53.8586171Z ##[debug] } +2024-05-29T06:06:53.8586398Z ##[debug] } +2024-05-29T06:06:53.8586618Z ##[debug] }, +2024-05-29T06:06:53.8586830Z ##[debug] { +2024-05-29T06:06:53.8587057Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8587457Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:06:53.8587809Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:06:53.8588260Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:53.8588842Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:53.8589424Z ##[debug] "conclusion": null +2024-05-29T06:06:53.8589716Z ##[debug] }, +2024-05-29T06:06:53.8589950Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8590229Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:53.8590535Z ##[debug] "conclusion": null, +2024-05-29T06:06:53.8590841Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8591157Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:53.8591504Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8591834Z ##[debug] "workflow": { +2024-05-29T06:06:53.8592186Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:53.8592760Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:53.8593262Z ##[debug] } +2024-05-29T06:06:53.8593498Z ##[debug] }, +2024-05-29T06:06:53.8593732Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8594028Z ##[debug] "totalCount": 6, +2024-05-29T06:06:53.8594329Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8594633Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8595039Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:06:53.8595429Z ##[debug] }, +2024-05-29T06:06:53.8595670Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8595934Z ##[debug] { +2024-05-29T06:06:53.8596217Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:53.8596582Z ##[debug] "name": "intermediate", +2024-05-29T06:06:53.8596944Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8597549Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:53.8598255Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8598568Z ##[debug] }, +2024-05-29T06:06:53.8598812Z ##[debug] { +2024-05-29T06:06:53.8599082Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:53.8599434Z ##[debug] "name": "wait-success", +2024-05-29T06:06:53.8599787Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:53.8600391Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:53.8600983Z ##[debug] "conclusion": null +2024-05-29T06:06:53.8601295Z ##[debug] }, +2024-05-29T06:06:53.8601534Z ##[debug] { +2024-05-29T06:06:53.8601797Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:53.8602183Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:53.8602572Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8603166Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:53.8603766Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8604093Z ##[debug] }, +2024-05-29T06:06:53.8604331Z ##[debug] { +2024-05-29T06:06:53.8604593Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:53.8604944Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:53.8605295Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:53.8606007Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:53.8606607Z ##[debug] "conclusion": null +2024-05-29T06:06:53.8606913Z ##[debug] }, +2024-05-29T06:06:53.8607144Z ##[debug] { +2024-05-29T06:06:53.8607419Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:06:53.8607899Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:06:53.8608353Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:53.8608941Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:53.8609525Z ##[debug] "conclusion": null +2024-05-29T06:06:53.8609825Z ##[debug] }, +2024-05-29T06:06:53.8610057Z ##[debug] { +2024-05-29T06:06:53.8610329Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:06:53.8610709Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:06:53.8611071Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:53.8611667Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:06:53.8612265Z ##[debug] "conclusion": null +2024-05-29T06:06:53.8612568Z ##[debug] } +2024-05-29T06:06:53.8612814Z ##[debug] ] +2024-05-29T06:06:53.8613046Z ##[debug] } +2024-05-29T06:06:53.8613268Z ##[debug] }, +2024-05-29T06:06:53.8613499Z ##[debug] "workflow": { +2024-05-29T06:06:53.8613831Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:53.8614384Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:53.8614878Z ##[debug] }, +2024-05-29T06:06:53.8615116Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8615418Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:53.8615749Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8616064Z ##[debug] "workflow": { +2024-05-29T06:06:53.8616408Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:53.8616964Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:53.8617459Z ##[debug] } +2024-05-29T06:06:53.8617685Z ##[debug] } +2024-05-29T06:06:53.8617910Z ##[debug] }, +2024-05-29T06:06:53.8618223Z ##[debug] { +2024-05-29T06:06:53.8618448Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8618735Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:06:53.8619093Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:06:53.8619440Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:53.8620012Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:06:53.8620601Z ##[debug] "conclusion": null +2024-05-29T06:06:53.8620893Z ##[debug] }, +2024-05-29T06:06:53.8621122Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8621410Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:53.8621721Z ##[debug] "conclusion": null, +2024-05-29T06:06:53.8622023Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8622341Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:53.8622696Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8623028Z ##[debug] "workflow": { +2024-05-29T06:06:53.8623375Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:53.8623948Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:53.8624445Z ##[debug] } +2024-05-29T06:06:53.8624672Z ##[debug] }, +2024-05-29T06:06:53.8624911Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8625201Z ##[debug] "totalCount": 6, +2024-05-29T06:06:53.8625497Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8625803Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8626207Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:06:53.8626736Z ##[debug] }, +2024-05-29T06:06:53.8626985Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8627248Z ##[debug] { +2024-05-29T06:06:53.8627519Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:53.8627890Z ##[debug] "name": "intermediate", +2024-05-29T06:06:53.8628461Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8629064Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:53.8629671Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8629998Z ##[debug] }, +2024-05-29T06:06:53.8630246Z ##[debug] { +2024-05-29T06:06:53.8630515Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:53.8630638Z ##[debug] "name": "wait-success", +2024-05-29T06:06:53.8630761Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:53.8631125Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:53.8631240Z ##[debug] "conclusion": null +2024-05-29T06:06:53.8631324Z ##[debug] }, +2024-05-29T06:06:53.8631408Z ##[debug] { +2024-05-29T06:06:53.8631536Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:53.8631684Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:53.8631807Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8632173Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:53.8632290Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8632379Z ##[debug] }, +2024-05-29T06:06:53.8632462Z ##[debug] { +2024-05-29T06:06:53.8632582Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:53.8632700Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:53.8632820Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:53.8633183Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:53.8633288Z ##[debug] "conclusion": null +2024-05-29T06:06:53.8633372Z ##[debug] }, +2024-05-29T06:06:53.8633471Z ##[debug] { +2024-05-29T06:06:53.8633590Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:06:53.8633720Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:06:53.8633837Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:53.8634201Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:53.8634307Z ##[debug] "conclusion": null +2024-05-29T06:06:53.8634401Z ##[debug] }, +2024-05-29T06:06:53.8634485Z ##[debug] { +2024-05-29T06:06:53.8634609Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:06:53.8634754Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:06:53.8634860Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:53.8635227Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:06:53.8635335Z ##[debug] "conclusion": null +2024-05-29T06:06:53.8635418Z ##[debug] } +2024-05-29T06:06:53.8635507Z ##[debug] ] +2024-05-29T06:06:53.8635590Z ##[debug] } +2024-05-29T06:06:53.8635676Z ##[debug] }, +2024-05-29T06:06:53.8635775Z ##[debug] "workflow": { +2024-05-29T06:06:53.8635924Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:53.8636216Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:53.8636299Z ##[debug] }, +2024-05-29T06:06:53.8636396Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8636510Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:53.8636736Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8636832Z ##[debug] "workflow": { +2024-05-29T06:06:53.8636994Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:53.8637281Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:53.8637473Z ##[debug] } +2024-05-29T06:06:53.8637561Z ##[debug] } +2024-05-29T06:06:53.8637642Z ##[debug] }, +2024-05-29T06:06:53.8637731Z ##[debug] { +2024-05-29T06:06:53.8637824Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8637933Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:53.8638160Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:53.8638267Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8638630Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:53.8638742Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:53.8638824Z ##[debug] }, +2024-05-29T06:06:53.8638922Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8639030Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8639134Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:53.8639240Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8639361Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:53.8639472Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8639573Z ##[debug] "workflow": { +2024-05-29T06:06:53.8639702Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:53.8640002Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:53.8640094Z ##[debug] } +2024-05-29T06:06:53.8640176Z ##[debug] }, +2024-05-29T06:06:53.8640272Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8640376Z ##[debug] "totalCount": 4, +2024-05-29T06:06:53.8640471Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8640583Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8640777Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:53.8640862Z ##[debug] }, +2024-05-29T06:06:53.8640958Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8641041Z ##[debug] { +2024-05-29T06:06:53.8641170Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:53.8641306Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:53.8641425Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8641797Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:53.8641925Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:53.8642009Z ##[debug] }, +2024-05-29T06:06:53.8642093Z ##[debug] { +2024-05-29T06:06:53.8642217Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:53.8642322Z ##[debug] "name": "renovate", +2024-05-29T06:06:53.8642448Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8642811Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:53.8642930Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:53.8643024Z ##[debug] }, +2024-05-29T06:06:53.8643107Z ##[debug] { +2024-05-29T06:06:53.8643227Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:53.8643356Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:53.8643474Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8643838Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:53.8643957Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:53.8644040Z ##[debug] }, +2024-05-29T06:06:53.8644129Z ##[debug] { +2024-05-29T06:06:53.8644249Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:53.8644483Z ##[debug] "name": "dependabot", +2024-05-29T06:06:53.8644605Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8644959Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:53.8645210Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:53.8645293Z ##[debug] } +2024-05-29T06:06:53.8645375Z ##[debug] ] +2024-05-29T06:06:53.8645464Z ##[debug] } +2024-05-29T06:06:53.8645546Z ##[debug] }, +2024-05-29T06:06:53.8645638Z ##[debug] "workflow": { +2024-05-29T06:06:53.8645745Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:53.8646030Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:53.8646118Z ##[debug] }, +2024-05-29T06:06:53.8646219Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8646327Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:53.8646444Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8646543Z ##[debug] "workflow": { +2024-05-29T06:06:53.8646643Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:53.8646933Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:53.8647024Z ##[debug] } +2024-05-29T06:06:53.8647107Z ##[debug] } +2024-05-29T06:06:53.8647198Z ##[debug] }, +2024-05-29T06:06:53.8647282Z ##[debug] { +2024-05-29T06:06:53.8647373Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8647489Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:53.8647587Z ##[debug] "name": "renovate", +2024-05-29T06:06:53.8647691Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8648169Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:53.8648279Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:53.8648368Z ##[debug] }, +2024-05-29T06:06:53.8648495Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8648600Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8648714Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:53.8648812Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8648925Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:53.8649048Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8649142Z ##[debug] "workflow": { +2024-05-29T06:06:53.8649242Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:53.8649531Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:53.8649616Z ##[debug] } +2024-05-29T06:06:53.8649698Z ##[debug] }, +2024-05-29T06:06:53.8649798Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8649894Z ##[debug] "totalCount": 4, +2024-05-29T06:06:53.8649992Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8650108Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8650289Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:53.8650380Z ##[debug] }, +2024-05-29T06:06:53.8650471Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8650556Z ##[debug] { +2024-05-29T06:06:53.8650683Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:53.8650820Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:53.8650937Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8651301Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:53.8651419Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:53.8651510Z ##[debug] }, +2024-05-29T06:06:53.8651594Z ##[debug] { +2024-05-29T06:06:53.8651711Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:53.8651822Z ##[debug] "name": "renovate", +2024-05-29T06:06:53.8651938Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8652422Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:53.8652551Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:53.8652636Z ##[debug] }, +2024-05-29T06:06:53.8652849Z ##[debug] { +2024-05-29T06:06:53.8652970Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:53.8653090Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:53.8653208Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8653576Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:53.8653692Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:53.8653786Z ##[debug] }, +2024-05-29T06:06:53.8653869Z ##[debug] { +2024-05-29T06:06:53.8653985Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:53.8654111Z ##[debug] "name": "dependabot", +2024-05-29T06:06:53.8654224Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8654581Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:53.8654698Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:53.8654786Z ##[debug] } +2024-05-29T06:06:53.8654877Z ##[debug] ] +2024-05-29T06:06:53.8654959Z ##[debug] } +2024-05-29T06:06:53.8655042Z ##[debug] }, +2024-05-29T06:06:53.8655140Z ##[debug] "workflow": { +2024-05-29T06:06:53.8655239Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:53.8655519Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:53.8655608Z ##[debug] }, +2024-05-29T06:06:53.8655703Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8655818Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:53.8655927Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8656027Z ##[debug] "workflow": { +2024-05-29T06:06:53.8656129Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:53.8656413Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:53.8656496Z ##[debug] } +2024-05-29T06:06:53.8656593Z ##[debug] } +2024-05-29T06:06:53.8656674Z ##[debug] }, +2024-05-29T06:06:53.8656756Z ##[debug] { +2024-05-29T06:06:53.8656853Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8656992Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:53.8657101Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:53.8657208Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8657567Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:53.8657679Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:53.8657762Z ##[debug] }, +2024-05-29T06:06:53.8657858Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8657970Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8658173Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:53.8658273Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8658400Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:53.8658515Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8658609Z ##[debug] "workflow": { +2024-05-29T06:06:53.8658716Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:53.8659000Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:53.8659093Z ##[debug] } +2024-05-29T06:06:53.8659177Z ##[debug] }, +2024-05-29T06:06:53.8659270Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8659374Z ##[debug] "totalCount": 4, +2024-05-29T06:06:53.8659469Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8659582Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8659888Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:53.8659975Z ##[debug] }, +2024-05-29T06:06:53.8660065Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8660158Z ##[debug] { +2024-05-29T06:06:53.8660278Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:53.8660574Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:53.8660690Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8661050Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:53.8661175Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:53.8661261Z ##[debug] }, +2024-05-29T06:06:53.8661345Z ##[debug] { +2024-05-29T06:06:53.8661471Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:53.8661576Z ##[debug] "name": "renovate", +2024-05-29T06:06:53.8661693Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8662056Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:53.8662174Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:53.8662264Z ##[debug] }, +2024-05-29T06:06:53.8662347Z ##[debug] { +2024-05-29T06:06:53.8662477Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:53.8662603Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:53.8662715Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8663064Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:53.8663185Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:53.8663269Z ##[debug] }, +2024-05-29T06:06:53.8663358Z ##[debug] { +2024-05-29T06:06:53.8663475Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:53.8663587Z ##[debug] "name": "dependabot", +2024-05-29T06:06:53.8663710Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8664062Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:53.8664176Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:53.8664273Z ##[debug] } +2024-05-29T06:06:53.8664357Z ##[debug] ] +2024-05-29T06:06:53.8664440Z ##[debug] } +2024-05-29T06:06:53.8664527Z ##[debug] }, +2024-05-29T06:06:53.8664620Z ##[debug] "workflow": { +2024-05-29T06:06:53.8664725Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:53.8665001Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:53.8665083Z ##[debug] }, +2024-05-29T06:06:53.8665185Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8665293Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:53.8665399Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8665506Z ##[debug] "workflow": { +2024-05-29T06:06:53.8665603Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:53.8665886Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:53.8665975Z ##[debug] } +2024-05-29T06:06:53.8666066Z ##[debug] } +2024-05-29T06:06:53.8666148Z ##[debug] }, +2024-05-29T06:06:53.8666237Z ##[debug] { +2024-05-29T06:06:53.8666328Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8666441Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:53.8666544Z ##[debug] "name": "dependabot", +2024-05-29T06:06:53.8666645Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8667022Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:53.8667128Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:53.8667210Z ##[debug] }, +2024-05-29T06:06:53.8667312Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8667501Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8667612Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:53.8667715Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8667829Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:53.8667943Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8668351Z ##[debug] "workflow": { +2024-05-29T06:06:53.8668520Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:53.8668823Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:53.8668907Z ##[debug] } +2024-05-29T06:06:53.8668989Z ##[debug] }, +2024-05-29T06:06:53.8669090Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8669188Z ##[debug] "totalCount": 4, +2024-05-29T06:06:53.8669281Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8669398Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8669579Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:53.8669681Z ##[debug] }, +2024-05-29T06:06:53.8669770Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8669855Z ##[debug] { +2024-05-29T06:06:53.8669981Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:53.8670109Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:53.8670234Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8670613Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:53.8670728Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:53.8670814Z ##[debug] }, +2024-05-29T06:06:53.8670903Z ##[debug] { +2024-05-29T06:06:53.8671022Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:53.8671133Z ##[debug] "name": "renovate", +2024-05-29T06:06:53.8671249Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8671619Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:53.8671743Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:53.8671831Z ##[debug] }, +2024-05-29T06:06:53.8671913Z ##[debug] { +2024-05-29T06:06:53.8672045Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:53.8672166Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:53.8672277Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8672638Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:53.8672752Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:53.8672845Z ##[debug] }, +2024-05-29T06:06:53.8672928Z ##[debug] { +2024-05-29T06:06:53.8673044Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:53.8673167Z ##[debug] "name": "dependabot", +2024-05-29T06:06:53.8673283Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8673637Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:53.8673759Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:53.8673847Z ##[debug] } +2024-05-29T06:06:53.8673939Z ##[debug] ] +2024-05-29T06:06:53.8674022Z ##[debug] } +2024-05-29T06:06:53.8674103Z ##[debug] }, +2024-05-29T06:06:53.8674198Z ##[debug] "workflow": { +2024-05-29T06:06:53.8674297Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:53.8674575Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:53.8674662Z ##[debug] }, +2024-05-29T06:06:53.8674757Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8674864Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:53.8674977Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8675069Z ##[debug] "workflow": { +2024-05-29T06:06:53.8675310Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:53.8675604Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:53.8675689Z ##[debug] } +2024-05-29T06:06:53.8675777Z ##[debug] } +2024-05-29T06:06:53.8675976Z ##[debug] }, +2024-05-29T06:06:53.8676057Z ##[debug] { +2024-05-29T06:06:53.8676154Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8676263Z ##[debug] "databaseId": 25536411287, +2024-05-29T06:06:53.8676355Z ##[debug] "name": "echo", +2024-05-29T06:06:53.8676464Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8676826Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", +2024-05-29T06:06:53.8687645Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8687771Z ##[debug] }, +2024-05-29T06:06:53.8687876Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8687999Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8688257Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:53.8688362Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8688493Z ##[debug] "databaseId": 9281068684, +2024-05-29T06:06:53.8688614Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8688722Z ##[debug] "workflow": { +2024-05-29T06:06:53.8688860Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:53.8689170Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:53.8689257Z ##[debug] } +2024-05-29T06:06:53.8689346Z ##[debug] }, +2024-05-29T06:06:53.8689443Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8689550Z ##[debug] "totalCount": 1, +2024-05-29T06:06:53.8689648Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8689767Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8689961Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpc=" +2024-05-29T06:06:53.8690056Z ##[debug] }, +2024-05-29T06:06:53.8690148Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8690243Z ##[debug] { +2024-05-29T06:06:53.8690371Z ##[debug] "databaseId": 25536411287, +2024-05-29T06:06:53.8690471Z ##[debug] "name": "echo", +2024-05-29T06:06:53.8690605Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8690996Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", +2024-05-29T06:06:53.8691130Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8691217Z ##[debug] } +2024-05-29T06:06:53.8691301Z ##[debug] ] +2024-05-29T06:06:53.8691391Z ##[debug] } +2024-05-29T06:06:53.8691473Z ##[debug] }, +2024-05-29T06:06:53.8691567Z ##[debug] "workflow": { +2024-05-29T06:06:53.8691692Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:53.8691991Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:53.8692077Z ##[debug] }, +2024-05-29T06:06:53.8692182Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8692292Z ##[debug] "databaseId": 9281068684, +2024-05-29T06:06:53.8692404Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8692510Z ##[debug] "workflow": { +2024-05-29T06:06:53.8692631Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:53.8692930Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:53.8693018Z ##[debug] } +2024-05-29T06:06:53.8693102Z ##[debug] } +2024-05-29T06:06:53.8693196Z ##[debug] }, +2024-05-29T06:06:53.8693279Z ##[debug] { +2024-05-29T06:06:53.8693372Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8693491Z ##[debug] "databaseId": 25536411604, +2024-05-29T06:06:53.8693587Z ##[debug] "name": "wait", +2024-05-29T06:06:53.8693692Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8694270Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", +2024-05-29T06:06:53.8694386Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8694479Z ##[debug] }, +2024-05-29T06:06:53.8694577Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8694787Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8694904Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:53.8695004Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8695121Z ##[debug] "databaseId": 9281068685, +2024-05-29T06:06:53.8695240Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8695336Z ##[debug] "workflow": { +2024-05-29T06:06:53.8695455Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:53.8695746Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:53.8695833Z ##[debug] } +2024-05-29T06:06:53.8695917Z ##[debug] }, +2024-05-29T06:06:53.8696025Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8696127Z ##[debug] "totalCount": 1, +2024-05-29T06:06:53.8696233Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8696348Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8696533Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWt9Q=" +2024-05-29T06:06:53.8696633Z ##[debug] }, +2024-05-29T06:06:53.8696727Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8696812Z ##[debug] { +2024-05-29T06:06:53.8696948Z ##[debug] "databaseId": 25536411604, +2024-05-29T06:06:53.8697048Z ##[debug] "name": "wait", +2024-05-29T06:06:53.8697168Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8697558Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", +2024-05-29T06:06:53.8697681Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8697774Z ##[debug] } +2024-05-29T06:06:53.8697857Z ##[debug] ] +2024-05-29T06:06:53.8697946Z ##[debug] } +2024-05-29T06:06:53.8698041Z ##[debug] }, +2024-05-29T06:06:53.8698240Z ##[debug] "workflow": { +2024-05-29T06:06:53.8698353Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:53.8698637Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:53.8698726Z ##[debug] }, +2024-05-29T06:06:53.8698823Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8698942Z ##[debug] "databaseId": 9281068685, +2024-05-29T06:06:53.8699050Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8699152Z ##[debug] "workflow": { +2024-05-29T06:06:53.8699263Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:53.8699543Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:53.8699634Z ##[debug] } +2024-05-29T06:06:53.8699722Z ##[debug] } +2024-05-29T06:06:53.8699806Z ##[debug] }, +2024-05-29T06:06:53.8699901Z ##[debug] { +2024-05-29T06:06:53.8699997Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8700111Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:53.8700225Z ##[debug] "name": "default_logic", +2024-05-29T06:06:53.8700330Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8700707Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:53.8700822Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8700905Z ##[debug] }, +2024-05-29T06:06:53.8701009Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8701111Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8701221Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:53.8701328Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8701445Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:53.8701560Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8701662Z ##[debug] "workflow": { +2024-05-29T06:06:53.8701882Z ##[debug] "name": "Itself", +2024-05-29T06:06:53.8702147Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:53.8702241Z ##[debug] } +2024-05-29T06:06:53.8702428Z ##[debug] }, +2024-05-29T06:06:53.8702532Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8702630Z ##[debug] "totalCount": 7, +2024-05-29T06:06:53.8702724Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8702846Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8703029Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:53.8703114Z ##[debug] }, +2024-05-29T06:06:53.8703214Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8703297Z ##[debug] { +2024-05-29T06:06:53.8703422Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:53.8703553Z ##[debug] "name": "default_logic", +2024-05-29T06:06:53.8703679Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8704058Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:53.8704180Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8704271Z ##[debug] }, +2024-05-29T06:06:53.8704364Z ##[debug] { +2024-05-29T06:06:53.8704488Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:53.8704609Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:53.8704732Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8705102Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:53.8705224Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8705310Z ##[debug] }, +2024-05-29T06:06:53.8705394Z ##[debug] { +2024-05-29T06:06:53.8705518Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:53.8705694Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:53.8705809Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8706169Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:53.8706292Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8706378Z ##[debug] }, +2024-05-29T06:06:53.8706469Z ##[debug] { +2024-05-29T06:06:53.8706587Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:53.8706700Z ##[debug] "name": "skip-list", +2024-05-29T06:06:53.8706816Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8707183Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:53.8707311Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8707397Z ##[debug] }, +2024-05-29T06:06:53.8707485Z ##[debug] { +2024-05-29T06:06:53.8707612Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:53.8707812Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:53.8707932Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8708398Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:53.8708518Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8708613Z ##[debug] }, +2024-05-29T06:06:53.8708699Z ##[debug] { +2024-05-29T06:06:53.8708819Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:53.8709052Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:53.8709169Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8709542Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:53.8709784Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8709874Z ##[debug] }, +2024-05-29T06:06:53.8709964Z ##[debug] { +2024-05-29T06:06:53.8710085Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:53.8710306Z ##[debug] "name": "wait-list", +2024-05-29T06:06:53.8710428Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8710786Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:53.8710905Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8710997Z ##[debug] } +2024-05-29T06:06:53.8711083Z ##[debug] ] +2024-05-29T06:06:53.8711174Z ##[debug] } +2024-05-29T06:06:53.8711257Z ##[debug] }, +2024-05-29T06:06:53.8711350Z ##[debug] "workflow": { +2024-05-29T06:06:53.8711456Z ##[debug] "name": "Itself", +2024-05-29T06:06:53.8711719Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:53.8711805Z ##[debug] }, +2024-05-29T06:06:53.8711914Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8712023Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:53.8712132Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8712243Z ##[debug] "workflow": { +2024-05-29T06:06:53.8712341Z ##[debug] "name": "Itself", +2024-05-29T06:06:53.8712606Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:53.8712692Z ##[debug] } +2024-05-29T06:06:53.8712780Z ##[debug] } +2024-05-29T06:06:53.8712872Z ##[debug] }, +2024-05-29T06:06:53.8712956Z ##[debug] { +2024-05-29T06:06:53.8713050Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8713167Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:53.8713280Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:53.8713385Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8713766Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:53.8713873Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8713960Z ##[debug] }, +2024-05-29T06:06:53.8714065Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8714176Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8714285Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:53.8714383Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8714503Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:53.8714613Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8714707Z ##[debug] "workflow": { +2024-05-29T06:06:53.8714811Z ##[debug] "name": "Itself", +2024-05-29T06:06:53.8715073Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:53.8715158Z ##[debug] } +2024-05-29T06:06:53.8715246Z ##[debug] }, +2024-05-29T06:06:53.8715343Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8715446Z ##[debug] "totalCount": 7, +2024-05-29T06:06:53.8715541Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8715652Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8715839Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:53.8715928Z ##[debug] }, +2024-05-29T06:06:53.8716019Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8716108Z ##[debug] { +2024-05-29T06:06:53.8716231Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:53.8716353Z ##[debug] "name": "default_logic", +2024-05-29T06:06:53.8716476Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8716837Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:53.8716963Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8717048Z ##[debug] }, +2024-05-29T06:06:53.8717220Z ##[debug] { +2024-05-29T06:06:53.8717348Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:53.8717469Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:53.8717583Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8718016Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:53.8718232Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8718331Z ##[debug] }, +2024-05-29T06:06:53.8718414Z ##[debug] { +2024-05-29T06:06:53.8718531Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:53.8718710Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:53.8718823Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8719170Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:53.8719298Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8719383Z ##[debug] }, +2024-05-29T06:06:53.8719466Z ##[debug] { +2024-05-29T06:06:53.8719598Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:53.8719714Z ##[debug] "name": "skip-list", +2024-05-29T06:06:53.8719841Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8720212Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:53.8720332Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8720422Z ##[debug] }, +2024-05-29T06:06:53.8720509Z ##[debug] { +2024-05-29T06:06:53.8720628Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:53.8720832Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:53.8720949Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8721311Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:53.8721429Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8721514Z ##[debug] }, +2024-05-29T06:06:53.8721607Z ##[debug] { +2024-05-29T06:06:53.8721725Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:53.8721947Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:53.8722070Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8722426Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:53.8722548Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8722633Z ##[debug] }, +2024-05-29T06:06:53.8722716Z ##[debug] { +2024-05-29T06:06:53.8722839Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:53.8722952Z ##[debug] "name": "wait-list", +2024-05-29T06:06:53.8723066Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8723437Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:53.8723558Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8723640Z ##[debug] } +2024-05-29T06:06:53.8723730Z ##[debug] ] +2024-05-29T06:06:53.8723813Z ##[debug] } +2024-05-29T06:06:53.8723902Z ##[debug] }, +2024-05-29T06:06:53.8723996Z ##[debug] "workflow": { +2024-05-29T06:06:53.8724095Z ##[debug] "name": "Itself", +2024-05-29T06:06:53.8724358Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:53.8724441Z ##[debug] }, +2024-05-29T06:06:53.8724539Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8724653Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:53.8724763Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8724997Z ##[debug] "workflow": { +2024-05-29T06:06:53.8725104Z ##[debug] "name": "Itself", +2024-05-29T06:06:53.8725358Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:53.8725447Z ##[debug] } +2024-05-29T06:06:53.8725649Z ##[debug] } +2024-05-29T06:06:53.8725731Z ##[debug] }, +2024-05-29T06:06:53.8725818Z ##[debug] { +2024-05-29T06:06:53.8725912Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8726021Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:53.8726192Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:53.8726294Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8726659Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:53.8726773Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8726855Z ##[debug] }, +2024-05-29T06:06:53.8726966Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8727075Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8727182Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:53.8727284Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8727399Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:53.8727516Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8727616Z ##[debug] "workflow": { +2024-05-29T06:06:53.8727715Z ##[debug] "name": "Itself", +2024-05-29T06:06:53.8727973Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:53.8728161Z ##[debug] } +2024-05-29T06:06:53.8728248Z ##[debug] }, +2024-05-29T06:06:53.8728342Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8728446Z ##[debug] "totalCount": 7, +2024-05-29T06:06:53.8728542Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8728660Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8728846Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:53.8728929Z ##[debug] }, +2024-05-29T06:06:53.8729025Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8729109Z ##[debug] { +2024-05-29T06:06:53.8729229Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:53.8729360Z ##[debug] "name": "default_logic", +2024-05-29T06:06:53.8729477Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8729835Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:53.8729959Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8730043Z ##[debug] }, +2024-05-29T06:06:53.8730132Z ##[debug] { +2024-05-29T06:06:53.8730253Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:53.8730372Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:53.8730491Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8730860Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:53.8730977Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8731068Z ##[debug] }, +2024-05-29T06:06:53.8731156Z ##[debug] { +2024-05-29T06:06:53.8731275Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:53.8731453Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:53.8731569Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8731936Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:53.8732054Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8732138Z ##[debug] }, +2024-05-29T06:06:53.8732227Z ##[debug] { +2024-05-29T06:06:53.8732345Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:53.8732572Z ##[debug] "name": "skip-list", +2024-05-29T06:06:53.8732697Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8733057Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:53.8733287Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8733372Z ##[debug] }, +2024-05-29T06:06:53.8733454Z ##[debug] { +2024-05-29T06:06:53.8733576Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:53.8733774Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:53.8733887Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8734240Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:53.8734354Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8734444Z ##[debug] }, +2024-05-29T06:06:53.8734527Z ##[debug] { +2024-05-29T06:06:53.8734648Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:53.8734873Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:53.8734990Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8735347Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:53.8735469Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8735553Z ##[debug] }, +2024-05-29T06:06:53.8735641Z ##[debug] { +2024-05-29T06:06:53.8735762Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:53.8735870Z ##[debug] "name": "wait-list", +2024-05-29T06:06:53.8735990Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8736337Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:53.8736459Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8736550Z ##[debug] } +2024-05-29T06:06:53.8736633Z ##[debug] ] +2024-05-29T06:06:53.8736716Z ##[debug] } +2024-05-29T06:06:53.8736808Z ##[debug] }, +2024-05-29T06:06:53.8736899Z ##[debug] "workflow": { +2024-05-29T06:06:53.8737005Z ##[debug] "name": "Itself", +2024-05-29T06:06:53.8737266Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:53.8737348Z ##[debug] }, +2024-05-29T06:06:53.8737451Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8737559Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:53.8737671Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8737772Z ##[debug] "workflow": { +2024-05-29T06:06:53.8737872Z ##[debug] "name": "Itself", +2024-05-29T06:06:53.8738224Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:53.8738317Z ##[debug] } +2024-05-29T06:06:53.8738406Z ##[debug] } +2024-05-29T06:06:53.8738487Z ##[debug] }, +2024-05-29T06:06:53.8738575Z ##[debug] { +2024-05-29T06:06:53.8738668Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8738783Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:53.8738890Z ##[debug] "name": "skip-list", +2024-05-29T06:06:53.8738995Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8739364Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:53.8739470Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8739555Z ##[debug] }, +2024-05-29T06:06:53.8739656Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8739757Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8739865Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:53.8739971Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8740088Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:53.8740324Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8740424Z ##[debug] "workflow": { +2024-05-29T06:06:53.8740523Z ##[debug] "name": "Itself", +2024-05-29T06:06:53.8740791Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:53.8740983Z ##[debug] } +2024-05-29T06:06:53.8741069Z ##[debug] }, +2024-05-29T06:06:53.8741170Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8741268Z ##[debug] "totalCount": 7, +2024-05-29T06:06:53.8741362Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8741480Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8741661Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:53.8741745Z ##[debug] }, +2024-05-29T06:06:53.8741846Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8741928Z ##[debug] { +2024-05-29T06:06:53.8742058Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:53.8742185Z ##[debug] "name": "default_logic", +2024-05-29T06:06:53.8742304Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8742665Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:53.8742794Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8742880Z ##[debug] }, +2024-05-29T06:06:53.8742969Z ##[debug] { +2024-05-29T06:06:53.8743089Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:53.8743217Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:53.8743334Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8743714Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:53.8743842Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8743928Z ##[debug] }, +2024-05-29T06:06:53.8744010Z ##[debug] { +2024-05-29T06:06:53.8744138Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:53.8744312Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:53.8744430Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8744805Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:53.8744925Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8745017Z ##[debug] }, +2024-05-29T06:06:53.8745100Z ##[debug] { +2024-05-29T06:06:53.8745219Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:53.8745336Z ##[debug] "name": "skip-list", +2024-05-29T06:06:53.8745452Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8745819Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:53.8745948Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8746032Z ##[debug] }, +2024-05-29T06:06:53.8746121Z ##[debug] { +2024-05-29T06:06:53.8746240Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:53.8746442Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:53.8746568Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8746926Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:53.8747041Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8747131Z ##[debug] }, +2024-05-29T06:06:53.8747213Z ##[debug] { +2024-05-29T06:06:53.8747336Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:53.8747563Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:53.8747678Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8748282Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:53.8748409Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8748494Z ##[debug] }, +2024-05-29T06:06:53.8748583Z ##[debug] { +2024-05-29T06:06:53.8748826Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:53.8748933Z ##[debug] "name": "wait-list", +2024-05-29T06:06:53.8749052Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8749407Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:53.8749530Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8749614Z ##[debug] } +2024-05-29T06:06:53.8749697Z ##[debug] ] +2024-05-29T06:06:53.8749788Z ##[debug] } +2024-05-29T06:06:53.8749870Z ##[debug] }, +2024-05-29T06:06:53.8749963Z ##[debug] "workflow": { +2024-05-29T06:06:53.8750072Z ##[debug] "name": "Itself", +2024-05-29T06:06:53.8750332Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:53.8750415Z ##[debug] }, +2024-05-29T06:06:53.8750520Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8750633Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:53.8750748Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8750841Z ##[debug] "workflow": { +2024-05-29T06:06:53.8750939Z ##[debug] "name": "Itself", +2024-05-29T06:06:53.8751201Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:53.8751284Z ##[debug] } +2024-05-29T06:06:53.8751368Z ##[debug] } +2024-05-29T06:06:53.8751456Z ##[debug] }, +2024-05-29T06:06:53.8751538Z ##[debug] { +2024-05-29T06:06:53.8751631Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8751746Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:53.8751949Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:53.8752059Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8752424Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:53.8752536Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8752623Z ##[debug] }, +2024-05-29T06:06:53.8752718Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8752819Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8752935Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:53.8753034Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8753149Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:53.8753266Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8753360Z ##[debug] "workflow": { +2024-05-29T06:06:53.8753465Z ##[debug] "name": "Itself", +2024-05-29T06:06:53.8753731Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:53.8753816Z ##[debug] } +2024-05-29T06:06:53.8753903Z ##[debug] }, +2024-05-29T06:06:53.8753997Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8754095Z ##[debug] "totalCount": 7, +2024-05-29T06:06:53.8754196Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8754313Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8754495Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:53.8754584Z ##[debug] }, +2024-05-29T06:06:53.8754675Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8754760Z ##[debug] { +2024-05-29T06:06:53.8754885Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:53.8755007Z ##[debug] "name": "default_logic", +2024-05-29T06:06:53.8755130Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8755489Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:53.8755715Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8755810Z ##[debug] }, +2024-05-29T06:06:53.8755893Z ##[debug] { +2024-05-29T06:06:53.8756012Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:53.8756222Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:53.8756336Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8756690Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:53.8756806Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8756891Z ##[debug] }, +2024-05-29T06:06:53.8757012Z ##[debug] { +2024-05-29T06:06:53.8757129Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:53.8757298Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:53.8757422Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8757773Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:53.8757896Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8757980Z ##[debug] }, +2024-05-29T06:06:53.8758163Z ##[debug] { +2024-05-29T06:06:53.8758287Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:53.8758396Z ##[debug] "name": "skip-list", +2024-05-29T06:06:53.8758511Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8758876Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:53.8758994Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8759079Z ##[debug] }, +2024-05-29T06:06:53.8759171Z ##[debug] { +2024-05-29T06:06:53.8759289Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:53.8759497Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:53.8759611Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8759956Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:53.8760081Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8760166Z ##[debug] }, +2024-05-29T06:06:53.8760248Z ##[debug] { +2024-05-29T06:06:53.8760370Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:53.8760594Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:53.8760714Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8761071Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:53.8761187Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8761276Z ##[debug] }, +2024-05-29T06:06:53.8761360Z ##[debug] { +2024-05-29T06:06:53.8761480Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:53.8761595Z ##[debug] "name": "wait-list", +2024-05-29T06:06:53.8761709Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8762083Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:53.8762201Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8762286Z ##[debug] } +2024-05-29T06:06:53.8762374Z ##[debug] ] +2024-05-29T06:06:53.8762457Z ##[debug] } +2024-05-29T06:06:53.8762539Z ##[debug] }, +2024-05-29T06:06:53.8762638Z ##[debug] "workflow": { +2024-05-29T06:06:53.8762734Z ##[debug] "name": "Itself", +2024-05-29T06:06:53.8762992Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:53.8763082Z ##[debug] }, +2024-05-29T06:06:53.8763178Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8763404Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:53.8763524Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8763617Z ##[debug] "workflow": { +2024-05-29T06:06:53.8763718Z ##[debug] "name": "Itself", +2024-05-29T06:06:53.8764078Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:53.8764161Z ##[debug] } +2024-05-29T06:06:53.8764249Z ##[debug] } +2024-05-29T06:06:53.8764335Z ##[debug] }, +2024-05-29T06:06:53.8764415Z ##[debug] { +2024-05-29T06:06:53.8764512Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8764621Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:53.8764842Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:53.8764954Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8765323Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:53.8765439Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8765521Z ##[debug] }, +2024-05-29T06:06:53.8765613Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8765725Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8765832Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:53.8765935Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8766055Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:53.8766165Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8766260Z ##[debug] "workflow": { +2024-05-29T06:06:53.8766365Z ##[debug] "name": "Itself", +2024-05-29T06:06:53.8766625Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:53.8766715Z ##[debug] } +2024-05-29T06:06:53.8766798Z ##[debug] }, +2024-05-29T06:06:53.8766892Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8766994Z ##[debug] "totalCount": 7, +2024-05-29T06:06:53.8767094Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8767213Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8767399Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:53.8767484Z ##[debug] }, +2024-05-29T06:06:53.8767583Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8767672Z ##[debug] { +2024-05-29T06:06:53.8767794Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:53.8767915Z ##[debug] "name": "default_logic", +2024-05-29T06:06:53.8768036Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8768503Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:53.8768629Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8768714Z ##[debug] }, +2024-05-29T06:06:53.8768797Z ##[debug] { +2024-05-29T06:06:53.8768923Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:53.8769049Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:53.8769162Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8769519Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:53.8769639Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8769729Z ##[debug] }, +2024-05-29T06:06:53.8769811Z ##[debug] { +2024-05-29T06:06:53.8769926Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:53.8770101Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:53.8770216Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8770567Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:53.8770689Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8770773Z ##[debug] }, +2024-05-29T06:06:53.8770979Z ##[debug] { +2024-05-29T06:06:53.8771099Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:53.8771210Z ##[debug] "name": "skip-list", +2024-05-29T06:06:53.8771333Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8771797Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:53.8771915Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8772005Z ##[debug] }, +2024-05-29T06:06:53.8772088Z ##[debug] { +2024-05-29T06:06:53.8772205Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:53.8772405Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:53.8772517Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8772873Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:53.8772993Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8773075Z ##[debug] }, +2024-05-29T06:06:53.8773162Z ##[debug] { +2024-05-29T06:06:53.8773278Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:53.8773497Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:53.8773623Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8773977Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:53.8774097Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8774181Z ##[debug] }, +2024-05-29T06:06:53.8774264Z ##[debug] { +2024-05-29T06:06:53.8774385Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:53.8774492Z ##[debug] "name": "wait-list", +2024-05-29T06:06:53.8774608Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8774982Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:53.8775097Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8775185Z ##[debug] } +2024-05-29T06:06:53.8775268Z ##[debug] ] +2024-05-29T06:06:53.8775357Z ##[debug] } +2024-05-29T06:06:53.8775443Z ##[debug] }, +2024-05-29T06:06:53.8775536Z ##[debug] "workflow": { +2024-05-29T06:06:53.8775632Z ##[debug] "name": "Itself", +2024-05-29T06:06:53.8775895Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:53.8775979Z ##[debug] }, +2024-05-29T06:06:53.8776077Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8776191Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:53.8776299Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8776393Z ##[debug] "workflow": { +2024-05-29T06:06:53.8776497Z ##[debug] "name": "Itself", +2024-05-29T06:06:53.8776757Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:53.8776847Z ##[debug] } +2024-05-29T06:06:53.8776931Z ##[debug] } +2024-05-29T06:06:53.8777013Z ##[debug] }, +2024-05-29T06:06:53.8777108Z ##[debug] { +2024-05-29T06:06:53.8777205Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8777313Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:53.8777421Z ##[debug] "name": "wait-list", +2024-05-29T06:06:53.8777524Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8777893Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:53.8778009Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8778186Z ##[debug] }, +2024-05-29T06:06:53.8778287Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8778390Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8778497Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:53.8778720Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8778840Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:53.8778950Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8779050Z ##[debug] "workflow": { +2024-05-29T06:06:53.8779273Z ##[debug] "name": "Itself", +2024-05-29T06:06:53.8779533Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:53.8779623Z ##[debug] } +2024-05-29T06:06:53.8779706Z ##[debug] }, +2024-05-29T06:06:53.8779800Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8779904Z ##[debug] "totalCount": 7, +2024-05-29T06:06:53.8779998Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8780116Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8780296Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:53.8780380Z ##[debug] }, +2024-05-29T06:06:53.8780477Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8780567Z ##[debug] { +2024-05-29T06:06:53.8780689Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:53.8780818Z ##[debug] "name": "default_logic", +2024-05-29T06:06:53.8780936Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8781302Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:53.8781427Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8781513Z ##[debug] }, +2024-05-29T06:06:53.8781601Z ##[debug] { +2024-05-29T06:06:53.8781720Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:53.8781840Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:53.8781964Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8782326Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:53.8782447Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8782538Z ##[debug] }, +2024-05-29T06:06:53.8782621Z ##[debug] { +2024-05-29T06:06:53.8782744Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:53.8782915Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:53.8783037Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8783395Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:53.8783510Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8783595Z ##[debug] }, +2024-05-29T06:06:53.8783686Z ##[debug] { +2024-05-29T06:06:53.8783805Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:53.8783912Z ##[debug] "name": "skip-list", +2024-05-29T06:06:53.8784032Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8784394Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:53.8784516Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8784602Z ##[debug] }, +2024-05-29T06:06:53.8784687Z ##[debug] { +2024-05-29T06:06:53.8784817Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:53.8785019Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:53.8785132Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8785490Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:53.8785603Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8785694Z ##[debug] }, +2024-05-29T06:06:53.8785778Z ##[debug] { +2024-05-29T06:06:53.8785895Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:53.8786214Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:53.8786332Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8786684Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:53.8786883Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8786969Z ##[debug] }, +2024-05-29T06:06:53.8787057Z ##[debug] { +2024-05-29T06:06:53.8787182Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:53.8787288Z ##[debug] "name": "wait-list", +2024-05-29T06:06:53.8787408Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8787761Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:53.8787878Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8787969Z ##[debug] } +2024-05-29T06:06:53.8788148Z ##[debug] ] +2024-05-29T06:06:53.8788237Z ##[debug] } +2024-05-29T06:06:53.8788328Z ##[debug] }, +2024-05-29T06:06:53.8788420Z ##[debug] "workflow": { +2024-05-29T06:06:53.8788523Z ##[debug] "name": "Itself", +2024-05-29T06:06:53.8788782Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:53.8788871Z ##[debug] }, +2024-05-29T06:06:53.8788974Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8789082Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:53.8789191Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8789290Z ##[debug] "workflow": { +2024-05-29T06:06:53.8789388Z ##[debug] "name": "Itself", +2024-05-29T06:06:53.8789646Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:53.8789735Z ##[debug] } +2024-05-29T06:06:53.8789817Z ##[debug] } +2024-05-29T06:06:53.8789905Z ##[debug] }, +2024-05-29T06:06:53.8789988Z ##[debug] { +2024-05-29T06:06:53.8790084Z ##[debug] "checkRun": { +2024-05-29T06:06:53.8790198Z ##[debug] "databaseId": 25536411358, +2024-05-29T06:06:53.8790321Z ##[debug] "name": "dependency-review", +2024-05-29T06:06:53.8790424Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8790801Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", +2024-05-29T06:06:53.8790913Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8790995Z ##[debug] }, +2024-05-29T06:06:53.8791094Z ##[debug] "checkSuite": { +2024-05-29T06:06:53.8791196Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8791303Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:53.8791406Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8791522Z ##[debug] "databaseId": 9281068690, +2024-05-29T06:06:53.8791636Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8791730Z ##[debug] "workflow": { +2024-05-29T06:06:53.8791858Z ##[debug] "name": "💂➕", +2024-05-29T06:06:53.8792181Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:53.8792264Z ##[debug] } +2024-05-29T06:06:53.8792348Z ##[debug] }, +2024-05-29T06:06:53.8792456Z ##[debug] "checkRuns": { +2024-05-29T06:06:53.8792554Z ##[debug] "totalCount": 1, +2024-05-29T06:06:53.8792650Z ##[debug] "pageInfo": { +2024-05-29T06:06:53.8792770Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:53.8792951Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtt4=" +2024-05-29T06:06:53.8793041Z ##[debug] }, +2024-05-29T06:06:53.8793133Z ##[debug] "nodes": [ +2024-05-29T06:06:53.8793215Z ##[debug] { +2024-05-29T06:06:53.8793345Z ##[debug] "databaseId": 25536411358, +2024-05-29T06:06:53.8793479Z ##[debug] "name": "dependency-review", +2024-05-29T06:06:53.8793598Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:53.8794098Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", +2024-05-29T06:06:53.8794219Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:53.8794307Z ##[debug] } +2024-05-29T06:06:53.8794507Z ##[debug] ] +2024-05-29T06:06:53.8794589Z ##[debug] } +2024-05-29T06:06:53.8794677Z ##[debug] }, +2024-05-29T06:06:53.8794768Z ##[debug] "workflow": { +2024-05-29T06:06:53.8794864Z ##[debug] "name": "💂➕", +2024-05-29T06:06:53.8795186Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:53.8795269Z ##[debug] }, +2024-05-29T06:06:53.8795366Z ##[debug] "workflowRun": { +2024-05-29T06:06:53.8795483Z ##[debug] "databaseId": 9281068690, +2024-05-29T06:06:53.8795592Z ##[debug] "event": "pull_request", +2024-05-29T06:06:53.8795687Z ##[debug] "workflow": { +2024-05-29T06:06:53.8795789Z ##[debug] "name": "💂➕", +2024-05-29T06:06:53.8796113Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:53.8796201Z ##[debug] } +2024-05-29T06:06:53.8796284Z ##[debug] } +2024-05-29T06:06:53.8796367Z ##[debug] } +2024-05-29T06:06:53.8796462Z ##[debug] ], +2024-05-29T06:06:53.8796581Z ##[debug] "elapsedMsec": 17580.706439999864 +2024-05-29T06:06:53.8796660Z ##[debug]} +2024-05-29T06:06:53.8798162Z GH-820-graceperiod.yml(quickstarter-success): [suiteStatus: QUEUED][suiteConclusion: (null)][runStatus: COMPLETED][runConclusion: SUCCESS][eventName: pull_request][runURL: https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631] +2024-05-29T06:06:53.8799254Z GH-820-graceperiod.yml(slowstarter-success): [suiteStatus: QUEUED][suiteConclusion: (null)][runStatus: QUEUED][runConclusion: (null)][eventName: pull_request][runURL: https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021] +2024-05-29T06:06:53.8800428Z ##[debug]{ +2024-05-29T06:06:53.8800578Z ##[debug] "label": "filtered", +2024-05-29T06:06:53.8800716Z ##[debug] "report": { +2024-05-29T06:06:53.8800872Z ##[debug] "progress": "in_progress", +2024-05-29T06:06:53.8801032Z ##[debug] "conclusion": "acceptable", +2024-05-29T06:06:53.8801184Z ##[debug] "summaries": [ +2024-05-29T06:06:53.8801308Z ##[debug] { +2024-05-29T06:06:53.8801456Z ##[debug] "acceptable": true, +2024-05-29T06:06:53.8801673Z ##[debug] "workflowPath": "GH-820-graceperiod.yml", +2024-05-29T06:06:53.8801837Z ##[debug] "isSameWorkflow": true, +2024-05-29T06:06:53.8802015Z ##[debug] "eventName": "pull_request", +2024-05-29T06:06:53.8802205Z ##[debug] "checkSuiteStatus": "QUEUED", +2024-05-29T06:06:53.8802385Z ##[debug] "checkSuiteConclusion": null, +2024-05-29T06:06:53.8802559Z ##[debug] "runDatabaseId": 25536443631, +2024-05-29T06:06:53.8802785Z ##[debug] "jobName": "quickstarter-success", +2024-05-29T06:06:53.8803239Z ##[debug] "checkRunUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:53.8803364Z ##[debug] "runStatus": "COMPLETED", +2024-05-29T06:06:53.8803483Z ##[debug] "runConclusion": "SUCCESS" +2024-05-29T06:06:53.8803569Z ##[debug] }, +2024-05-29T06:06:53.8803664Z ##[debug] { +2024-05-29T06:06:53.8803768Z ##[debug] "acceptable": false, +2024-05-29T06:06:53.8803915Z ##[debug] "workflowPath": "GH-820-graceperiod.yml", +2024-05-29T06:06:53.8804031Z ##[debug] "isSameWorkflow": true, +2024-05-29T06:06:53.8804155Z ##[debug] "eventName": "pull_request", +2024-05-29T06:06:53.8804286Z ##[debug] "checkSuiteStatus": "QUEUED", +2024-05-29T06:06:53.8804413Z ##[debug] "checkSuiteConclusion": null, +2024-05-29T06:06:53.8804530Z ##[debug] "runDatabaseId": 25536456021, +2024-05-29T06:06:53.8804675Z ##[debug] "jobName": "slowstarter-success", +2024-05-29T06:06:53.8805248Z ##[debug] "checkRunUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:06:53.8805462Z ##[debug] "runStatus": "QUEUED", +2024-05-29T06:06:53.8805585Z ##[debug] "runConclusion": null +2024-05-29T06:06:53.8805669Z ##[debug] } +2024-05-29T06:06:53.8805752Z ##[debug] ] +2024-05-29T06:06:53.8805949Z ##[debug] } +2024-05-29T06:06:53.8806030Z ##[debug]} +2024-05-29T06:06:53.8806145Z some jobs still in progress +2024-05-29T06:06:53.8806456Z ::endgroup:: +2024-05-29T06:06:53.8806560Z ##[endgroup] +2024-05-29T06:06:53.8806781Z Wait about 5 seconds before next polling to reduce API calls. +2024-05-29T06:06:58.8202284Z ::group::Polling 5: 2024-05-29T06:06:58.819Z +2024-05-29T06:06:58.8203248Z ##[group]Polling 5: 2024-05-29T06:06:58.819Z +2024-05-29T06:06:59.2460213Z ##[debug]{ +2024-05-29T06:06:59.2460650Z ##[debug] "label": "rawdata", +2024-05-29T06:06:59.2461121Z ##[debug] "checks": [ +2024-05-29T06:06:59.2461530Z ##[debug] { +2024-05-29T06:06:59.2461897Z ##[debug] "checkRun": { +2024-05-29T06:06:59.2462419Z ##[debug] "databaseId": 25536410411, +2024-05-29T06:06:59.2462974Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:59.2463502Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2464594Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", +2024-05-29T06:06:59.2465663Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2466156Z ##[debug] }, +2024-05-29T06:06:59.2466494Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.2466802Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2467132Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:59.2467465Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2467784Z ##[debug] "databaseId": 9281068413, +2024-05-29T06:06:59.2468372Z ##[debug] "event": "push", +2024-05-29T06:06:59.2468695Z ##[debug] "workflow": { +2024-05-29T06:06:59.2469020Z ##[debug] "name": "💧", +2024-05-29T06:06:59.2469519Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:59.2470011Z ##[debug] } +2024-05-29T06:06:59.2470250Z ##[debug] }, +2024-05-29T06:06:59.2470484Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.2470791Z ##[debug] "totalCount": 1, +2024-05-29T06:06:59.2471111Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.2471420Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.2471832Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWsys=" +2024-05-29T06:06:59.2472224Z ##[debug] }, +2024-05-29T06:06:59.2472473Z ##[debug] "nodes": [ +2024-05-29T06:06:59.2472735Z ##[debug] { +2024-05-29T06:06:59.2473014Z ##[debug] "databaseId": 25536410411, +2024-05-29T06:06:59.2473366Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:59.2473711Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2474337Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", +2024-05-29T06:06:59.2474955Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2475273Z ##[debug] } +2024-05-29T06:06:59.2475510Z ##[debug] ] +2024-05-29T06:06:59.2475746Z ##[debug] } +2024-05-29T06:06:59.2475969Z ##[debug] }, +2024-05-29T06:06:59.2476202Z ##[debug] "workflow": { +2024-05-29T06:06:59.2476478Z ##[debug] "name": "💧", +2024-05-29T06:06:59.2476922Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:59.2477397Z ##[debug] }, +2024-05-29T06:06:59.2477638Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2477937Z ##[debug] "databaseId": 9281068413, +2024-05-29T06:06:59.2478540Z ##[debug] "event": "push", +2024-05-29T06:06:59.2478831Z ##[debug] "workflow": { +2024-05-29T06:06:59.2479111Z ##[debug] "name": "💧", +2024-05-29T06:06:59.2479956Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:59.2480443Z ##[debug] } +2024-05-29T06:06:59.2480667Z ##[debug] } +2024-05-29T06:06:59.2480882Z ##[debug] }, +2024-05-29T06:06:59.2481097Z ##[debug] { +2024-05-29T06:06:59.2481323Z ##[debug] "checkRun": { +2024-05-29T06:06:59.2481747Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:59.2482072Z ##[debug] "name": "build", +2024-05-29T06:06:59.2482371Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2482956Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:59.2483564Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2483870Z ##[debug] }, +2024-05-29T06:06:59.2484098Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.2484386Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2484714Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:59.2485027Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2485346Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:59.2485696Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2486014Z ##[debug] "workflow": { +2024-05-29T06:06:59.2486318Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:59.2486807Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:59.2487263Z ##[debug] } +2024-05-29T06:06:59.2487499Z ##[debug] }, +2024-05-29T06:06:59.2487742Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.2488034Z ##[debug] "totalCount": 3, +2024-05-29T06:06:59.2488548Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.2488856Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.2489269Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:59.2489654Z ##[debug] }, +2024-05-29T06:06:59.2489907Z ##[debug] "nodes": [ +2024-05-29T06:06:59.2490179Z ##[debug] { +2024-05-29T06:06:59.2490458Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:59.2490805Z ##[debug] "name": "build", +2024-05-29T06:06:59.2491144Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2491753Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:59.2492375Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2492704Z ##[debug] }, +2024-05-29T06:06:59.2492946Z ##[debug] { +2024-05-29T06:06:59.2493228Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:59.2493567Z ##[debug] "name": "test", +2024-05-29T06:06:59.2493894Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2494499Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:59.2495100Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2495424Z ##[debug] }, +2024-05-29T06:06:59.2495659Z ##[debug] { +2024-05-29T06:06:59.2495934Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:59.2496283Z ##[debug] "name": "typecheck", +2024-05-29T06:06:59.2496619Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2497223Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:59.2497831Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2498252Z ##[debug] } +2024-05-29T06:06:59.2498490Z ##[debug] ] +2024-05-29T06:06:59.2498727Z ##[debug] } +2024-05-29T06:06:59.2498948Z ##[debug] }, +2024-05-29T06:06:59.2499179Z ##[debug] "workflow": { +2024-05-29T06:06:59.2499467Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:59.2499918Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:59.2500372Z ##[debug] }, +2024-05-29T06:06:59.2500773Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2501077Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:59.2501415Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2501740Z ##[debug] "workflow": { +2024-05-29T06:06:59.2502033Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:59.2502611Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:59.2503070Z ##[debug] } +2024-05-29T06:06:59.2503296Z ##[debug] } +2024-05-29T06:06:59.2503513Z ##[debug] }, +2024-05-29T06:06:59.2503727Z ##[debug] { +2024-05-29T06:06:59.2503953Z ##[debug] "checkRun": { +2024-05-29T06:06:59.2504241Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:59.2504568Z ##[debug] "name": "test", +2024-05-29T06:06:59.2504865Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2505454Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:59.2506067Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2506373Z ##[debug] }, +2024-05-29T06:06:59.2506603Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.2506896Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2507224Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:59.2507552Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2507880Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:59.2508368Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2508689Z ##[debug] "workflow": { +2024-05-29T06:06:59.2509008Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:59.2509507Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:59.2509976Z ##[debug] } +2024-05-29T06:06:59.2510207Z ##[debug] }, +2024-05-29T06:06:59.2510448Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.2510746Z ##[debug] "totalCount": 3, +2024-05-29T06:06:59.2511052Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.2511357Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.2511770Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:59.2512155Z ##[debug] }, +2024-05-29T06:06:59.2512401Z ##[debug] "nodes": [ +2024-05-29T06:06:59.2512675Z ##[debug] { +2024-05-29T06:06:59.2512953Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:59.2513304Z ##[debug] "name": "build", +2024-05-29T06:06:59.2513638Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2514249Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:59.2514867Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2515192Z ##[debug] }, +2024-05-29T06:06:59.2515427Z ##[debug] { +2024-05-29T06:06:59.2515707Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:59.2516049Z ##[debug] "name": "test", +2024-05-29T06:06:59.2516371Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2516971Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:59.2517577Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2517907Z ##[debug] }, +2024-05-29T06:06:59.2518284Z ##[debug] { +2024-05-29T06:06:59.2518554Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:59.2518906Z ##[debug] "name": "typecheck", +2024-05-29T06:06:59.2519246Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2519840Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:59.2520437Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2520747Z ##[debug] } +2024-05-29T06:06:59.2520984Z ##[debug] ] +2024-05-29T06:06:59.2521400Z ##[debug] } +2024-05-29T06:06:59.2521625Z ##[debug] }, +2024-05-29T06:06:59.2521860Z ##[debug] "workflow": { +2024-05-29T06:06:59.2522142Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:59.2522597Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:59.2523168Z ##[debug] }, +2024-05-29T06:06:59.2523402Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2523705Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:59.2524038Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2524358Z ##[debug] "workflow": { +2024-05-29T06:06:59.2524646Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:59.2525105Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:59.2525561Z ##[debug] } +2024-05-29T06:06:59.2525785Z ##[debug] } +2024-05-29T06:06:59.2525997Z ##[debug] }, +2024-05-29T06:06:59.2526213Z ##[debug] { +2024-05-29T06:06:59.2526441Z ##[debug] "checkRun": { +2024-05-29T06:06:59.2526723Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:59.2527058Z ##[debug] "name": "typecheck", +2024-05-29T06:06:59.2527378Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2527962Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:59.2528669Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2528978Z ##[debug] }, +2024-05-29T06:06:59.2529205Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.2529492Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2529821Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:59.2530135Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2530447Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:59.2530794Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2531112Z ##[debug] "workflow": { +2024-05-29T06:06:59.2531414Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:59.2531895Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:59.2532348Z ##[debug] } +2024-05-29T06:06:59.2532579Z ##[debug] }, +2024-05-29T06:06:59.2532816Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.2533114Z ##[debug] "totalCount": 3, +2024-05-29T06:06:59.2533411Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.2533712Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.2534120Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:59.2534502Z ##[debug] }, +2024-05-29T06:06:59.2534745Z ##[debug] "nodes": [ +2024-05-29T06:06:59.2535010Z ##[debug] { +2024-05-29T06:06:59.2535286Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:59.2535635Z ##[debug] "name": "build", +2024-05-29T06:06:59.2535967Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2536574Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:59.2537183Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2537506Z ##[debug] }, +2024-05-29T06:06:59.2537740Z ##[debug] { +2024-05-29T06:06:59.2538019Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:59.2538458Z ##[debug] "name": "test", +2024-05-29T06:06:59.2538787Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2539380Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:59.2539980Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2540305Z ##[debug] }, +2024-05-29T06:06:59.2540539Z ##[debug] { +2024-05-29T06:06:59.2540810Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:59.2541166Z ##[debug] "name": "typecheck", +2024-05-29T06:06:59.2541622Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2542221Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:59.2542818Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2543235Z ##[debug] } +2024-05-29T06:06:59.2543476Z ##[debug] ] +2024-05-29T06:06:59.2543708Z ##[debug] } +2024-05-29T06:06:59.2543926Z ##[debug] }, +2024-05-29T06:06:59.2544157Z ##[debug] "workflow": { +2024-05-29T06:06:59.2544445Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:59.2544899Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:59.2545353Z ##[debug] }, +2024-05-29T06:06:59.2545585Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2545889Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:59.2546223Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2546541Z ##[debug] "workflow": { +2024-05-29T06:06:59.2546837Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:59.2547295Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:59.2547749Z ##[debug] } +2024-05-29T06:06:59.2547971Z ##[debug] } +2024-05-29T06:06:59.2548288Z ##[debug] }, +2024-05-29T06:06:59.2548507Z ##[debug] { +2024-05-29T06:06:59.2548731Z ##[debug] "checkRun": { +2024-05-29T06:06:59.2549016Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:59.2549345Z ##[debug] "name": "typos", +2024-05-29T06:06:59.2549646Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2550232Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:59.2550829Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2551133Z ##[debug] }, +2024-05-29T06:06:59.2551362Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.2551649Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2551984Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:59.2552298Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2552612Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:59.2552960Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2553285Z ##[debug] "workflow": { +2024-05-29T06:06:59.2553599Z ##[debug] "name": "👕", +2024-05-29T06:06:59.2554054Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:59.2554523Z ##[debug] } +2024-05-29T06:06:59.2554749Z ##[debug] }, +2024-05-29T06:06:59.2554987Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.2555279Z ##[debug] "totalCount": 4, +2024-05-29T06:06:59.2555574Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.2555878Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.2556286Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:59.2556667Z ##[debug] }, +2024-05-29T06:06:59.2556916Z ##[debug] "nodes": [ +2024-05-29T06:06:59.2557180Z ##[debug] { +2024-05-29T06:06:59.2557453Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:59.2557794Z ##[debug] "name": "typos", +2024-05-29T06:06:59.2558226Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2558829Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:59.2559440Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2559764Z ##[debug] }, +2024-05-29T06:06:59.2559999Z ##[debug] { +2024-05-29T06:06:59.2560277Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:59.2560623Z ##[debug] "name": "dprint", +2024-05-29T06:06:59.2560956Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2561543Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:59.2562276Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2562596Z ##[debug] }, +2024-05-29T06:06:59.2562830Z ##[debug] { +2024-05-29T06:06:59.2563105Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:59.2563563Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:59.2563941Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2564533Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:59.2565132Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2565445Z ##[debug] }, +2024-05-29T06:06:59.2565682Z ##[debug] { +2024-05-29T06:06:59.2565952Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:59.2566296Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:59.2566624Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2567378Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:59.2568216Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2578943Z ##[debug] } +2024-05-29T06:06:59.2579341Z ##[debug] ] +2024-05-29T06:06:59.2579611Z ##[debug] } +2024-05-29T06:06:59.2579851Z ##[debug] }, +2024-05-29T06:06:59.2580084Z ##[debug] "workflow": { +2024-05-29T06:06:59.2580384Z ##[debug] "name": "👕", +2024-05-29T06:06:59.2580843Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:59.2581322Z ##[debug] }, +2024-05-29T06:06:59.2581576Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2581891Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:59.2582231Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2582560Z ##[debug] "workflow": { +2024-05-29T06:06:59.2582847Z ##[debug] "name": "👕", +2024-05-29T06:06:59.2583315Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:59.2583777Z ##[debug] } +2024-05-29T06:06:59.2584011Z ##[debug] } +2024-05-29T06:06:59.2584234Z ##[debug] }, +2024-05-29T06:06:59.2584446Z ##[debug] { +2024-05-29T06:06:59.2584692Z ##[debug] "checkRun": { +2024-05-29T06:06:59.2584994Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:59.2585319Z ##[debug] "name": "dprint", +2024-05-29T06:06:59.2585628Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2586237Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:59.2586845Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2587156Z ##[debug] }, +2024-05-29T06:06:59.2587398Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.2587697Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2588033Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:59.2588482Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2588795Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:59.2589144Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2589473Z ##[debug] "workflow": { +2024-05-29T06:06:59.2589762Z ##[debug] "name": "👕", +2024-05-29T06:06:59.2590227Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:59.2590700Z ##[debug] } +2024-05-29T06:06:59.2590932Z ##[debug] }, +2024-05-29T06:06:59.2591174Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.2591475Z ##[debug] "totalCount": 4, +2024-05-29T06:06:59.2591775Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.2592090Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.2592518Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:59.2592919Z ##[debug] }, +2024-05-29T06:06:59.2593173Z ##[debug] "nodes": [ +2024-05-29T06:06:59.2593721Z ##[debug] { +2024-05-29T06:06:59.2594022Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:59.2594372Z ##[debug] "name": "typos", +2024-05-29T06:06:59.2594724Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2595343Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:59.2596076Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2596406Z ##[debug] }, +2024-05-29T06:06:59.2596662Z ##[debug] { +2024-05-29T06:06:59.2596945Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:59.2597311Z ##[debug] "name": "dprint", +2024-05-29T06:06:59.2597663Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2598384Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:59.2598995Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2599330Z ##[debug] }, +2024-05-29T06:06:59.2599580Z ##[debug] { +2024-05-29T06:06:59.2599863Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:59.2600218Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:59.2600573Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2601163Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:59.2601782Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2602111Z ##[debug] }, +2024-05-29T06:06:59.2602347Z ##[debug] { +2024-05-29T06:06:59.2602625Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:59.2602973Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:59.2603305Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2603917Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:59.2604533Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2604861Z ##[debug] } +2024-05-29T06:06:59.2605091Z ##[debug] ] +2024-05-29T06:06:59.2605328Z ##[debug] } +2024-05-29T06:06:59.2605554Z ##[debug] }, +2024-05-29T06:06:59.2605788Z ##[debug] "workflow": { +2024-05-29T06:06:59.2606067Z ##[debug] "name": "👕", +2024-05-29T06:06:59.2606509Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:59.2606968Z ##[debug] }, +2024-05-29T06:06:59.2607205Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2607518Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:59.2607853Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2608317Z ##[debug] "workflow": { +2024-05-29T06:06:59.2608603Z ##[debug] "name": "👕", +2024-05-29T06:06:59.2609042Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:59.2609515Z ##[debug] } +2024-05-29T06:06:59.2609742Z ##[debug] } +2024-05-29T06:06:59.2609960Z ##[debug] }, +2024-05-29T06:06:59.2610179Z ##[debug] { +2024-05-29T06:06:59.2610408Z ##[debug] "checkRun": { +2024-05-29T06:06:59.2610691Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:59.2611035Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:59.2611355Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2611942Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:59.2612540Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2612845Z ##[debug] }, +2024-05-29T06:06:59.2613080Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.2613363Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2613694Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:59.2614019Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2614452Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:59.2614810Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2615134Z ##[debug] "workflow": { +2024-05-29T06:06:59.2615429Z ##[debug] "name": "👕", +2024-05-29T06:06:59.2615878Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:59.2616473Z ##[debug] } +2024-05-29T06:06:59.2616709Z ##[debug] }, +2024-05-29T06:06:59.2616941Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.2617236Z ##[debug] "totalCount": 4, +2024-05-29T06:06:59.2617539Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.2617841Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.2618352Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:59.2618743Z ##[debug] }, +2024-05-29T06:06:59.2618982Z ##[debug] "nodes": [ +2024-05-29T06:06:59.2619252Z ##[debug] { +2024-05-29T06:06:59.2619530Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:59.2619881Z ##[debug] "name": "typos", +2024-05-29T06:06:59.2620210Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2620822Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:59.2621438Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2621759Z ##[debug] }, +2024-05-29T06:06:59.2622000Z ##[debug] { +2024-05-29T06:06:59.2622277Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:59.2622613Z ##[debug] "name": "dprint", +2024-05-29T06:06:59.2622957Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2623553Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:59.2624143Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2624464Z ##[debug] }, +2024-05-29T06:06:59.2624710Z ##[debug] { +2024-05-29T06:06:59.2624981Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:59.2625321Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:59.2625667Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2626251Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:59.2626844Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2627167Z ##[debug] }, +2024-05-29T06:06:59.2627403Z ##[debug] { +2024-05-29T06:06:59.2627665Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:59.2628015Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:59.2628454Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2629044Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:59.2629647Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2629973Z ##[debug] } +2024-05-29T06:06:59.2630210Z ##[debug] ] +2024-05-29T06:06:59.2630457Z ##[debug] } +2024-05-29T06:06:59.2630685Z ##[debug] }, +2024-05-29T06:06:59.2630917Z ##[debug] "workflow": { +2024-05-29T06:06:59.2631195Z ##[debug] "name": "👕", +2024-05-29T06:06:59.2631628Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:59.2632091Z ##[debug] }, +2024-05-29T06:06:59.2632318Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2632622Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:59.2632958Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2633269Z ##[debug] "workflow": { +2024-05-29T06:06:59.2633547Z ##[debug] "name": "👕", +2024-05-29T06:06:59.2633991Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:59.2634447Z ##[debug] } +2024-05-29T06:06:59.2634669Z ##[debug] } +2024-05-29T06:06:59.2635129Z ##[debug] }, +2024-05-29T06:06:59.2635351Z ##[debug] { +2024-05-29T06:06:59.2635580Z ##[debug] "checkRun": { +2024-05-29T06:06:59.2635869Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:59.2636191Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:59.2636616Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2637206Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:59.2637791Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2638191Z ##[debug] }, +2024-05-29T06:06:59.2638427Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.2638712Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2639039Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:59.2639362Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2639676Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:59.2640014Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2640348Z ##[debug] "workflow": { +2024-05-29T06:06:59.2640637Z ##[debug] "name": "👕", +2024-05-29T06:06:59.2641086Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:59.2641549Z ##[debug] } +2024-05-29T06:06:59.2641789Z ##[debug] }, +2024-05-29T06:06:59.2642022Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.2642311Z ##[debug] "totalCount": 4, +2024-05-29T06:06:59.2642612Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.2642911Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.2643323Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:59.2643715Z ##[debug] }, +2024-05-29T06:06:59.2643956Z ##[debug] "nodes": [ +2024-05-29T06:06:59.2644224Z ##[debug] { +2024-05-29T06:06:59.2644501Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:59.2644839Z ##[debug] "name": "typos", +2024-05-29T06:06:59.2645183Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2645786Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:59.2646390Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2646716Z ##[debug] }, +2024-05-29T06:06:59.2646955Z ##[debug] { +2024-05-29T06:06:59.2647228Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:59.2647564Z ##[debug] "name": "dprint", +2024-05-29T06:06:59.2647895Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2648585Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:59.2649178Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2649499Z ##[debug] }, +2024-05-29T06:06:59.2649737Z ##[debug] { +2024-05-29T06:06:59.2650004Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:59.2650361Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:59.2650708Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2651286Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:59.2651881Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2652203Z ##[debug] }, +2024-05-29T06:06:59.2652439Z ##[debug] { +2024-05-29T06:06:59.2652700Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:59.2653039Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:59.2653375Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2653962Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:59.2654569Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2654891Z ##[debug] } +2024-05-29T06:06:59.2655244Z ##[debug] ] +2024-05-29T06:06:59.2655481Z ##[debug] } +2024-05-29T06:06:59.2655703Z ##[debug] }, +2024-05-29T06:06:59.2655928Z ##[debug] "workflow": { +2024-05-29T06:06:59.2656201Z ##[debug] "name": "👕", +2024-05-29T06:06:59.2656637Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:59.2657202Z ##[debug] }, +2024-05-29T06:06:59.2657434Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2657741Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:59.2658168Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2658488Z ##[debug] "workflow": { +2024-05-29T06:06:59.2658773Z ##[debug] "name": "👕", +2024-05-29T06:06:59.2659215Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:59.2659673Z ##[debug] } +2024-05-29T06:06:59.2659897Z ##[debug] } +2024-05-29T06:06:59.2660120Z ##[debug] }, +2024-05-29T06:06:59.2660334Z ##[debug] { +2024-05-29T06:06:59.2660570Z ##[debug] "checkRun": { +2024-05-29T06:06:59.2660861Z ##[debug] "databaseId": 25536411289, +2024-05-29T06:06:59.2661184Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:59.2661504Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2662133Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", +2024-05-29T06:06:59.2662738Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2663051Z ##[debug] }, +2024-05-29T06:06:59.2663286Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.2663572Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2663941Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:59.2664265Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2664575Z ##[debug] "databaseId": 9281068678, +2024-05-29T06:06:59.2664926Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2665253Z ##[debug] "workflow": { +2024-05-29T06:06:59.2665543Z ##[debug] "name": "💧", +2024-05-29T06:06:59.2666025Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:59.2666513Z ##[debug] } +2024-05-29T06:06:59.2666740Z ##[debug] }, +2024-05-29T06:06:59.2666994Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.2667283Z ##[debug] "totalCount": 1, +2024-05-29T06:06:59.2667581Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.2667885Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.2668429Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpk=" +2024-05-29T06:06:59.2668825Z ##[debug] }, +2024-05-29T06:06:59.2669067Z ##[debug] "nodes": [ +2024-05-29T06:06:59.2669333Z ##[debug] { +2024-05-29T06:06:59.2669613Z ##[debug] "databaseId": 25536411289, +2024-05-29T06:06:59.2669964Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:59.2670306Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2670917Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", +2024-05-29T06:06:59.2671522Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2671847Z ##[debug] } +2024-05-29T06:06:59.2672087Z ##[debug] ] +2024-05-29T06:06:59.2672314Z ##[debug] } +2024-05-29T06:06:59.2672539Z ##[debug] }, +2024-05-29T06:06:59.2672770Z ##[debug] "workflow": { +2024-05-29T06:06:59.2673042Z ##[debug] "name": "💧", +2024-05-29T06:06:59.2673491Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:59.2673974Z ##[debug] }, +2024-05-29T06:06:59.2674205Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2674510Z ##[debug] "databaseId": 9281068678, +2024-05-29T06:06:59.2674842Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2675156Z ##[debug] "workflow": { +2024-05-29T06:06:59.2675437Z ##[debug] "name": "💧", +2024-05-29T06:06:59.2676031Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:59.2676514Z ##[debug] } +2024-05-29T06:06:59.2676734Z ##[debug] } +2024-05-29T06:06:59.2676954Z ##[debug] }, +2024-05-29T06:06:59.2677279Z ##[debug] { +2024-05-29T06:06:59.2677498Z ##[debug] "checkRun": { +2024-05-29T06:06:59.2677788Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:59.2678226Z ##[debug] "name": "intermediate", +2024-05-29T06:06:59.2678545Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2679137Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:59.2679731Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2680032Z ##[debug] }, +2024-05-29T06:06:59.2680264Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.2680550Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:59.2680852Z ##[debug] "conclusion": null, +2024-05-29T06:06:59.2681168Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2681491Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:59.2681833Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2682160Z ##[debug] "workflow": { +2024-05-29T06:06:59.2682522Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:59.2683094Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:59.2683593Z ##[debug] } +2024-05-29T06:06:59.2683832Z ##[debug] }, +2024-05-29T06:06:59.2684074Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.2684360Z ##[debug] "totalCount": 6, +2024-05-29T06:06:59.2684661Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.2684967Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.2685372Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:06:59.2685762Z ##[debug] }, +2024-05-29T06:06:59.2686010Z ##[debug] "nodes": [ +2024-05-29T06:06:59.2686269Z ##[debug] { +2024-05-29T06:06:59.2686544Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:59.2686909Z ##[debug] "name": "intermediate", +2024-05-29T06:06:59.2687261Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2687886Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:59.2688594Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2688913Z ##[debug] }, +2024-05-29T06:06:59.2689156Z ##[debug] { +2024-05-29T06:06:59.2689436Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:59.2689786Z ##[debug] "name": "wait-success", +2024-05-29T06:06:59.2690146Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:59.2690756Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:59.2691361Z ##[debug] "conclusion": null +2024-05-29T06:06:59.2691668Z ##[debug] }, +2024-05-29T06:06:59.2691908Z ##[debug] { +2024-05-29T06:06:59.2692181Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:59.2692566Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:59.2692951Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2693558Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:59.2694157Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2694482Z ##[debug] }, +2024-05-29T06:06:59.2694724Z ##[debug] { +2024-05-29T06:06:59.2694992Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:59.2695342Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:59.2695695Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:59.2696427Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:59.2697018Z ##[debug] "conclusion": null +2024-05-29T06:06:59.2697324Z ##[debug] }, +2024-05-29T06:06:59.2697564Z ##[debug] { +2024-05-29T06:06:59.2697961Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:06:59.2698436Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:06:59.2698798Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:59.2699379Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:59.2699970Z ##[debug] "conclusion": null +2024-05-29T06:06:59.2700272Z ##[debug] }, +2024-05-29T06:06:59.2700509Z ##[debug] { +2024-05-29T06:06:59.2700780Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:06:59.2701159Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:06:59.2701536Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:59.2702122Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:06:59.2702723Z ##[debug] "conclusion": null +2024-05-29T06:06:59.2703035Z ##[debug] } +2024-05-29T06:06:59.2703262Z ##[debug] ] +2024-05-29T06:06:59.2703492Z ##[debug] } +2024-05-29T06:06:59.2703721Z ##[debug] }, +2024-05-29T06:06:59.2703946Z ##[debug] "workflow": { +2024-05-29T06:06:59.2704279Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:59.2704846Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:59.2705341Z ##[debug] }, +2024-05-29T06:06:59.2705584Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2705893Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:59.2706228Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2706552Z ##[debug] "workflow": { +2024-05-29T06:06:59.2706895Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:59.2707465Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:59.2707959Z ##[debug] } +2024-05-29T06:06:59.2708296Z ##[debug] } +2024-05-29T06:06:59.2708518Z ##[debug] }, +2024-05-29T06:06:59.2708730Z ##[debug] { +2024-05-29T06:06:59.2708958Z ##[debug] "checkRun": { +2024-05-29T06:06:59.2709255Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:59.2709595Z ##[debug] "name": "wait-success", +2024-05-29T06:06:59.2709929Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:59.2710523Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:59.2711105Z ##[debug] "conclusion": null +2024-05-29T06:06:59.2711401Z ##[debug] }, +2024-05-29T06:06:59.2711639Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.2711930Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:59.2712243Z ##[debug] "conclusion": null, +2024-05-29T06:06:59.2712562Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2712872Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:59.2713231Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2713566Z ##[debug] "workflow": { +2024-05-29T06:06:59.2713921Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:59.2714501Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:59.2715003Z ##[debug] } +2024-05-29T06:06:59.2715233Z ##[debug] }, +2024-05-29T06:06:59.2715477Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.2715768Z ##[debug] "totalCount": 6, +2024-05-29T06:06:59.2716075Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.2716377Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.2716911Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:06:59.2717310Z ##[debug] }, +2024-05-29T06:06:59.2717553Z ##[debug] "nodes": [ +2024-05-29T06:06:59.2717820Z ##[debug] { +2024-05-29T06:06:59.2718197Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:59.2718678Z ##[debug] "name": "intermediate", +2024-05-29T06:06:59.2719044Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2719655Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:59.2720263Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2720598Z ##[debug] }, +2024-05-29T06:06:59.2720841Z ##[debug] { +2024-05-29T06:06:59.2721112Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:59.2721483Z ##[debug] "name": "wait-success", +2024-05-29T06:06:59.2721842Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:59.2722458Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:59.2723049Z ##[debug] "conclusion": null +2024-05-29T06:06:59.2723360Z ##[debug] }, +2024-05-29T06:06:59.2723608Z ##[debug] { +2024-05-29T06:06:59.2723880Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:59.2724272Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:59.2724656Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2725248Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:59.2725861Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2726184Z ##[debug] }, +2024-05-29T06:06:59.2726418Z ##[debug] { +2024-05-29T06:06:59.2726693Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:59.2727040Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:59.2727393Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:59.2727997Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:59.2728706Z ##[debug] "conclusion": null +2024-05-29T06:06:59.2729018Z ##[debug] }, +2024-05-29T06:06:59.2729250Z ##[debug] { +2024-05-29T06:06:59.2729521Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:06:59.2729891Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:06:59.2730248Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:59.2730836Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:59.2731431Z ##[debug] "conclusion": null +2024-05-29T06:06:59.2731728Z ##[debug] }, +2024-05-29T06:06:59.2731967Z ##[debug] { +2024-05-29T06:06:59.2732242Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:06:59.2732621Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:06:59.2732986Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:59.2733582Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:06:59.2734183Z ##[debug] "conclusion": null +2024-05-29T06:06:59.2734487Z ##[debug] } +2024-05-29T06:06:59.2734727Z ##[debug] ] +2024-05-29T06:06:59.2734964Z ##[debug] } +2024-05-29T06:06:59.2735184Z ##[debug] }, +2024-05-29T06:06:59.2735419Z ##[debug] "workflow": { +2024-05-29T06:06:59.2735752Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:59.2736309Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:59.2736807Z ##[debug] }, +2024-05-29T06:06:59.2737048Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2737480Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:59.2737827Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2738250Z ##[debug] "workflow": { +2024-05-29T06:06:59.2738719Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:59.2739649Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:59.2740475Z ##[debug] } +2024-05-29T06:06:59.2740717Z ##[debug] } +2024-05-29T06:06:59.2740933Z ##[debug] }, +2024-05-29T06:06:59.2741160Z ##[debug] { +2024-05-29T06:06:59.2741395Z ##[debug] "checkRun": { +2024-05-29T06:06:59.2741683Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:59.2742049Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:59.2742411Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2743002Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:59.2743615Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2743923Z ##[debug] }, +2024-05-29T06:06:59.2744152Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.2744438Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:59.2744749Z ##[debug] "conclusion": null, +2024-05-29T06:06:59.2745058Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2745372Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:59.2745720Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2746046Z ##[debug] "workflow": { +2024-05-29T06:06:59.2746400Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:59.2746981Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:59.2747483Z ##[debug] } +2024-05-29T06:06:59.2747713Z ##[debug] }, +2024-05-29T06:06:59.2747955Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.2748371Z ##[debug] "totalCount": 6, +2024-05-29T06:06:59.2748676Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.2748981Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.2749385Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:06:59.2749774Z ##[debug] }, +2024-05-29T06:06:59.2750016Z ##[debug] "nodes": [ +2024-05-29T06:06:59.2750286Z ##[debug] { +2024-05-29T06:06:59.2750561Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:59.2750932Z ##[debug] "name": "intermediate", +2024-05-29T06:06:59.2751290Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2751893Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:59.2752507Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2752832Z ##[debug] }, +2024-05-29T06:06:59.2753072Z ##[debug] { +2024-05-29T06:06:59.2753348Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:59.2753709Z ##[debug] "name": "wait-success", +2024-05-29T06:06:59.2754058Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:59.2754666Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:59.2755268Z ##[debug] "conclusion": null +2024-05-29T06:06:59.2755594Z ##[debug] }, +2024-05-29T06:06:59.2755839Z ##[debug] { +2024-05-29T06:06:59.2756109Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:59.2756494Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:59.2756874Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2757471Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:59.2758326Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2758822Z ##[debug] }, +2024-05-29T06:06:59.2759186Z ##[debug] { +2024-05-29T06:06:59.2759668Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:59.2760019Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:59.2760366Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:59.2760974Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:59.2761686Z ##[debug] "conclusion": null +2024-05-29T06:06:59.2761989Z ##[debug] }, +2024-05-29T06:06:59.2762231Z ##[debug] { +2024-05-29T06:06:59.2762503Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:06:59.2762865Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:06:59.2763230Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:59.2763872Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:59.2764457Z ##[debug] "conclusion": null +2024-05-29T06:06:59.2764769Z ##[debug] }, +2024-05-29T06:06:59.2765010Z ##[debug] { +2024-05-29T06:06:59.2765271Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:06:59.2765648Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:06:59.2766015Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:59.2766614Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:06:59.2767201Z ##[debug] "conclusion": null +2024-05-29T06:06:59.2767508Z ##[debug] } +2024-05-29T06:06:59.2767741Z ##[debug] ] +2024-05-29T06:06:59.2767967Z ##[debug] } +2024-05-29T06:06:59.2768308Z ##[debug] }, +2024-05-29T06:06:59.2768547Z ##[debug] "workflow": { +2024-05-29T06:06:59.2768873Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:59.2769439Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:59.2769941Z ##[debug] }, +2024-05-29T06:06:59.2770171Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2770475Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:59.2770812Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2771121Z ##[debug] "workflow": { +2024-05-29T06:06:59.2771469Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:59.2772031Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:59.2772531Z ##[debug] } +2024-05-29T06:06:59.2772750Z ##[debug] } +2024-05-29T06:06:59.2772971Z ##[debug] }, +2024-05-29T06:06:59.2773185Z ##[debug] { +2024-05-29T06:06:59.2773404Z ##[debug] "checkRun": { +2024-05-29T06:06:59.2773698Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:59.2774030Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:59.2774345Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:59.2774937Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:59.2775529Z ##[debug] "conclusion": null +2024-05-29T06:06:59.2775819Z ##[debug] }, +2024-05-29T06:06:59.2776052Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.2776342Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:59.2776647Z ##[debug] "conclusion": null, +2024-05-29T06:06:59.2776958Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2777271Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:59.2777615Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2777946Z ##[debug] "workflow": { +2024-05-29T06:06:59.2778397Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:59.2778962Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:59.2779458Z ##[debug] } +2024-05-29T06:06:59.2779690Z ##[debug] }, +2024-05-29T06:06:59.2780073Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.2780369Z ##[debug] "totalCount": 6, +2024-05-29T06:06:59.2780670Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.2780976Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.2781378Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:06:59.2781880Z ##[debug] }, +2024-05-29T06:06:59.2782125Z ##[debug] "nodes": [ +2024-05-29T06:06:59.2782389Z ##[debug] { +2024-05-29T06:06:59.2782666Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:59.2783034Z ##[debug] "name": "intermediate", +2024-05-29T06:06:59.2783387Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2784001Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:59.2784611Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2784931Z ##[debug] }, +2024-05-29T06:06:59.2785177Z ##[debug] { +2024-05-29T06:06:59.2785455Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:59.2785811Z ##[debug] "name": "wait-success", +2024-05-29T06:06:59.2786169Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:59.2786779Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:59.2787390Z ##[debug] "conclusion": null +2024-05-29T06:06:59.2787698Z ##[debug] }, +2024-05-29T06:06:59.2787940Z ##[debug] { +2024-05-29T06:06:59.2788333Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:59.2788712Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:59.2789099Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2789700Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:59.2790305Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2790635Z ##[debug] }, +2024-05-29T06:06:59.2790879Z ##[debug] { +2024-05-29T06:06:59.2791143Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:59.2791488Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:59.2791843Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:59.2792446Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:59.2793037Z ##[debug] "conclusion": null +2024-05-29T06:06:59.2793348Z ##[debug] }, +2024-05-29T06:06:59.2793586Z ##[debug] { +2024-05-29T06:06:59.2793848Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:06:59.2794222Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:06:59.2794583Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:59.2795164Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:59.2795764Z ##[debug] "conclusion": null +2024-05-29T06:06:59.2796067Z ##[debug] }, +2024-05-29T06:06:59.2796299Z ##[debug] { +2024-05-29T06:06:59.2796568Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:06:59.2796954Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:06:59.2797328Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:59.2797910Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:06:59.2798599Z ##[debug] "conclusion": null +2024-05-29T06:06:59.2798904Z ##[debug] } +2024-05-29T06:06:59.2799130Z ##[debug] ] +2024-05-29T06:06:59.2799361Z ##[debug] } +2024-05-29T06:06:59.2799589Z ##[debug] }, +2024-05-29T06:06:59.2799813Z ##[debug] "workflow": { +2024-05-29T06:06:59.2800142Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:59.2800874Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:59.2801369Z ##[debug] }, +2024-05-29T06:06:59.2801608Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2801914Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:59.2802354Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2802679Z ##[debug] "workflow": { +2024-05-29T06:06:59.2803019Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:59.2803580Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:59.2804074Z ##[debug] } +2024-05-29T06:06:59.2804298Z ##[debug] } +2024-05-29T06:06:59.2804522Z ##[debug] }, +2024-05-29T06:06:59.2804733Z ##[debug] { +2024-05-29T06:06:59.2804957Z ##[debug] "checkRun": { +2024-05-29T06:06:59.2805246Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:06:59.2805595Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:06:59.2805938Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:59.2806515Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:59.2807101Z ##[debug] "conclusion": null +2024-05-29T06:06:59.2807398Z ##[debug] }, +2024-05-29T06:06:59.2807631Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.2807906Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:59.2808430Z ##[debug] "conclusion": null, +2024-05-29T06:06:59.2808736Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2809049Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:59.2809402Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2809731Z ##[debug] "workflow": { +2024-05-29T06:06:59.2810077Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:59.2810649Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:59.2811157Z ##[debug] } +2024-05-29T06:06:59.2811385Z ##[debug] }, +2024-05-29T06:06:59.2811623Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.2811914Z ##[debug] "totalCount": 6, +2024-05-29T06:06:59.2812215Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.2812521Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.2812926Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:06:59.2813316Z ##[debug] }, +2024-05-29T06:06:59.2813555Z ##[debug] "nodes": [ +2024-05-29T06:06:59.2813818Z ##[debug] { +2024-05-29T06:06:59.2814096Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:59.2814455Z ##[debug] "name": "intermediate", +2024-05-29T06:06:59.2814813Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2815419Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:59.2816027Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2816352Z ##[debug] }, +2024-05-29T06:06:59.2816596Z ##[debug] { +2024-05-29T06:06:59.2816861Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:59.2817223Z ##[debug] "name": "wait-success", +2024-05-29T06:06:59.2817585Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:59.2818347Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:59.2818944Z ##[debug] "conclusion": null +2024-05-29T06:06:59.2819259Z ##[debug] }, +2024-05-29T06:06:59.2819498Z ##[debug] { +2024-05-29T06:06:59.2819762Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:59.2820142Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:59.2820525Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2821246Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:59.2821864Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2822183Z ##[debug] }, +2024-05-29T06:06:59.2822415Z ##[debug] { +2024-05-29T06:06:59.2822687Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:59.2823143Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:59.2823483Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:59.2824086Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:59.2824681Z ##[debug] "conclusion": null +2024-05-29T06:06:59.2824990Z ##[debug] }, +2024-05-29T06:06:59.2825224Z ##[debug] { +2024-05-29T06:06:59.2825491Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:06:59.2825857Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:06:59.2826215Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:59.2826807Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:59.2827395Z ##[debug] "conclusion": null +2024-05-29T06:06:59.2827691Z ##[debug] }, +2024-05-29T06:06:59.2827940Z ##[debug] { +2024-05-29T06:06:59.2828306Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:06:59.2828681Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:06:59.2829052Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:59.2829638Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:06:59.2830232Z ##[debug] "conclusion": null +2024-05-29T06:06:59.2830532Z ##[debug] } +2024-05-29T06:06:59.2830764Z ##[debug] ] +2024-05-29T06:06:59.2830997Z ##[debug] } +2024-05-29T06:06:59.2831219Z ##[debug] }, +2024-05-29T06:06:59.2831452Z ##[debug] "workflow": { +2024-05-29T06:06:59.2831780Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:59.2832338Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:59.2832834Z ##[debug] }, +2024-05-29T06:06:59.2833081Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2833378Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:59.2833713Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2834028Z ##[debug] "workflow": { +2024-05-29T06:06:59.2834361Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:59.2834922Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:59.2835419Z ##[debug] } +2024-05-29T06:06:59.2835641Z ##[debug] } +2024-05-29T06:06:59.2835856Z ##[debug] }, +2024-05-29T06:06:59.2836073Z ##[debug] { +2024-05-29T06:06:59.2836292Z ##[debug] "checkRun": { +2024-05-29T06:06:59.2836583Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:06:59.2836943Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:06:59.2837291Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:59.2837862Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:06:59.2838573Z ##[debug] "conclusion": null +2024-05-29T06:06:59.2838863Z ##[debug] }, +2024-05-29T06:06:59.2839090Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.2839373Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:59.2839677Z ##[debug] "conclusion": null, +2024-05-29T06:06:59.2839974Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2840292Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:59.2840647Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2840967Z ##[debug] "workflow": { +2024-05-29T06:06:59.2841320Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:59.2842019Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:59.2842517Z ##[debug] } +2024-05-29T06:06:59.2842750Z ##[debug] }, +2024-05-29T06:06:59.2842989Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.2843377Z ##[debug] "totalCount": 6, +2024-05-29T06:06:59.2843681Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.2844068Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.2844477Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:06:59.2844858Z ##[debug] }, +2024-05-29T06:06:59.2845103Z ##[debug] "nodes": [ +2024-05-29T06:06:59.2845364Z ##[debug] { +2024-05-29T06:06:59.2845640Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:59.2846006Z ##[debug] "name": "intermediate", +2024-05-29T06:06:59.2846365Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2846972Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:59.2847581Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2847907Z ##[debug] }, +2024-05-29T06:06:59.2848242Z ##[debug] { +2024-05-29T06:06:59.2848521Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:59.2848638Z ##[debug] "name": "wait-success", +2024-05-29T06:06:59.2848764Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:59.2849121Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:59.2849238Z ##[debug] "conclusion": null +2024-05-29T06:06:59.2849323Z ##[debug] }, +2024-05-29T06:06:59.2849405Z ##[debug] { +2024-05-29T06:06:59.2849529Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:59.2849669Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:59.2849788Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2850156Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:59.2850276Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2850368Z ##[debug] }, +2024-05-29T06:06:59.2850449Z ##[debug] { +2024-05-29T06:06:59.2850568Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:59.2850682Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:59.2850802Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:59.2851167Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:59.2851281Z ##[debug] "conclusion": null +2024-05-29T06:06:59.2851365Z ##[debug] }, +2024-05-29T06:06:59.2851448Z ##[debug] { +2024-05-29T06:06:59.2851576Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:06:59.2851710Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:06:59.2851823Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:59.2852188Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:59.2852297Z ##[debug] "conclusion": null +2024-05-29T06:06:59.2852386Z ##[debug] }, +2024-05-29T06:06:59.2852469Z ##[debug] { +2024-05-29T06:06:59.2852586Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:06:59.2852732Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:06:59.2852836Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:59.2853209Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:06:59.2853316Z ##[debug] "conclusion": null +2024-05-29T06:06:59.2853399Z ##[debug] } +2024-05-29T06:06:59.2853488Z ##[debug] ] +2024-05-29T06:06:59.2853712Z ##[debug] } +2024-05-29T06:06:59.2853801Z ##[debug] }, +2024-05-29T06:06:59.2853899Z ##[debug] "workflow": { +2024-05-29T06:06:59.2854051Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:59.2854335Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:59.2854529Z ##[debug] }, +2024-05-29T06:06:59.2854624Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2854737Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:59.2854842Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2854934Z ##[debug] "workflow": { +2024-05-29T06:06:59.2855092Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:59.2855380Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:59.2855463Z ##[debug] } +2024-05-29T06:06:59.2855549Z ##[debug] } +2024-05-29T06:06:59.2855631Z ##[debug] }, +2024-05-29T06:06:59.2855717Z ##[debug] { +2024-05-29T06:06:59.2855816Z ##[debug] "checkRun": { +2024-05-29T06:06:59.2855928Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:59.2856049Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:59.2856173Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2856539Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:59.2856651Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:59.2856732Z ##[debug] }, +2024-05-29T06:06:59.2856825Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.2856931Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2857038Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:59.2857135Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2857255Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:59.2857366Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2857464Z ##[debug] "workflow": { +2024-05-29T06:06:59.2868384Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:59.2868738Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:59.2868831Z ##[debug] } +2024-05-29T06:06:59.2868930Z ##[debug] }, +2024-05-29T06:06:59.2869039Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.2869140Z ##[debug] "totalCount": 4, +2024-05-29T06:06:59.2869248Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.2869365Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.2869557Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:59.2869650Z ##[debug] }, +2024-05-29T06:06:59.2869741Z ##[debug] "nodes": [ +2024-05-29T06:06:59.2869827Z ##[debug] { +2024-05-29T06:06:59.2869967Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:59.2870099Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:59.2870226Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2870618Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:59.2870741Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:59.2870839Z ##[debug] }, +2024-05-29T06:06:59.2870925Z ##[debug] { +2024-05-29T06:06:59.2871046Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:59.2871161Z ##[debug] "name": "renovate", +2024-05-29T06:06:59.2871278Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2871653Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:59.2871779Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:59.2871862Z ##[debug] }, +2024-05-29T06:06:59.2871952Z ##[debug] { +2024-05-29T06:06:59.2872073Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:59.2872377Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:59.2872509Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2872876Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:59.2873100Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:59.2873190Z ##[debug] }, +2024-05-29T06:06:59.2873275Z ##[debug] { +2024-05-29T06:06:59.2873393Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:59.2873512Z ##[debug] "name": "dependabot", +2024-05-29T06:06:59.2873628Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2873992Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:59.2874108Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:59.2874194Z ##[debug] } +2024-05-29T06:06:59.2874290Z ##[debug] ] +2024-05-29T06:06:59.2874372Z ##[debug] } +2024-05-29T06:06:59.2874453Z ##[debug] }, +2024-05-29T06:06:59.2874552Z ##[debug] "workflow": { +2024-05-29T06:06:59.2874663Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:59.2874952Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:59.2875055Z ##[debug] }, +2024-05-29T06:06:59.2875153Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2875269Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:59.2875379Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2875472Z ##[debug] "workflow": { +2024-05-29T06:06:59.2875579Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:59.2875868Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:59.2875953Z ##[debug] } +2024-05-29T06:06:59.2876046Z ##[debug] } +2024-05-29T06:06:59.2876128Z ##[debug] }, +2024-05-29T06:06:59.2876218Z ##[debug] { +2024-05-29T06:06:59.2876319Z ##[debug] "checkRun": { +2024-05-29T06:06:59.2876436Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:59.2876533Z ##[debug] "name": "renovate", +2024-05-29T06:06:59.2876646Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2877021Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:59.2877138Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:59.2877221Z ##[debug] }, +2024-05-29T06:06:59.2877317Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.2877430Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2877541Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:59.2877642Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2877770Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:59.2877884Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2877978Z ##[debug] "workflow": { +2024-05-29T06:06:59.2878195Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:59.2878506Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:59.2878599Z ##[debug] } +2024-05-29T06:06:59.2878688Z ##[debug] }, +2024-05-29T06:06:59.2878782Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.2878886Z ##[debug] "totalCount": 4, +2024-05-29T06:06:59.2878978Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.2879092Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.2879278Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:59.2879362Z ##[debug] }, +2024-05-29T06:06:59.2879451Z ##[debug] "nodes": [ +2024-05-29T06:06:59.2879541Z ##[debug] { +2024-05-29T06:06:59.2879663Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:59.2879800Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:59.2880042Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2880424Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:59.2880551Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:59.2880739Z ##[debug] }, +2024-05-29T06:06:59.2880821Z ##[debug] { +2024-05-29T06:06:59.2880950Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:59.2881057Z ##[debug] "name": "renovate", +2024-05-29T06:06:59.2881173Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2881550Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:59.2881667Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:59.2881757Z ##[debug] }, +2024-05-29T06:06:59.2881841Z ##[debug] { +2024-05-29T06:06:59.2881962Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:59.2882098Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:59.2882212Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2882569Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:59.2882700Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:59.2882787Z ##[debug] }, +2024-05-29T06:06:59.2882877Z ##[debug] { +2024-05-29T06:06:59.2882995Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:59.2883109Z ##[debug] "name": "dependabot", +2024-05-29T06:06:59.2883232Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2883585Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:59.2883698Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:59.2883792Z ##[debug] } +2024-05-29T06:06:59.2883875Z ##[debug] ] +2024-05-29T06:06:59.2883965Z ##[debug] } +2024-05-29T06:06:59.2884055Z ##[debug] }, +2024-05-29T06:06:59.2884148Z ##[debug] "workflow": { +2024-05-29T06:06:59.2884258Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:59.2884540Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:59.2884629Z ##[debug] }, +2024-05-29T06:06:59.2884732Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2884841Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:59.2884950Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2885048Z ##[debug] "workflow": { +2024-05-29T06:06:59.2885145Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:59.2885429Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:59.2885518Z ##[debug] } +2024-05-29T06:06:59.2885600Z ##[debug] } +2024-05-29T06:06:59.2885682Z ##[debug] }, +2024-05-29T06:06:59.2885775Z ##[debug] { +2024-05-29T06:06:59.2885873Z ##[debug] "checkRun": { +2024-05-29T06:06:59.2885988Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:59.2886095Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:59.2886197Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2886577Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:59.2886685Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:59.2886767Z ##[debug] }, +2024-05-29T06:06:59.2886866Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.2886968Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2887073Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:59.2887178Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2887292Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:59.2887409Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2887503Z ##[debug] "workflow": { +2024-05-29T06:06:59.2887694Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:59.2887987Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:59.2888168Z ##[debug] } +2024-05-29T06:06:59.2888252Z ##[debug] }, +2024-05-29T06:06:59.2888488Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.2888585Z ##[debug] "totalCount": 4, +2024-05-29T06:06:59.2888679Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.2888802Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.2888980Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:59.2889075Z ##[debug] }, +2024-05-29T06:06:59.2889164Z ##[debug] "nodes": [ +2024-05-29T06:06:59.2889246Z ##[debug] { +2024-05-29T06:06:59.2889374Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:59.2889502Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:59.2889622Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2890005Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:59.2890124Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:59.2890210Z ##[debug] }, +2024-05-29T06:06:59.2890306Z ##[debug] { +2024-05-29T06:06:59.2890425Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:59.2890536Z ##[debug] "name": "renovate", +2024-05-29T06:06:59.2890651Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2891016Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:59.2891141Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:59.2891228Z ##[debug] }, +2024-05-29T06:06:59.2891310Z ##[debug] { +2024-05-29T06:06:59.2891434Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:59.2891562Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:59.2891678Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2892046Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:59.2892166Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:59.2892260Z ##[debug] }, +2024-05-29T06:06:59.2892343Z ##[debug] { +2024-05-29T06:06:59.2892458Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:59.2892580Z ##[debug] "name": "dependabot", +2024-05-29T06:06:59.2892692Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2893043Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:59.2893166Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:59.2893251Z ##[debug] } +2024-05-29T06:06:59.2893341Z ##[debug] ] +2024-05-29T06:06:59.2893428Z ##[debug] } +2024-05-29T06:06:59.2893513Z ##[debug] }, +2024-05-29T06:06:59.2893615Z ##[debug] "workflow": { +2024-05-29T06:06:59.2893716Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:59.2893998Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:59.2894097Z ##[debug] }, +2024-05-29T06:06:59.2894194Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2894305Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:59.2894417Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2894519Z ##[debug] "workflow": { +2024-05-29T06:06:59.2894618Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:59.2894907Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:59.2894991Z ##[debug] } +2024-05-29T06:06:59.2895072Z ##[debug] } +2024-05-29T06:06:59.2895159Z ##[debug] }, +2024-05-29T06:06:59.2895241Z ##[debug] { +2024-05-29T06:06:59.2895459Z ##[debug] "checkRun": { +2024-05-29T06:06:59.2895581Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:59.2895684Z ##[debug] "name": "dependabot", +2024-05-29T06:06:59.2895787Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2896156Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:59.2896347Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:59.2896428Z ##[debug] }, +2024-05-29T06:06:59.2896529Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.2896634Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2896747Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:59.2896842Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2896954Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:59.2897073Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2897167Z ##[debug] "workflow": { +2024-05-29T06:06:59.2898924Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:59.2899280Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:59.2899368Z ##[debug] } +2024-05-29T06:06:59.2899457Z ##[debug] }, +2024-05-29T06:06:59.2899555Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.2899664Z ##[debug] "totalCount": 4, +2024-05-29T06:06:59.2899769Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.2899883Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.2900065Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:59.2900154Z ##[debug] }, +2024-05-29T06:06:59.2900244Z ##[debug] "nodes": [ +2024-05-29T06:06:59.2900327Z ##[debug] { +2024-05-29T06:06:59.2900457Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:59.2900587Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:59.2900707Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2901181Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:59.2901305Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:59.2901394Z ##[debug] }, +2024-05-29T06:06:59.2901483Z ##[debug] { +2024-05-29T06:06:59.2901603Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:59.2901716Z ##[debug] "name": "renovate", +2024-05-29T06:06:59.2901832Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2902200Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:59.2902328Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:59.2902411Z ##[debug] }, +2024-05-29T06:06:59.2902496Z ##[debug] { +2024-05-29T06:06:59.2902617Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:59.2902740Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:59.2902874Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2903255Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:59.2903375Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:59.2903472Z ##[debug] }, +2024-05-29T06:06:59.2903553Z ##[debug] { +2024-05-29T06:06:59.2903673Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:59.2903791Z ##[debug] "name": "dependabot", +2024-05-29T06:06:59.2903905Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2904269Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:59.2904383Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:59.2904464Z ##[debug] } +2024-05-29T06:06:59.2904551Z ##[debug] ] +2024-05-29T06:06:59.2904632Z ##[debug] } +2024-05-29T06:06:59.2904899Z ##[debug] }, +2024-05-29T06:06:59.2905002Z ##[debug] "workflow": { +2024-05-29T06:06:59.2905109Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:59.2905395Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:59.2905592Z ##[debug] }, +2024-05-29T06:06:59.2905689Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2905803Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:59.2905912Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2906003Z ##[debug] "workflow": { +2024-05-29T06:06:59.2906106Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:59.2906402Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:59.2906485Z ##[debug] } +2024-05-29T06:06:59.2906572Z ##[debug] } +2024-05-29T06:06:59.2906652Z ##[debug] }, +2024-05-29T06:06:59.2906730Z ##[debug] { +2024-05-29T06:06:59.2906828Z ##[debug] "checkRun": { +2024-05-29T06:06:59.2906950Z ##[debug] "databaseId": 25536411287, +2024-05-29T06:06:59.2907043Z ##[debug] "name": "echo", +2024-05-29T06:06:59.2907153Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2907526Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", +2024-05-29T06:06:59.2907646Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2907728Z ##[debug] }, +2024-05-29T06:06:59.2907819Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.2907927Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2908033Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:59.2908258Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2908379Z ##[debug] "databaseId": 9281068684, +2024-05-29T06:06:59.2908489Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2908581Z ##[debug] "workflow": { +2024-05-29T06:06:59.2908714Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:59.2909012Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:59.2909099Z ##[debug] } +2024-05-29T06:06:59.2909182Z ##[debug] }, +2024-05-29T06:06:59.2909277Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.2909386Z ##[debug] "totalCount": 1, +2024-05-29T06:06:59.2909478Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.2909593Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.2909783Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpc=" +2024-05-29T06:06:59.2909867Z ##[debug] }, +2024-05-29T06:06:59.2909958Z ##[debug] "nodes": [ +2024-05-29T06:06:59.2910050Z ##[debug] { +2024-05-29T06:06:59.2910175Z ##[debug] "databaseId": 25536411287, +2024-05-29T06:06:59.2910285Z ##[debug] "name": "echo", +2024-05-29T06:06:59.2910406Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2910790Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", +2024-05-29T06:06:59.2910920Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2911002Z ##[debug] } +2024-05-29T06:06:59.2911085Z ##[debug] ] +2024-05-29T06:06:59.2911177Z ##[debug] } +2024-05-29T06:06:59.2911256Z ##[debug] }, +2024-05-29T06:06:59.2911348Z ##[debug] "workflow": { +2024-05-29T06:06:59.2911472Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:59.2911764Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:59.2911850Z ##[debug] }, +2024-05-29T06:06:59.2911943Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2912049Z ##[debug] "databaseId": 9281068684, +2024-05-29T06:06:59.2912163Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2912271Z ##[debug] "workflow": { +2024-05-29T06:06:59.2912394Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:59.2912891Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:59.2912976Z ##[debug] } +2024-05-29T06:06:59.2913054Z ##[debug] } +2024-05-29T06:06:59.2913140Z ##[debug] }, +2024-05-29T06:06:59.2913220Z ##[debug] { +2024-05-29T06:06:59.2913455Z ##[debug] "checkRun": { +2024-05-29T06:06:59.2913572Z ##[debug] "databaseId": 25536411604, +2024-05-29T06:06:59.2913662Z ##[debug] "name": "wait", +2024-05-29T06:06:59.2913770Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2914136Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", +2024-05-29T06:06:59.2914241Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2914326Z ##[debug] }, +2024-05-29T06:06:59.2914418Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.2914519Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2914629Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:59.2914728Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2914838Z ##[debug] "databaseId": 9281068685, +2024-05-29T06:06:59.2914955Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2915045Z ##[debug] "workflow": { +2024-05-29T06:06:59.2915168Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:59.2915442Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:59.2915523Z ##[debug] } +2024-05-29T06:06:59.2915609Z ##[debug] }, +2024-05-29T06:06:59.2915701Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.2915797Z ##[debug] "totalCount": 1, +2024-05-29T06:06:59.2915896Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.2916005Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.2916182Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWt9Q=" +2024-05-29T06:06:59.2916270Z ##[debug] }, +2024-05-29T06:06:59.2916358Z ##[debug] "nodes": [ +2024-05-29T06:06:59.2916444Z ##[debug] { +2024-05-29T06:06:59.2916573Z ##[debug] "databaseId": 25536411604, +2024-05-29T06:06:59.2916668Z ##[debug] "name": "wait", +2024-05-29T06:06:59.2916788Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2917161Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", +2024-05-29T06:06:59.2917281Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2917369Z ##[debug] } +2024-05-29T06:06:59.2917450Z ##[debug] ] +2024-05-29T06:06:59.2917530Z ##[debug] } +2024-05-29T06:06:59.2917617Z ##[debug] }, +2024-05-29T06:06:59.2917708Z ##[debug] "workflow": { +2024-05-29T06:06:59.2917809Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:59.2918186Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:59.2918268Z ##[debug] }, +2024-05-29T06:06:59.2918369Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2918480Z ##[debug] "databaseId": 9281068685, +2024-05-29T06:06:59.2918584Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2918680Z ##[debug] "workflow": { +2024-05-29T06:06:59.2918785Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:59.2919060Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:59.2919146Z ##[debug] } +2024-05-29T06:06:59.2919225Z ##[debug] } +2024-05-29T06:06:59.2919306Z ##[debug] }, +2024-05-29T06:06:59.2919391Z ##[debug] { +2024-05-29T06:06:59.2919482Z ##[debug] "checkRun": { +2024-05-29T06:06:59.2919593Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:59.2919695Z ##[debug] "name": "default_logic", +2024-05-29T06:06:59.2919794Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2920279Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:59.2920387Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2920468Z ##[debug] }, +2024-05-29T06:06:59.2920567Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.2920666Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2920894Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:59.2920995Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2921107Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:59.2921222Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2921312Z ##[debug] "workflow": { +2024-05-29T06:06:59.2921407Z ##[debug] "name": "Itself", +2024-05-29T06:06:59.2921671Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:59.2921752Z ##[debug] } +2024-05-29T06:06:59.2921832Z ##[debug] }, +2024-05-29T06:06:59.2921928Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.2922022Z ##[debug] "totalCount": 7, +2024-05-29T06:06:59.2922119Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.2922235Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.2922409Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:59.2922491Z ##[debug] }, +2024-05-29T06:06:59.2922591Z ##[debug] "nodes": [ +2024-05-29T06:06:59.2922671Z ##[debug] { +2024-05-29T06:06:59.2922798Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:59.2922916Z ##[debug] "name": "default_logic", +2024-05-29T06:06:59.2923033Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2923401Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:59.2923516Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2923600Z ##[debug] }, +2024-05-29T06:06:59.2923689Z ##[debug] { +2024-05-29T06:06:59.2923807Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:59.2923929Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:59.2924049Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2924412Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:59.2924541Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2924624Z ##[debug] }, +2024-05-29T06:06:59.2924705Z ##[debug] { +2024-05-29T06:06:59.2924826Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:59.2924994Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:59.2925107Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2925462Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:59.2925574Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2925661Z ##[debug] }, +2024-05-29T06:06:59.2925746Z ##[debug] { +2024-05-29T06:06:59.2925862Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:59.2925977Z ##[debug] "name": "skip-list", +2024-05-29T06:06:59.2926090Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2926457Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:59.2926578Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2926659Z ##[debug] }, +2024-05-29T06:06:59.2926746Z ##[debug] { +2024-05-29T06:06:59.2926862Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:59.2927060Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:59.2927178Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2927528Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:59.2927732Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2927822Z ##[debug] }, +2024-05-29T06:06:59.2927903Z ##[debug] { +2024-05-29T06:06:59.2928023Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:59.2928446Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:59.2928560Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2928919Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:59.2929031Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2929113Z ##[debug] }, +2024-05-29T06:06:59.2929201Z ##[debug] { +2024-05-29T06:06:59.2929316Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:59.2929421Z ##[debug] "name": "wait-list", +2024-05-29T06:06:59.2929538Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2929895Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:59.2930015Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2930097Z ##[debug] } +2024-05-29T06:06:59.2930187Z ##[debug] ] +2024-05-29T06:06:59.2930272Z ##[debug] } +2024-05-29T06:06:59.2930354Z ##[debug] }, +2024-05-29T06:06:59.2930444Z ##[debug] "workflow": { +2024-05-29T06:06:59.2930546Z ##[debug] "name": "Itself", +2024-05-29T06:06:59.2930800Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:59.2930882Z ##[debug] }, +2024-05-29T06:06:59.2930983Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2931089Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:59.2931199Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2931291Z ##[debug] "workflow": { +2024-05-29T06:06:59.2931387Z ##[debug] "name": "Itself", +2024-05-29T06:06:59.2931650Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:59.2931731Z ##[debug] } +2024-05-29T06:06:59.2931812Z ##[debug] } +2024-05-29T06:06:59.2931899Z ##[debug] }, +2024-05-29T06:06:59.2931984Z ##[debug] { +2024-05-29T06:06:59.2932074Z ##[debug] "checkRun": { +2024-05-29T06:06:59.2932185Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:59.2932293Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:59.2932392Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2932764Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:59.2932869Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2932953Z ##[debug] }, +2024-05-29T06:06:59.2933045Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.2933143Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2933258Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:59.2933353Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2933466Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:59.2933578Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2933670Z ##[debug] "workflow": { +2024-05-29T06:06:59.2933771Z ##[debug] "name": "Itself", +2024-05-29T06:06:59.2934031Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:59.2934115Z ##[debug] } +2024-05-29T06:06:59.2934201Z ##[debug] }, +2024-05-29T06:06:59.2934293Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.2934388Z ##[debug] "totalCount": 7, +2024-05-29T06:06:59.2934485Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.2934595Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.2934771Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:59.2934858Z ##[debug] }, +2024-05-29T06:06:59.2935063Z ##[debug] "nodes": [ +2024-05-29T06:06:59.2935148Z ##[debug] { +2024-05-29T06:06:59.2935271Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:59.2935389Z ##[debug] "name": "default_logic", +2024-05-29T06:06:59.2935508Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2935963Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:59.2936077Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2936164Z ##[debug] }, +2024-05-29T06:06:59.2936244Z ##[debug] { +2024-05-29T06:06:59.2936361Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:59.2936483Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:59.2936596Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2936951Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:59.2937071Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2937153Z ##[debug] }, +2024-05-29T06:06:59.2937237Z ##[debug] { +2024-05-29T06:06:59.2937353Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:59.2937524Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:59.2937642Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2937987Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:59.2938198Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2938288Z ##[debug] }, +2024-05-29T06:06:59.2938368Z ##[debug] { +2024-05-29T06:06:59.2938491Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:59.2938598Z ##[debug] "name": "skip-list", +2024-05-29T06:06:59.2938708Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2939073Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:59.2939186Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2939267Z ##[debug] }, +2024-05-29T06:06:59.2939361Z ##[debug] { +2024-05-29T06:06:59.2939477Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:59.2939681Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:59.2939792Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2940139Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:59.2940257Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2940338Z ##[debug] }, +2024-05-29T06:06:59.2940418Z ##[debug] { +2024-05-29T06:06:59.2940538Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:59.2940760Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:59.2940881Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2941242Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:59.2941360Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2941447Z ##[debug] }, +2024-05-29T06:06:59.2941529Z ##[debug] { +2024-05-29T06:06:59.2941644Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:59.2941757Z ##[debug] "name": "wait-list", +2024-05-29T06:06:59.2941867Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2942219Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:59.2942339Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2942420Z ##[debug] } +2024-05-29T06:06:59.2942507Z ##[debug] ] +2024-05-29T06:06:59.2942709Z ##[debug] } +2024-05-29T06:06:59.2942794Z ##[debug] }, +2024-05-29T06:06:59.2942890Z ##[debug] "workflow": { +2024-05-29T06:06:59.2942986Z ##[debug] "name": "Itself", +2024-05-29T06:06:59.2943241Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:59.2943430Z ##[debug] }, +2024-05-29T06:06:59.2943525Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2943630Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:59.2943739Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2943830Z ##[debug] "workflow": { +2024-05-29T06:06:59.2943931Z ##[debug] "name": "Itself", +2024-05-29T06:06:59.2944185Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:59.2944266Z ##[debug] } +2024-05-29T06:06:59.2944350Z ##[debug] } +2024-05-29T06:06:59.2944430Z ##[debug] }, +2024-05-29T06:06:59.2944508Z ##[debug] { +2024-05-29T06:06:59.2944609Z ##[debug] "checkRun": { +2024-05-29T06:06:59.2944717Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:59.2944877Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:59.2944982Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2945349Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:59.2945458Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2945537Z ##[debug] }, +2024-05-29T06:06:59.2945627Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.2945733Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2945836Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:59.2945930Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2946047Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:59.2946153Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2946245Z ##[debug] "workflow": { +2024-05-29T06:06:59.2946350Z ##[debug] "name": "Itself", +2024-05-29T06:06:59.2946605Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:59.2946687Z ##[debug] } +2024-05-29T06:06:59.2946773Z ##[debug] }, +2024-05-29T06:06:59.2946872Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.2946972Z ##[debug] "totalCount": 7, +2024-05-29T06:06:59.2947065Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.2947175Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.2947355Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:59.2947436Z ##[debug] }, +2024-05-29T06:06:59.2947524Z ##[debug] "nodes": [ +2024-05-29T06:06:59.2947613Z ##[debug] { +2024-05-29T06:06:59.2947730Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:59.2947847Z ##[debug] "name": "default_logic", +2024-05-29T06:06:59.2947966Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2948423Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:59.2948544Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2948627Z ##[debug] }, +2024-05-29T06:06:59.2948714Z ##[debug] { +2024-05-29T06:06:59.2948839Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:59.2948958Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:59.2949068Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2949420Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:59.2949536Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2949622Z ##[debug] }, +2024-05-29T06:06:59.2949703Z ##[debug] { +2024-05-29T06:06:59.2949818Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:59.2950126Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:59.2950242Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2950587Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:59.2950808Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2950890Z ##[debug] }, +2024-05-29T06:06:59.2950971Z ##[debug] { +2024-05-29T06:06:59.2951090Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:59.2951193Z ##[debug] "name": "skip-list", +2024-05-29T06:06:59.2951310Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2951668Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:59.2951784Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2951874Z ##[debug] }, +2024-05-29T06:06:59.2951956Z ##[debug] { +2024-05-29T06:06:59.2952075Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:59.2952278Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:59.2952389Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2952743Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:59.2952854Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2952936Z ##[debug] }, +2024-05-29T06:06:59.2953023Z ##[debug] { +2024-05-29T06:06:59.2953137Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:59.2953353Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:59.2953474Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2953826Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:59.2953950Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2954032Z ##[debug] }, +2024-05-29T06:06:59.2954113Z ##[debug] { +2024-05-29T06:06:59.2954233Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:59.2954346Z ##[debug] "name": "wait-list", +2024-05-29T06:06:59.2954458Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2954821Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:59.2954933Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2955014Z ##[debug] } +2024-05-29T06:06:59.2955105Z ##[debug] ] +2024-05-29T06:06:59.2955184Z ##[debug] } +2024-05-29T06:06:59.2955271Z ##[debug] }, +2024-05-29T06:06:59.2955362Z ##[debug] "workflow": { +2024-05-29T06:06:59.2955455Z ##[debug] "name": "Itself", +2024-05-29T06:06:59.2955717Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:59.2955799Z ##[debug] }, +2024-05-29T06:06:59.2955893Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2956003Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:59.2956108Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2956202Z ##[debug] "workflow": { +2024-05-29T06:06:59.2956301Z ##[debug] "name": "Itself", +2024-05-29T06:06:59.2956555Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:59.2956642Z ##[debug] } +2024-05-29T06:06:59.2956724Z ##[debug] } +2024-05-29T06:06:59.2956803Z ##[debug] }, +2024-05-29T06:06:59.2956888Z ##[debug] { +2024-05-29T06:06:59.2956978Z ##[debug] "checkRun": { +2024-05-29T06:06:59.2957083Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:59.2957187Z ##[debug] "name": "skip-list", +2024-05-29T06:06:59.2957286Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2957739Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:59.2957852Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2957931Z ##[debug] }, +2024-05-29T06:06:59.2958022Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.2958329Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2958434Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:59.2958538Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2958650Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:59.2958758Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2958858Z ##[debug] "workflow": { +2024-05-29T06:06:59.2958955Z ##[debug] "name": "Itself", +2024-05-29T06:06:59.2959210Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:59.2959298Z ##[debug] } +2024-05-29T06:06:59.2959378Z ##[debug] }, +2024-05-29T06:06:59.2959477Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.2959581Z ##[debug] "totalCount": 7, +2024-05-29T06:06:59.2959673Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.2959781Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.2959963Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:59.2960050Z ##[debug] }, +2024-05-29T06:06:59.2960144Z ##[debug] "nodes": [ +2024-05-29T06:06:59.2960226Z ##[debug] { +2024-05-29T06:06:59.2960345Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:59.2960470Z ##[debug] "name": "default_logic", +2024-05-29T06:06:59.2960583Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2960938Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:59.2961059Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2961141Z ##[debug] }, +2024-05-29T06:06:59.2961231Z ##[debug] { +2024-05-29T06:06:59.2961349Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:59.2961467Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:59.2961585Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2961944Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:59.2962061Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2962150Z ##[debug] }, +2024-05-29T06:06:59.2962232Z ##[debug] { +2024-05-29T06:06:59.2962345Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:59.2962520Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:59.2962631Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2962988Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:59.2963103Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2963186Z ##[debug] }, +2024-05-29T06:06:59.2963275Z ##[debug] { +2024-05-29T06:06:59.2963389Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:59.2963494Z ##[debug] "name": "skip-list", +2024-05-29T06:06:59.2963620Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2964011Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:59.2964132Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2964213Z ##[debug] }, +2024-05-29T06:06:59.2964293Z ##[debug] { +2024-05-29T06:06:59.2964414Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:59.2964614Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:59.2964725Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2965204Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:59.2965320Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2965408Z ##[debug] }, +2024-05-29T06:06:59.2965489Z ##[debug] { +2024-05-29T06:06:59.2965694Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:59.2965918Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:59.2966030Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2966381Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:59.2966499Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2966580Z ##[debug] }, +2024-05-29T06:06:59.2966666Z ##[debug] { +2024-05-29T06:06:59.2966781Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:59.2966894Z ##[debug] "name": "wait-list", +2024-05-29T06:06:59.2967013Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2967362Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:59.2967479Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2967574Z ##[debug] } +2024-05-29T06:06:59.2967655Z ##[debug] ] +2024-05-29T06:06:59.2967735Z ##[debug] } +2024-05-29T06:06:59.2967824Z ##[debug] }, +2024-05-29T06:06:59.2967914Z ##[debug] "workflow": { +2024-05-29T06:06:59.2968009Z ##[debug] "name": "Itself", +2024-05-29T06:06:59.2968367Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:59.2968450Z ##[debug] }, +2024-05-29T06:06:59.2968551Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2968657Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:59.2968762Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2968871Z ##[debug] "workflow": { +2024-05-29T06:06:59.2968969Z ##[debug] "name": "Itself", +2024-05-29T06:06:59.2969226Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:59.2969315Z ##[debug] } +2024-05-29T06:06:59.2969400Z ##[debug] } +2024-05-29T06:06:59.2969480Z ##[debug] }, +2024-05-29T06:06:59.2969565Z ##[debug] { +2024-05-29T06:06:59.2969654Z ##[debug] "checkRun": { +2024-05-29T06:06:59.2969769Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:59.2969968Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:59.2970067Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2970434Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:59.2970538Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2970617Z ##[debug] }, +2024-05-29T06:06:59.2970717Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.2970817Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2970922Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:59.2971025Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2971135Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:59.2971254Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2971346Z ##[debug] "workflow": { +2024-05-29T06:06:59.2971443Z ##[debug] "name": "Itself", +2024-05-29T06:06:59.2971702Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:59.2971784Z ##[debug] } +2024-05-29T06:06:59.2971864Z ##[debug] }, +2024-05-29T06:06:59.2971960Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.2972056Z ##[debug] "totalCount": 7, +2024-05-29T06:06:59.2972147Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.2972262Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.2972557Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:59.2972643Z ##[debug] }, +2024-05-29T06:06:59.2972736Z ##[debug] "nodes": [ +2024-05-29T06:06:59.2972817Z ##[debug] { +2024-05-29T06:06:59.2972940Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:59.2973161Z ##[debug] "name": "default_logic", +2024-05-29T06:06:59.2973276Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2973648Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:59.2973765Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2973848Z ##[debug] }, +2024-05-29T06:06:59.2973934Z ##[debug] { +2024-05-29T06:06:59.2974051Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:59.2974173Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:59.2974286Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2974651Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:59.2974770Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2974852Z ##[debug] }, +2024-05-29T06:06:59.2974938Z ##[debug] { +2024-05-29T06:06:59.2975056Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:59.2975223Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:59.2975336Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2975692Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:59.2975804Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2975892Z ##[debug] }, +2024-05-29T06:06:59.2975973Z ##[debug] { +2024-05-29T06:06:59.2976088Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:59.2976203Z ##[debug] "name": "skip-list", +2024-05-29T06:06:59.2976315Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2976690Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:59.2976824Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2976905Z ##[debug] }, +2024-05-29T06:06:59.2976992Z ##[debug] { +2024-05-29T06:06:59.2977111Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:59.2977312Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:59.2977434Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2977793Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:59.2977909Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2977998Z ##[debug] }, +2024-05-29T06:06:59.2978183Z ##[debug] { +2024-05-29T06:06:59.2978311Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:59.2978532Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:59.2978644Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2979018Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:59.2979135Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2979217Z ##[debug] }, +2024-05-29T06:06:59.2979304Z ##[debug] { +2024-05-29T06:06:59.2979417Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:59.2979528Z ##[debug] "name": "wait-list", +2024-05-29T06:06:59.2979638Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2979994Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:59.2980255Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2980340Z ##[debug] } +2024-05-29T06:06:59.2980422Z ##[debug] ] +2024-05-29T06:06:59.2980509Z ##[debug] } +2024-05-29T06:06:59.2980588Z ##[debug] }, +2024-05-29T06:06:59.2980679Z ##[debug] "workflow": { +2024-05-29T06:06:59.2980886Z ##[debug] "name": "Itself", +2024-05-29T06:06:59.2981148Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:59.2981236Z ##[debug] }, +2024-05-29T06:06:59.2981331Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2981438Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:59.2981549Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2981640Z ##[debug] "workflow": { +2024-05-29T06:06:59.2981735Z ##[debug] "name": "Itself", +2024-05-29T06:06:59.2981994Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:59.2982074Z ##[debug] } +2024-05-29T06:06:59.2982157Z ##[debug] } +2024-05-29T06:06:59.2982244Z ##[debug] }, +2024-05-29T06:06:59.2982324Z ##[debug] { +2024-05-29T06:06:59.2982414Z ##[debug] "checkRun": { +2024-05-29T06:06:59.2982527Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:59.2982748Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:59.2982855Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2983219Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:59.2983324Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2983414Z ##[debug] }, +2024-05-29T06:06:59.2983507Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.2983606Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2983718Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:59.2983812Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2983932Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:59.2984048Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2984138Z ##[debug] "workflow": { +2024-05-29T06:06:59.2984241Z ##[debug] "name": "Itself", +2024-05-29T06:06:59.2984501Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:59.2984591Z ##[debug] } +2024-05-29T06:06:59.2984677Z ##[debug] }, +2024-05-29T06:06:59.2984768Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.2984865Z ##[debug] "totalCount": 7, +2024-05-29T06:06:59.2984962Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.2985072Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.2985249Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:59.2985338Z ##[debug] }, +2024-05-29T06:06:59.2985428Z ##[debug] "nodes": [ +2024-05-29T06:06:59.2985510Z ##[debug] { +2024-05-29T06:06:59.2985635Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:59.2985757Z ##[debug] "name": "default_logic", +2024-05-29T06:06:59.2985876Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2986236Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:59.2986354Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2986442Z ##[debug] }, +2024-05-29T06:06:59.2986523Z ##[debug] { +2024-05-29T06:06:59.2986640Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:59.2986765Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:59.2986878Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2987237Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:59.2987350Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2987431Z ##[debug] }, +2024-05-29T06:06:59.2987629Z ##[debug] { +2024-05-29T06:06:59.2987749Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:59.2987917Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:59.2988039Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2988623Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:59.2988742Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2988824Z ##[debug] }, +2024-05-29T06:06:59.2988905Z ##[debug] { +2024-05-29T06:06:59.2989026Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:59.2989131Z ##[debug] "name": "skip-list", +2024-05-29T06:06:59.2989242Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2989605Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:59.2989727Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2989809Z ##[debug] }, +2024-05-29T06:06:59.2989895Z ##[debug] { +2024-05-29T06:06:59.2990011Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:59.2990213Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:59.2990331Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2990674Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:59.2990792Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2990873Z ##[debug] }, +2024-05-29T06:06:59.2990955Z ##[debug] { +2024-05-29T06:06:59.2991073Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:59.2991295Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:59.2991414Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2991775Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:59.2991888Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2991975Z ##[debug] }, +2024-05-29T06:06:59.2992062Z ##[debug] { +2024-05-29T06:06:59.2992177Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:59.2992287Z ##[debug] "name": "wait-list", +2024-05-29T06:06:59.2992398Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2992767Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:59.2992879Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2992960Z ##[debug] } +2024-05-29T06:06:59.2993050Z ##[debug] ] +2024-05-29T06:06:59.2993130Z ##[debug] } +2024-05-29T06:06:59.2993210Z ##[debug] }, +2024-05-29T06:06:59.2993311Z ##[debug] "workflow": { +2024-05-29T06:06:59.2993406Z ##[debug] "name": "Itself", +2024-05-29T06:06:59.2993661Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:59.2993749Z ##[debug] }, +2024-05-29T06:06:59.2993848Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2993953Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:59.2994065Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2994156Z ##[debug] "workflow": { +2024-05-29T06:06:59.2994257Z ##[debug] "name": "Itself", +2024-05-29T06:06:59.2994511Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:59.2994592Z ##[debug] } +2024-05-29T06:06:59.2994679Z ##[debug] } +2024-05-29T06:06:59.2994759Z ##[debug] }, +2024-05-29T06:06:59.2994838Z ##[debug] { +2024-05-29T06:06:59.2994932Z ##[debug] "checkRun": { +2024-05-29T06:06:59.2995041Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:59.2995255Z ##[debug] "name": "wait-list", +2024-05-29T06:06:59.2995366Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2995730Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:59.2995928Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2996010Z ##[debug] }, +2024-05-29T06:06:59.2996101Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.2996207Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2996311Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:59.2996406Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.2996525Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:59.2996633Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.2996726Z ##[debug] "workflow": { +2024-05-29T06:06:59.2996828Z ##[debug] "name": "Itself", +2024-05-29T06:06:59.2997092Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:59.2997180Z ##[debug] } +2024-05-29T06:06:59.2997262Z ##[debug] }, +2024-05-29T06:06:59.2997353Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.2997455Z ##[debug] "totalCount": 7, +2024-05-29T06:06:59.2997556Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.2997666Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.2997847Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:59.2997929Z ##[debug] }, +2024-05-29T06:06:59.2998016Z ##[debug] "nodes": [ +2024-05-29T06:06:59.2998198Z ##[debug] { +2024-05-29T06:06:59.2998320Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:59.2998438Z ##[debug] "name": "default_logic", +2024-05-29T06:06:59.2998559Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2998921Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:59.2999048Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.2999131Z ##[debug] }, +2024-05-29T06:06:59.2999212Z ##[debug] { +2024-05-29T06:06:59.2999335Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:59.2999457Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:59.2999571Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.2999926Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:59.3000041Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.3000127Z ##[debug] }, +2024-05-29T06:06:59.3000207Z ##[debug] { +2024-05-29T06:06:59.3000321Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:59.3000495Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:59.3000606Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.3000956Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:59.3001074Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.3001155Z ##[debug] }, +2024-05-29T06:06:59.3001242Z ##[debug] { +2024-05-29T06:06:59.3001361Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:59.3001467Z ##[debug] "name": "skip-list", +2024-05-29T06:06:59.3001582Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.3001939Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:59.3002054Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.3002143Z ##[debug] }, +2024-05-29T06:06:59.3002224Z ##[debug] { +2024-05-29T06:06:59.3002342Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:59.3002664Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:59.3002780Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.3003130Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:59.3003370Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.3003452Z ##[debug] }, +2024-05-29T06:06:59.3003538Z ##[debug] { +2024-05-29T06:06:59.3003651Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:59.3003869Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:59.3003987Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.3004336Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:59.3004455Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.3004537Z ##[debug] }, +2024-05-29T06:06:59.3004623Z ##[debug] { +2024-05-29T06:06:59.3004743Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:59.3004847Z ##[debug] "name": "wait-list", +2024-05-29T06:06:59.3004958Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.3005323Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:59.3005441Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.3005528Z ##[debug] } +2024-05-29T06:06:59.3005608Z ##[debug] ] +2024-05-29T06:06:59.3005687Z ##[debug] } +2024-05-29T06:06:59.3005774Z ##[debug] }, +2024-05-29T06:06:59.3005864Z ##[debug] "workflow": { +2024-05-29T06:06:59.3005957Z ##[debug] "name": "Itself", +2024-05-29T06:06:59.3006215Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:59.3006296Z ##[debug] }, +2024-05-29T06:06:59.3006388Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.3006508Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:59.3006613Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.3006704Z ##[debug] "workflow": { +2024-05-29T06:06:59.3006804Z ##[debug] "name": "Itself", +2024-05-29T06:06:59.3007063Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:59.3007149Z ##[debug] } +2024-05-29T06:06:59.3007232Z ##[debug] } +2024-05-29T06:06:59.3007311Z ##[debug] }, +2024-05-29T06:06:59.3007398Z ##[debug] { +2024-05-29T06:06:59.3007486Z ##[debug] "checkRun": { +2024-05-29T06:06:59.3007595Z ##[debug] "databaseId": 25536411358, +2024-05-29T06:06:59.3007720Z ##[debug] "name": "dependency-review", +2024-05-29T06:06:59.3007820Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.3008278Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", +2024-05-29T06:06:59.3008393Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.3008472Z ##[debug] }, +2024-05-29T06:06:59.3008568Z ##[debug] "checkSuite": { +2024-05-29T06:06:59.3008667Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.3008769Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:59.3008875Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.3008993Z ##[debug] "databaseId": 9281068690, +2024-05-29T06:06:59.3009099Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.3009197Z ##[debug] "workflow": { +2024-05-29T06:06:59.3009299Z ##[debug] "name": "💂➕", +2024-05-29T06:06:59.3009615Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:59.3009705Z ##[debug] } +2024-05-29T06:06:59.3009785Z ##[debug] }, +2024-05-29T06:06:59.3009876Z ##[debug] "checkRuns": { +2024-05-29T06:06:59.3009974Z ##[debug] "totalCount": 1, +2024-05-29T06:06:59.3010066Z ##[debug] "pageInfo": { +2024-05-29T06:06:59.3010306Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:59.3010487Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtt4=" +2024-05-29T06:06:59.3010568Z ##[debug] }, +2024-05-29T06:06:59.3010662Z ##[debug] "nodes": [ +2024-05-29T06:06:59.3010848Z ##[debug] { +2024-05-29T06:06:59.3010966Z ##[debug] "databaseId": 25536411358, +2024-05-29T06:06:59.3011104Z ##[debug] "name": "dependency-review", +2024-05-29T06:06:59.3011216Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:59.3011578Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", +2024-05-29T06:06:59.3011698Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:59.3011779Z ##[debug] } +2024-05-29T06:06:59.3011865Z ##[debug] ] +2024-05-29T06:06:59.3011944Z ##[debug] } +2024-05-29T06:06:59.3012023Z ##[debug] }, +2024-05-29T06:06:59.3012123Z ##[debug] "workflow": { +2024-05-29T06:06:59.3012214Z ##[debug] "name": "💂➕", +2024-05-29T06:06:59.3012524Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:59.3012615Z ##[debug] }, +2024-05-29T06:06:59.3012716Z ##[debug] "workflowRun": { +2024-05-29T06:06:59.3012821Z ##[debug] "databaseId": 9281068690, +2024-05-29T06:06:59.3012932Z ##[debug] "event": "pull_request", +2024-05-29T06:06:59.3013023Z ##[debug] "workflow": { +2024-05-29T06:06:59.3013115Z ##[debug] "name": "💂➕", +2024-05-29T06:06:59.3013432Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:59.3013513Z ##[debug] } +2024-05-29T06:06:59.3013598Z ##[debug] } +2024-05-29T06:06:59.3013678Z ##[debug] } +2024-05-29T06:06:59.3013757Z ##[debug] ], +2024-05-29T06:06:59.3013874Z ##[debug] "elapsedMsec": 23003.059462999925 +2024-05-29T06:06:59.3013950Z ##[debug]} +2024-05-29T06:06:59.3015328Z GH-820-graceperiod.yml(quickstarter-success): [suiteStatus: QUEUED][suiteConclusion: (null)][runStatus: COMPLETED][runConclusion: SUCCESS][eventName: pull_request][runURL: https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631] +2024-05-29T06:06:59.3016427Z GH-820-graceperiod.yml(slowstarter-success): [suiteStatus: QUEUED][suiteConclusion: (null)][runStatus: QUEUED][runConclusion: (null)][eventName: pull_request][runURL: https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021] +2024-05-29T06:06:59.3017279Z ##[debug]{ +2024-05-29T06:06:59.3017377Z ##[debug] "label": "filtered", +2024-05-29T06:06:59.3017464Z ##[debug] "report": { +2024-05-29T06:06:59.3017576Z ##[debug] "progress": "in_progress", +2024-05-29T06:06:59.3017684Z ##[debug] "conclusion": "acceptable", +2024-05-29T06:06:59.3017774Z ##[debug] "summaries": [ +2024-05-29T06:06:59.3017860Z ##[debug] { +2024-05-29T06:06:59.3017958Z ##[debug] "acceptable": true, +2024-05-29T06:06:59.3018220Z ##[debug] "workflowPath": "GH-820-graceperiod.yml", +2024-05-29T06:06:59.3018341Z ##[debug] "isSameWorkflow": true, +2024-05-29T06:06:59.3018461Z ##[debug] "eventName": "pull_request", +2024-05-29T06:06:59.3018583Z ##[debug] "checkSuiteStatus": "QUEUED", +2024-05-29T06:06:59.3018720Z ##[debug] "checkSuiteConclusion": null, +2024-05-29T06:06:59.3018834Z ##[debug] "runDatabaseId": 25536443631, +2024-05-29T06:06:59.3018977Z ##[debug] "jobName": "quickstarter-success", +2024-05-29T06:06:59.3019349Z ##[debug] "checkRunUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:59.3019461Z ##[debug] "runStatus": "COMPLETED", +2024-05-29T06:06:59.3019580Z ##[debug] "runConclusion": "SUCCESS" +2024-05-29T06:06:59.3019661Z ##[debug] }, +2024-05-29T06:06:59.3019741Z ##[debug] { +2024-05-29T06:06:59.3019848Z ##[debug] "acceptable": false, +2024-05-29T06:06:59.3020119Z ##[debug] "workflowPath": "GH-820-graceperiod.yml", +2024-05-29T06:06:59.3020230Z ##[debug] "isSameWorkflow": true, +2024-05-29T06:06:59.3020357Z ##[debug] "eventName": "pull_request", +2024-05-29T06:06:59.3020476Z ##[debug] "checkSuiteStatus": "QUEUED", +2024-05-29T06:06:59.3020716Z ##[debug] "checkSuiteConclusion": null, +2024-05-29T06:06:59.3020830Z ##[debug] "runDatabaseId": 25536456021, +2024-05-29T06:06:59.3020963Z ##[debug] "jobName": "slowstarter-success", +2024-05-29T06:06:59.3021338Z ##[debug] "checkRunUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:06:59.3021439Z ##[debug] "runStatus": "QUEUED", +2024-05-29T06:06:59.3021540Z ##[debug] "runConclusion": null +2024-05-29T06:06:59.3021630Z ##[debug] } +2024-05-29T06:06:59.3021711Z ##[debug] ] +2024-05-29T06:06:59.3021796Z ##[debug] } +2024-05-29T06:06:59.3021873Z ##[debug]} +2024-05-29T06:06:59.3021983Z some jobs still in progress +2024-05-29T06:06:59.3022271Z ::endgroup:: +2024-05-29T06:06:59.3022372Z ##[endgroup] +2024-05-29T06:06:59.3022588Z Wait about 5 seconds before next polling to reduce API calls. +2024-05-29T06:07:04.2429259Z ::group::Polling 6: 2024-05-29T06:07:04.242Z +2024-05-29T06:07:04.2430170Z ##[group]Polling 6: 2024-05-29T06:07:04.242Z +2024-05-29T06:07:04.6713627Z ##[debug]{ +2024-05-29T06:07:04.6713909Z ##[debug] "label": "rawdata", +2024-05-29T06:07:04.6714203Z ##[debug] "checks": [ +2024-05-29T06:07:04.6714457Z ##[debug] { +2024-05-29T06:07:04.6714694Z ##[debug] "checkRun": { +2024-05-29T06:07:04.6714990Z ##[debug] "databaseId": 25536410411, +2024-05-29T06:07:04.6715328Z ##[debug] "name": "gitleaks", +2024-05-29T06:07:04.6715648Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6716255Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", +2024-05-29T06:07:04.6716859Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6717203Z ##[debug] }, +2024-05-29T06:07:04.6717444Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.6717734Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6718275Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:04.6718610Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.6718932Z ##[debug] "databaseId": 9281068413, +2024-05-29T06:07:04.6719270Z ##[debug] "event": "push", +2024-05-29T06:07:04.6719577Z ##[debug] "workflow": { +2024-05-29T06:07:04.6719892Z ##[debug] "name": "💧", +2024-05-29T06:07:04.6720385Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:07:04.6720883Z ##[debug] } +2024-05-29T06:07:04.6721116Z ##[debug] }, +2024-05-29T06:07:04.6721358Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.6721650Z ##[debug] "totalCount": 1, +2024-05-29T06:07:04.6721947Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.6722256Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.6722678Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWsys=" +2024-05-29T06:07:04.6723064Z ##[debug] }, +2024-05-29T06:07:04.6723311Z ##[debug] "nodes": [ +2024-05-29T06:07:04.6723576Z ##[debug] { +2024-05-29T06:07:04.6723858Z ##[debug] "databaseId": 25536410411, +2024-05-29T06:07:04.6724214Z ##[debug] "name": "gitleaks", +2024-05-29T06:07:04.6724555Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6725168Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", +2024-05-29T06:07:04.6725782Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6726104Z ##[debug] } +2024-05-29T06:07:04.6726339Z ##[debug] ] +2024-05-29T06:07:04.6726567Z ##[debug] } +2024-05-29T06:07:04.6726790Z ##[debug] }, +2024-05-29T06:07:04.6727019Z ##[debug] "workflow": { +2024-05-29T06:07:04.6727288Z ##[debug] "name": "💧", +2024-05-29T06:07:04.6728282Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:07:04.6728806Z ##[debug] }, +2024-05-29T06:07:04.6729039Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.6729343Z ##[debug] "databaseId": 9281068413, +2024-05-29T06:07:04.6729811Z ##[debug] "event": "push", +2024-05-29T06:07:04.6730099Z ##[debug] "workflow": { +2024-05-29T06:07:04.6730383Z ##[debug] "name": "💧", +2024-05-29T06:07:04.6730841Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:07:04.6731327Z ##[debug] } +2024-05-29T06:07:04.6731555Z ##[debug] } +2024-05-29T06:07:04.6731774Z ##[debug] }, +2024-05-29T06:07:04.6731986Z ##[debug] { +2024-05-29T06:07:04.6732208Z ##[debug] "checkRun": { +2024-05-29T06:07:04.6732499Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:07:04.6732820Z ##[debug] "name": "build", +2024-05-29T06:07:04.6733125Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6733725Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:07:04.6734320Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6734629Z ##[debug] }, +2024-05-29T06:07:04.6734861Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.6735149Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6735474Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:04.6735795Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.6736105Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:07:04.6736445Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.6736771Z ##[debug] "workflow": { +2024-05-29T06:07:04.6737075Z ##[debug] "name": "TypeScript", +2024-05-29T06:07:04.6737542Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:07:04.6737994Z ##[debug] } +2024-05-29T06:07:04.6738457Z ##[debug] }, +2024-05-29T06:07:04.6738696Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.6738994Z ##[debug] "totalCount": 3, +2024-05-29T06:07:04.6739298Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.6739609Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.6740025Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:07:04.6740415Z ##[debug] }, +2024-05-29T06:07:04.6740655Z ##[debug] "nodes": [ +2024-05-29T06:07:04.6740921Z ##[debug] { +2024-05-29T06:07:04.6741203Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:07:04.6741543Z ##[debug] "name": "build", +2024-05-29T06:07:04.6741881Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6742495Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:07:04.6743105Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6743428Z ##[debug] }, +2024-05-29T06:07:04.6743671Z ##[debug] { +2024-05-29T06:07:04.6743948Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:07:04.6744284Z ##[debug] "name": "test", +2024-05-29T06:07:04.6744619Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6745262Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:07:04.6745856Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6746179Z ##[debug] }, +2024-05-29T06:07:04.6746418Z ##[debug] { +2024-05-29T06:07:04.6746683Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:07:04.6747046Z ##[debug] "name": "typecheck", +2024-05-29T06:07:04.6747390Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6747978Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:07:04.6748858Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6749191Z ##[debug] } +2024-05-29T06:07:04.6749426Z ##[debug] ] +2024-05-29T06:07:04.6749653Z ##[debug] } +2024-05-29T06:07:04.6749877Z ##[debug] }, +2024-05-29T06:07:04.6750212Z ##[debug] "workflow": { +2024-05-29T06:07:04.6750491Z ##[debug] "name": "TypeScript", +2024-05-29T06:07:04.6750950Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:07:04.6751403Z ##[debug] }, +2024-05-29T06:07:04.6751634Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.6751937Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:07:04.6752273Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.6752586Z ##[debug] "workflow": { +2024-05-29T06:07:04.6752876Z ##[debug] "name": "TypeScript", +2024-05-29T06:07:04.6753339Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:07:04.6753793Z ##[debug] } +2024-05-29T06:07:04.6754020Z ##[debug] } +2024-05-29T06:07:04.6754242Z ##[debug] }, +2024-05-29T06:07:04.6754451Z ##[debug] { +2024-05-29T06:07:04.6754672Z ##[debug] "checkRun": { +2024-05-29T06:07:04.6754962Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:07:04.6755288Z ##[debug] "name": "test", +2024-05-29T06:07:04.6755582Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6756170Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:07:04.6756763Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6757060Z ##[debug] }, +2024-05-29T06:07:04.6757291Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.6757578Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6757896Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:04.6758441Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.6758759Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:07:04.6759107Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.6759435Z ##[debug] "workflow": { +2024-05-29T06:07:04.6759740Z ##[debug] "name": "TypeScript", +2024-05-29T06:07:04.6760206Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:07:04.6760669Z ##[debug] } +2024-05-29T06:07:04.6760903Z ##[debug] }, +2024-05-29T06:07:04.6761135Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.6761423Z ##[debug] "totalCount": 3, +2024-05-29T06:07:04.6761726Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.6762019Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.6762431Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:07:04.6762821Z ##[debug] }, +2024-05-29T06:07:04.6763060Z ##[debug] "nodes": [ +2024-05-29T06:07:04.6763326Z ##[debug] { +2024-05-29T06:07:04.6763612Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:07:04.6763954Z ##[debug] "name": "build", +2024-05-29T06:07:04.6764286Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6764902Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:07:04.6765540Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6765870Z ##[debug] }, +2024-05-29T06:07:04.6766113Z ##[debug] { +2024-05-29T06:07:04.6766388Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:07:04.6766726Z ##[debug] "name": "test", +2024-05-29T06:07:04.6767065Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6767671Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:07:04.6768454Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6768785Z ##[debug] }, +2024-05-29T06:07:04.6769028Z ##[debug] { +2024-05-29T06:07:04.6769506Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:07:04.6770083Z ##[debug] "name": "typecheck", +2024-05-29T06:07:04.6779729Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6780517Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:07:04.6781356Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6781686Z ##[debug] } +2024-05-29T06:07:04.6781941Z ##[debug] ] +2024-05-29T06:07:04.6782183Z ##[debug] } +2024-05-29T06:07:04.6782408Z ##[debug] }, +2024-05-29T06:07:04.6782646Z ##[debug] "workflow": { +2024-05-29T06:07:04.6782950Z ##[debug] "name": "TypeScript", +2024-05-29T06:07:04.6783419Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:07:04.6783883Z ##[debug] }, +2024-05-29T06:07:04.6784138Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.6784461Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:07:04.6784815Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.6785146Z ##[debug] "workflow": { +2024-05-29T06:07:04.6785439Z ##[debug] "name": "TypeScript", +2024-05-29T06:07:04.6785918Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:07:04.6786385Z ##[debug] } +2024-05-29T06:07:04.6786608Z ##[debug] } +2024-05-29T06:07:04.6786830Z ##[debug] }, +2024-05-29T06:07:04.6787054Z ##[debug] { +2024-05-29T06:07:04.6787278Z ##[debug] "checkRun": { +2024-05-29T06:07:04.6787574Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:07:04.6787911Z ##[debug] "name": "typecheck", +2024-05-29T06:07:04.6788349Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6788952Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:07:04.6789581Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6789899Z ##[debug] }, +2024-05-29T06:07:04.6790132Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.6790433Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6790773Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:04.6791103Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.6791421Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:07:04.6791776Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.6792100Z ##[debug] "workflow": { +2024-05-29T06:07:04.6792410Z ##[debug] "name": "TypeScript", +2024-05-29T06:07:04.6792887Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:07:04.6793343Z ##[debug] } +2024-05-29T06:07:04.6793582Z ##[debug] }, +2024-05-29T06:07:04.6793827Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.6794117Z ##[debug] "totalCount": 3, +2024-05-29T06:07:04.6794425Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.6794738Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.6795141Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:07:04.6795545Z ##[debug] }, +2024-05-29T06:07:04.6795794Z ##[debug] "nodes": [ +2024-05-29T06:07:04.6796062Z ##[debug] { +2024-05-29T06:07:04.6796351Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:07:04.6796703Z ##[debug] "name": "build", +2024-05-29T06:07:04.6797037Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6797652Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:07:04.6798453Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6798782Z ##[debug] }, +2024-05-29T06:07:04.6799026Z ##[debug] { +2024-05-29T06:07:04.6799308Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:07:04.6799661Z ##[debug] "name": "test", +2024-05-29T06:07:04.6800203Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6800828Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:07:04.6801443Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6801870Z ##[debug] }, +2024-05-29T06:07:04.6802117Z ##[debug] { +2024-05-29T06:07:04.6802395Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:07:04.6802743Z ##[debug] "name": "typecheck", +2024-05-29T06:07:04.6803095Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6803690Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:07:04.6804292Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6804603Z ##[debug] } +2024-05-29T06:07:04.6804841Z ##[debug] ] +2024-05-29T06:07:04.6805075Z ##[debug] } +2024-05-29T06:07:04.6805304Z ##[debug] }, +2024-05-29T06:07:04.6805541Z ##[debug] "workflow": { +2024-05-29T06:07:04.6805832Z ##[debug] "name": "TypeScript", +2024-05-29T06:07:04.6806286Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:07:04.6806753Z ##[debug] }, +2024-05-29T06:07:04.6806992Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.6807295Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:07:04.6807636Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.6807960Z ##[debug] "workflow": { +2024-05-29T06:07:04.6808366Z ##[debug] "name": "TypeScript", +2024-05-29T06:07:04.6808833Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:07:04.6809294Z ##[debug] } +2024-05-29T06:07:04.6809514Z ##[debug] } +2024-05-29T06:07:04.6809737Z ##[debug] }, +2024-05-29T06:07:04.6809963Z ##[debug] { +2024-05-29T06:07:04.6810185Z ##[debug] "checkRun": { +2024-05-29T06:07:04.6810484Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:07:04.6810817Z ##[debug] "name": "typos", +2024-05-29T06:07:04.6811112Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6811717Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:07:04.6812334Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6812647Z ##[debug] }, +2024-05-29T06:07:04.6812878Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.6813176Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6813511Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:04.6813831Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.6814147Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:07:04.6814495Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.6814819Z ##[debug] "workflow": { +2024-05-29T06:07:04.6815127Z ##[debug] "name": "👕", +2024-05-29T06:07:04.6815598Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:04.6816061Z ##[debug] } +2024-05-29T06:07:04.6816301Z ##[debug] }, +2024-05-29T06:07:04.6816549Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.6816839Z ##[debug] "totalCount": 4, +2024-05-29T06:07:04.6817150Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.6817455Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.6817856Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:07:04.6818356Z ##[debug] }, +2024-05-29T06:07:04.6818600Z ##[debug] "nodes": [ +2024-05-29T06:07:04.6818862Z ##[debug] { +2024-05-29T06:07:04.6819139Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:07:04.6819481Z ##[debug] "name": "typos", +2024-05-29T06:07:04.6819808Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6820544Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:07:04.6821159Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6821474Z ##[debug] }, +2024-05-29T06:07:04.6821723Z ##[debug] { +2024-05-29T06:07:04.6821998Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:07:04.6822481Z ##[debug] "name": "dprint", +2024-05-29T06:07:04.6822808Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6823398Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:07:04.6823997Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6824309Z ##[debug] }, +2024-05-29T06:07:04.6824552Z ##[debug] { +2024-05-29T06:07:04.6824829Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:07:04.6825171Z ##[debug] "name": "deno_lint", +2024-05-29T06:07:04.6825519Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6826128Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:07:04.6826721Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6827037Z ##[debug] }, +2024-05-29T06:07:04.6827285Z ##[debug] { +2024-05-29T06:07:04.6827550Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:07:04.6827893Z ##[debug] "name": "yamlfmt", +2024-05-29T06:07:04.6828330Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6828932Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:07:04.6829532Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6829861Z ##[debug] } +2024-05-29T06:07:04.6830097Z ##[debug] ] +2024-05-29T06:07:04.6830324Z ##[debug] } +2024-05-29T06:07:04.6830550Z ##[debug] }, +2024-05-29T06:07:04.6830782Z ##[debug] "workflow": { +2024-05-29T06:07:04.6831057Z ##[debug] "name": "👕", +2024-05-29T06:07:04.6831498Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:04.6831958Z ##[debug] }, +2024-05-29T06:07:04.6832189Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.6832501Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:07:04.6832837Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.6833147Z ##[debug] "workflow": { +2024-05-29T06:07:04.6833430Z ##[debug] "name": "👕", +2024-05-29T06:07:04.6833874Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:04.6834332Z ##[debug] } +2024-05-29T06:07:04.6834561Z ##[debug] } +2024-05-29T06:07:04.6834782Z ##[debug] }, +2024-05-29T06:07:04.6834994Z ##[debug] { +2024-05-29T06:07:04.6835222Z ##[debug] "checkRun": { +2024-05-29T06:07:04.6835512Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:07:04.6835843Z ##[debug] "name": "dprint", +2024-05-29T06:07:04.6836151Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6836743Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:07:04.6837343Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6837649Z ##[debug] }, +2024-05-29T06:07:04.6837886Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.6838281Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6838602Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:04.6838926Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.6839239Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:07:04.6839589Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.6839915Z ##[debug] "workflow": { +2024-05-29T06:07:04.6840207Z ##[debug] "name": "👕", +2024-05-29T06:07:04.6840655Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:04.6841269Z ##[debug] } +2024-05-29T06:07:04.6841512Z ##[debug] }, +2024-05-29T06:07:04.6841746Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.6842038Z ##[debug] "totalCount": 4, +2024-05-29T06:07:04.6842343Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.6842779Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.6843187Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:07:04.6843578Z ##[debug] }, +2024-05-29T06:07:04.6843818Z ##[debug] "nodes": [ +2024-05-29T06:07:04.6844101Z ##[debug] { +2024-05-29T06:07:04.6844660Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:07:04.6845247Z ##[debug] "name": "typos", +2024-05-29T06:07:04.6845782Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6846840Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:07:04.6847942Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6848598Z ##[debug] }, +2024-05-29T06:07:04.6848951Z ##[debug] { +2024-05-29T06:07:04.6849341Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:07:04.6849834Z ##[debug] "name": "dprint", +2024-05-29T06:07:04.6850331Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6851222Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:07:04.6852151Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6852679Z ##[debug] }, +2024-05-29T06:07:04.6853068Z ##[debug] { +2024-05-29T06:07:04.6853504Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:07:04.6854019Z ##[debug] "name": "deno_lint", +2024-05-29T06:07:04.6854577Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6855553Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:07:04.6856549Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6856879Z ##[debug] }, +2024-05-29T06:07:04.6857122Z ##[debug] { +2024-05-29T06:07:04.6857387Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:07:04.6857745Z ##[debug] "name": "yamlfmt", +2024-05-29T06:07:04.6858262Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6858875Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:07:04.6859492Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6859817Z ##[debug] } +2024-05-29T06:07:04.6860062Z ##[debug] ] +2024-05-29T06:07:04.6860291Z ##[debug] } +2024-05-29T06:07:04.6860517Z ##[debug] }, +2024-05-29T06:07:04.6860749Z ##[debug] "workflow": { +2024-05-29T06:07:04.6861029Z ##[debug] "name": "👕", +2024-05-29T06:07:04.6861471Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:04.6861934Z ##[debug] }, +2024-05-29T06:07:04.6862167Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.6862470Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:07:04.6862815Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.6863132Z ##[debug] "workflow": { +2024-05-29T06:07:04.6863417Z ##[debug] "name": "👕", +2024-05-29T06:07:04.6863864Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:04.6864322Z ##[debug] } +2024-05-29T06:07:04.6864550Z ##[debug] } +2024-05-29T06:07:04.6864772Z ##[debug] }, +2024-05-29T06:07:04.6864985Z ##[debug] { +2024-05-29T06:07:04.6865212Z ##[debug] "checkRun": { +2024-05-29T06:07:04.6865502Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:07:04.6865830Z ##[debug] "name": "deno_lint", +2024-05-29T06:07:04.6866148Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6867083Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:07:04.6867683Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6867994Z ##[debug] }, +2024-05-29T06:07:04.6868557Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.6868856Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6869191Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:04.6869517Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.6869833Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:07:04.6870182Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.6870512Z ##[debug] "workflow": { +2024-05-29T06:07:04.6870808Z ##[debug] "name": "👕", +2024-05-29T06:07:04.6871258Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:04.6871727Z ##[debug] } +2024-05-29T06:07:04.6871963Z ##[debug] }, +2024-05-29T06:07:04.6872205Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.6872499Z ##[debug] "totalCount": 4, +2024-05-29T06:07:04.6872801Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.6873100Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.6873522Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:07:04.6873913Z ##[debug] }, +2024-05-29T06:07:04.6874153Z ##[debug] "nodes": [ +2024-05-29T06:07:04.6874418Z ##[debug] { +2024-05-29T06:07:04.6874701Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:07:04.6875042Z ##[debug] "name": "typos", +2024-05-29T06:07:04.6875377Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6875993Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:07:04.6876609Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6876928Z ##[debug] }, +2024-05-29T06:07:04.6877179Z ##[debug] { +2024-05-29T06:07:04.6877454Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:07:04.6877797Z ##[debug] "name": "dprint", +2024-05-29T06:07:04.6878313Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6878926Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:07:04.6879527Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6879853Z ##[debug] }, +2024-05-29T06:07:04.6880094Z ##[debug] { +2024-05-29T06:07:04.6880362Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:07:04.6880717Z ##[debug] "name": "deno_lint", +2024-05-29T06:07:04.6881064Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6881645Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:07:04.6882251Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6882573Z ##[debug] }, +2024-05-29T06:07:04.6882815Z ##[debug] { +2024-05-29T06:07:04.6883081Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:07:04.6883425Z ##[debug] "name": "yamlfmt", +2024-05-29T06:07:04.6883769Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6884363Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:07:04.6884976Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6885305Z ##[debug] } +2024-05-29T06:07:04.6885535Z ##[debug] ] +2024-05-29T06:07:04.6885772Z ##[debug] } +2024-05-29T06:07:04.6886005Z ##[debug] }, +2024-05-29T06:07:04.6886232Z ##[debug] "workflow": { +2024-05-29T06:07:04.6886517Z ##[debug] "name": "👕", +2024-05-29T06:07:04.6886956Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:04.6887542Z ##[debug] }, +2024-05-29T06:07:04.6887786Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.6888250Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:07:04.6888587Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.6889029Z ##[debug] "workflow": { +2024-05-29T06:07:04.6889313Z ##[debug] "name": "👕", +2024-05-29T06:07:04.6889758Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:04.6890224Z ##[debug] } +2024-05-29T06:07:04.6890448Z ##[debug] } +2024-05-29T06:07:04.6890673Z ##[debug] }, +2024-05-29T06:07:04.6890885Z ##[debug] { +2024-05-29T06:07:04.6891110Z ##[debug] "checkRun": { +2024-05-29T06:07:04.6891402Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:07:04.6891726Z ##[debug] "name": "yamlfmt", +2024-05-29T06:07:04.6892037Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6892637Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:07:04.6893227Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6893536Z ##[debug] }, +2024-05-29T06:07:04.6893772Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.6894055Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6894392Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:04.6894710Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.6895017Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:07:04.6895367Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.6895690Z ##[debug] "workflow": { +2024-05-29T06:07:04.6895979Z ##[debug] "name": "👕", +2024-05-29T06:07:04.6896429Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:04.6896891Z ##[debug] } +2024-05-29T06:07:04.6897123Z ##[debug] }, +2024-05-29T06:07:04.6897364Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.6897661Z ##[debug] "totalCount": 4, +2024-05-29T06:07:04.6897958Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.6898472Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.6898885Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:07:04.6899288Z ##[debug] }, +2024-05-29T06:07:04.6899527Z ##[debug] "nodes": [ +2024-05-29T06:07:04.6899792Z ##[debug] { +2024-05-29T06:07:04.6900081Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:07:04.6900424Z ##[debug] "name": "typos", +2024-05-29T06:07:04.6900759Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6901364Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:07:04.6901970Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6902297Z ##[debug] }, +2024-05-29T06:07:04.6902541Z ##[debug] { +2024-05-29T06:07:04.6902813Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:07:04.6903161Z ##[debug] "name": "dprint", +2024-05-29T06:07:04.6903496Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6904086Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:07:04.6904693Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6905018Z ##[debug] }, +2024-05-29T06:07:04.6905258Z ##[debug] { +2024-05-29T06:07:04.6905524Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:07:04.6905873Z ##[debug] "name": "deno_lint", +2024-05-29T06:07:04.6906217Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6906802Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:07:04.6907413Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6907735Z ##[debug] }, +2024-05-29T06:07:04.6908276Z ##[debug] { +2024-05-29T06:07:04.6908574Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:07:04.6908922Z ##[debug] "name": "yamlfmt", +2024-05-29T06:07:04.6909258Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6909983Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:07:04.6910614Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6910942Z ##[debug] } +2024-05-29T06:07:04.6911180Z ##[debug] ] +2024-05-29T06:07:04.6911417Z ##[debug] } +2024-05-29T06:07:04.6911644Z ##[debug] }, +2024-05-29T06:07:04.6911871Z ##[debug] "workflow": { +2024-05-29T06:07:04.6912149Z ##[debug] "name": "👕", +2024-05-29T06:07:04.6912591Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:04.6913049Z ##[debug] }, +2024-05-29T06:07:04.6913295Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.6913605Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:07:04.6913941Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.6914271Z ##[debug] "workflow": { +2024-05-29T06:07:04.6914555Z ##[debug] "name": "👕", +2024-05-29T06:07:04.6915014Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:04.6915482Z ##[debug] } +2024-05-29T06:07:04.6915709Z ##[debug] } +2024-05-29T06:07:04.6915923Z ##[debug] }, +2024-05-29T06:07:04.6916140Z ##[debug] { +2024-05-29T06:07:04.6916366Z ##[debug] "checkRun": { +2024-05-29T06:07:04.6916653Z ##[debug] "databaseId": 25536411289, +2024-05-29T06:07:04.6916987Z ##[debug] "name": "gitleaks", +2024-05-29T06:07:04.6917300Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6917886Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", +2024-05-29T06:07:04.6918703Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6919012Z ##[debug] }, +2024-05-29T06:07:04.6919244Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.6919532Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6919864Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:04.6920195Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.6920507Z ##[debug] "databaseId": 9281068678, +2024-05-29T06:07:04.6920863Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.6921189Z ##[debug] "workflow": { +2024-05-29T06:07:04.6921478Z ##[debug] "name": "💧", +2024-05-29T06:07:04.6921950Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:07:04.6922432Z ##[debug] } +2024-05-29T06:07:04.6922659Z ##[debug] }, +2024-05-29T06:07:04.6922901Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.6923193Z ##[debug] "totalCount": 1, +2024-05-29T06:07:04.6923494Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.6923800Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.6924212Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpk=" +2024-05-29T06:07:04.6924598Z ##[debug] }, +2024-05-29T06:07:04.6924846Z ##[debug] "nodes": [ +2024-05-29T06:07:04.6925119Z ##[debug] { +2024-05-29T06:07:04.6925393Z ##[debug] "databaseId": 25536411289, +2024-05-29T06:07:04.6925745Z ##[debug] "name": "gitleaks", +2024-05-29T06:07:04.6926089Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6926699Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", +2024-05-29T06:07:04.6927322Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6927653Z ##[debug] } +2024-05-29T06:07:04.6927896Z ##[debug] ] +2024-05-29T06:07:04.6928276Z ##[debug] } +2024-05-29T06:07:04.6928506Z ##[debug] }, +2024-05-29T06:07:04.6928878Z ##[debug] "workflow": { +2024-05-29T06:07:04.6929153Z ##[debug] "name": "💧", +2024-05-29T06:07:04.6929608Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:07:04.6930087Z ##[debug] }, +2024-05-29T06:07:04.6930431Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.6930733Z ##[debug] "databaseId": 9281068678, +2024-05-29T06:07:04.6931069Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.6931381Z ##[debug] "workflow": { +2024-05-29T06:07:04.6931665Z ##[debug] "name": "💧", +2024-05-29T06:07:04.6932121Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:07:04.6932592Z ##[debug] } +2024-05-29T06:07:04.6932816Z ##[debug] } +2024-05-29T06:07:04.6933039Z ##[debug] }, +2024-05-29T06:07:04.6933252Z ##[debug] { +2024-05-29T06:07:04.6933474Z ##[debug] "checkRun": { +2024-05-29T06:07:04.6933765Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:07:04.6934106Z ##[debug] "name": "intermediate", +2024-05-29T06:07:04.6934433Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6935031Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:07:04.6935632Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6935930Z ##[debug] }, +2024-05-29T06:07:04.6936165Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.6936462Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:04.6936782Z ##[debug] "conclusion": null, +2024-05-29T06:07:04.6937098Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.6937416Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:04.6937759Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.6938236Z ##[debug] "workflow": { +2024-05-29T06:07:04.6938609Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:04.6939189Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:04.6939697Z ##[debug] } +2024-05-29T06:07:04.6939934Z ##[debug] }, +2024-05-29T06:07:04.6940168Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.6940460Z ##[debug] "totalCount": 6, +2024-05-29T06:07:04.6940775Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.6941075Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.6941483Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:07:04.6941873Z ##[debug] }, +2024-05-29T06:07:04.6942112Z ##[debug] "nodes": [ +2024-05-29T06:07:04.6942379Z ##[debug] { +2024-05-29T06:07:04.6942660Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:07:04.6943024Z ##[debug] "name": "intermediate", +2024-05-29T06:07:04.6943386Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6944004Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:07:04.6944615Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6944964Z ##[debug] }, +2024-05-29T06:07:04.6945208Z ##[debug] { +2024-05-29T06:07:04.6945482Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:07:04.6945841Z ##[debug] "name": "wait-success", +2024-05-29T06:07:04.6946195Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:04.6946807Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:07:04.6947402Z ##[debug] "conclusion": null +2024-05-29T06:07:04.6947708Z ##[debug] }, +2024-05-29T06:07:04.6947950Z ##[debug] { +2024-05-29T06:07:04.6948361Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:07:04.6948744Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:07:04.6949127Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6949858Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:07:04.6950463Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6950789Z ##[debug] }, +2024-05-29T06:07:04.6951134Z ##[debug] { +2024-05-29T06:07:04.6951398Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:07:04.6951754Z ##[debug] "name": "wait-fail", +2024-05-29T06:07:04.6952108Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:04.6952707Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:07:04.6953299Z ##[debug] "conclusion": null +2024-05-29T06:07:04.6953612Z ##[debug] }, +2024-05-29T06:07:04.6953853Z ##[debug] { +2024-05-29T06:07:04.6954122Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:07:04.6954498Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:07:04.6954872Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6955462Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:07:04.6956072Z ##[debug] "conclusion": "FAILURE" +2024-05-29T06:07:04.6956402Z ##[debug] }, +2024-05-29T06:07:04.6956637Z ##[debug] { +2024-05-29T06:07:04.6956908Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:07:04.6957289Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:07:04.6957668Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:04.6958444Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:07:04.6959036Z ##[debug] "conclusion": null +2024-05-29T06:07:04.6959345Z ##[debug] } +2024-05-29T06:07:04.6959575Z ##[debug] ] +2024-05-29T06:07:04.6959810Z ##[debug] } +2024-05-29T06:07:04.6960039Z ##[debug] }, +2024-05-29T06:07:04.6960264Z ##[debug] "workflow": { +2024-05-29T06:07:04.6960597Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:04.6961166Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:04.6961668Z ##[debug] }, +2024-05-29T06:07:04.6961905Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.6962208Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:04.6962543Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.6962863Z ##[debug] "workflow": { +2024-05-29T06:07:04.6963205Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:04.6963757Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:04.6964253Z ##[debug] } +2024-05-29T06:07:04.6964477Z ##[debug] } +2024-05-29T06:07:04.6964698Z ##[debug] }, +2024-05-29T06:07:04.6964923Z ##[debug] { +2024-05-29T06:07:04.6965154Z ##[debug] "checkRun": { +2024-05-29T06:07:04.6965443Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:07:04.6965785Z ##[debug] "name": "wait-success", +2024-05-29T06:07:04.6966120Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:04.6966713Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:07:04.6967303Z ##[debug] "conclusion": null +2024-05-29T06:07:04.6967594Z ##[debug] }, +2024-05-29T06:07:04.6967830Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.6968298Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:04.6968624Z ##[debug] "conclusion": null, +2024-05-29T06:07:04.6968936Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.6969244Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:04.6969590Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.6969916Z ##[debug] "workflow": { +2024-05-29T06:07:04.6970390Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:04.6970972Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:04.6971484Z ##[debug] } +2024-05-29T06:07:04.6971825Z ##[debug] }, +2024-05-29T06:07:04.6972064Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.6972359Z ##[debug] "totalCount": 6, +2024-05-29T06:07:04.6972653Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.6972959Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.6973367Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:07:04.6973749Z ##[debug] }, +2024-05-29T06:07:04.6974000Z ##[debug] "nodes": [ +2024-05-29T06:07:04.6974266Z ##[debug] { +2024-05-29T06:07:04.6974539Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:07:04.6974907Z ##[debug] "name": "intermediate", +2024-05-29T06:07:04.6975271Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6975880Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:07:04.6976491Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6976822Z ##[debug] }, +2024-05-29T06:07:04.6977065Z ##[debug] { +2024-05-29T06:07:04.6977335Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:07:04.6977698Z ##[debug] "name": "wait-success", +2024-05-29T06:07:04.6978208Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:04.6978853Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:07:04.6979449Z ##[debug] "conclusion": null +2024-05-29T06:07:04.6979758Z ##[debug] }, +2024-05-29T06:07:04.6979994Z ##[debug] { +2024-05-29T06:07:04.6980277Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:07:04.6980664Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:07:04.6981050Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6981647Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:07:04.6982261Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6982583Z ##[debug] }, +2024-05-29T06:07:04.6982817Z ##[debug] { +2024-05-29T06:07:04.6983089Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:07:04.6983447Z ##[debug] "name": "wait-fail", +2024-05-29T06:07:04.6983792Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:04.6984396Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:07:04.6984995Z ##[debug] "conclusion": null +2024-05-29T06:07:04.6985302Z ##[debug] }, +2024-05-29T06:07:04.6985537Z ##[debug] { +2024-05-29T06:07:04.6985815Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:07:04.6986183Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:07:04.6986551Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6987147Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:07:04.6987754Z ##[debug] "conclusion": "FAILURE" +2024-05-29T06:07:04.6988166Z ##[debug] }, +2024-05-29T06:07:04.6988409Z ##[debug] { +2024-05-29T06:07:04.6988680Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:07:04.6989053Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:07:04.6989436Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:04.6990049Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:07:04.6990632Z ##[debug] "conclusion": null +2024-05-29T06:07:04.6991082Z ##[debug] } +2024-05-29T06:07:04.6991323Z ##[debug] ] +2024-05-29T06:07:04.6991558Z ##[debug] } +2024-05-29T06:07:04.6991775Z ##[debug] }, +2024-05-29T06:07:04.6992006Z ##[debug] "workflow": { +2024-05-29T06:07:04.6992448Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:04.6993002Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:04.6993499Z ##[debug] }, +2024-05-29T06:07:04.6993736Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.6994033Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:04.6994372Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.6994691Z ##[debug] "workflow": { +2024-05-29T06:07:04.6995021Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:04.6995584Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:04.6996086Z ##[debug] } +2024-05-29T06:07:04.6996306Z ##[debug] } +2024-05-29T06:07:04.6996527Z ##[debug] }, +2024-05-29T06:07:04.6996746Z ##[debug] { +2024-05-29T06:07:04.6996965Z ##[debug] "checkRun": { +2024-05-29T06:07:04.6997258Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:07:04.6997631Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:07:04.6997982Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.6998675Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:07:04.6999270Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.6999572Z ##[debug] }, +2024-05-29T06:07:04.6999802Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.7000094Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:04.7000415Z ##[debug] "conclusion": null, +2024-05-29T06:07:04.7000717Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7001038Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:04.7001386Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7001712Z ##[debug] "workflow": { +2024-05-29T06:07:04.7002061Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:04.7002633Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:04.7003133Z ##[debug] } +2024-05-29T06:07:04.7003368Z ##[debug] }, +2024-05-29T06:07:04.7003607Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.7003893Z ##[debug] "totalCount": 6, +2024-05-29T06:07:04.7004199Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.7004505Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.7004910Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:07:04.7005295Z ##[debug] }, +2024-05-29T06:07:04.7005540Z ##[debug] "nodes": [ +2024-05-29T06:07:04.7005796Z ##[debug] { +2024-05-29T06:07:04.7006080Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:07:04.7006452Z ##[debug] "name": "intermediate", +2024-05-29T06:07:04.7006809Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7007408Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:07:04.7008020Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7008439Z ##[debug] }, +2024-05-29T06:07:04.7008677Z ##[debug] { +2024-05-29T06:07:04.7008952Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:07:04.7009308Z ##[debug] "name": "wait-success", +2024-05-29T06:07:04.7009660Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:04.7010272Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:07:04.7010868Z ##[debug] "conclusion": null +2024-05-29T06:07:04.7011170Z ##[debug] }, +2024-05-29T06:07:04.7011535Z ##[debug] { +2024-05-29T06:07:04.7011813Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:07:04.7012190Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:07:04.7012568Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7013271Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:07:04.7013873Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7014192Z ##[debug] }, +2024-05-29T06:07:04.7014435Z ##[debug] { +2024-05-29T06:07:04.7014711Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:07:04.7015056Z ##[debug] "name": "wait-fail", +2024-05-29T06:07:04.7015406Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:04.7016009Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:07:04.7016605Z ##[debug] "conclusion": null +2024-05-29T06:07:04.7016907Z ##[debug] }, +2024-05-29T06:07:04.7017147Z ##[debug] { +2024-05-29T06:07:04.7017417Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:07:04.7017783Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:07:04.7018256Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7018852Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:07:04.7019446Z ##[debug] "conclusion": "FAILURE" +2024-05-29T06:07:04.7019771Z ##[debug] }, +2024-05-29T06:07:04.7020010Z ##[debug] { +2024-05-29T06:07:04.7020272Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:07:04.7020656Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:07:04.7021040Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:04.7021640Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:07:04.7022227Z ##[debug] "conclusion": null +2024-05-29T06:07:04.7022533Z ##[debug] } +2024-05-29T06:07:04.7022795Z ##[debug] ] +2024-05-29T06:07:04.7023061Z ##[debug] } +2024-05-29T06:07:04.7023284Z ##[debug] }, +2024-05-29T06:07:04.7023512Z ##[debug] "workflow": { +2024-05-29T06:07:04.7023836Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:04.7024394Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:04.7024893Z ##[debug] }, +2024-05-29T06:07:04.7025123Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7025428Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:04.7025765Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7026078Z ##[debug] "workflow": { +2024-05-29T06:07:04.7026418Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:04.7026985Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:04.7027477Z ##[debug] } +2024-05-29T06:07:04.7027707Z ##[debug] } +2024-05-29T06:07:04.7027927Z ##[debug] }, +2024-05-29T06:07:04.7028241Z ##[debug] { +2024-05-29T06:07:04.7028468Z ##[debug] "checkRun": { +2024-05-29T06:07:04.7028761Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:07:04.7029089Z ##[debug] "name": "wait-fail", +2024-05-29T06:07:04.7029410Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:04.7030000Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:07:04.7030587Z ##[debug] "conclusion": null +2024-05-29T06:07:04.7030868Z ##[debug] }, +2024-05-29T06:07:04.7031103Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.7031399Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:04.7031843Z ##[debug] "conclusion": null, +2024-05-29T06:07:04.7032155Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7032475Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:04.7032815Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7033140Z ##[debug] "workflow": { +2024-05-29T06:07:04.7033600Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:04.7034166Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:04.7034666Z ##[debug] } +2024-05-29T06:07:04.7034902Z ##[debug] }, +2024-05-29T06:07:04.7035135Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.7035426Z ##[debug] "totalCount": 6, +2024-05-29T06:07:04.7035729Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.7036030Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.7036439Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:07:04.7036831Z ##[debug] }, +2024-05-29T06:07:04.7037077Z ##[debug] "nodes": [ +2024-05-29T06:07:04.7037344Z ##[debug] { +2024-05-29T06:07:04.7037623Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:07:04.7037995Z ##[debug] "name": "intermediate", +2024-05-29T06:07:04.7038453Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7039060Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:07:04.7039668Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7039986Z ##[debug] }, +2024-05-29T06:07:04.7040229Z ##[debug] { +2024-05-29T06:07:04.7040503Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:07:04.7040855Z ##[debug] "name": "wait-success", +2024-05-29T06:07:04.7041219Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:04.7041836Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:07:04.7042423Z ##[debug] "conclusion": null +2024-05-29T06:07:04.7042733Z ##[debug] }, +2024-05-29T06:07:04.7042984Z ##[debug] { +2024-05-29T06:07:04.7043257Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:07:04.7043638Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:07:04.7044022Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7044619Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:07:04.7045243Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7045569Z ##[debug] }, +2024-05-29T06:07:04.7045808Z ##[debug] { +2024-05-29T06:07:04.7046072Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:07:04.7046428Z ##[debug] "name": "wait-fail", +2024-05-29T06:07:04.7046776Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:04.7047374Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:07:04.7047963Z ##[debug] "conclusion": null +2024-05-29T06:07:04.7048367Z ##[debug] }, +2024-05-29T06:07:04.7048611Z ##[debug] { +2024-05-29T06:07:04.7048880Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:07:04.7049253Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:07:04.7049627Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7050218Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:07:04.7050830Z ##[debug] "conclusion": "FAILURE" +2024-05-29T06:07:04.7051151Z ##[debug] }, +2024-05-29T06:07:04.7051386Z ##[debug] { +2024-05-29T06:07:04.7051659Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:07:04.7052041Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:07:04.7052566Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:04.7053177Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:07:04.7053766Z ##[debug] "conclusion": null +2024-05-29T06:07:04.7054338Z ##[debug] } +2024-05-29T06:07:04.7054569Z ##[debug] ] +2024-05-29T06:07:04.7054800Z ##[debug] } +2024-05-29T06:07:04.7055021Z ##[debug] }, +2024-05-29T06:07:04.7055244Z ##[debug] "workflow": { +2024-05-29T06:07:04.7055568Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:04.7056126Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:04.7056614Z ##[debug] }, +2024-05-29T06:07:04.7056851Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7057154Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:04.7057486Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7057808Z ##[debug] "workflow": { +2024-05-29T06:07:04.7058248Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:04.7058810Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:04.7059314Z ##[debug] } +2024-05-29T06:07:04.7059540Z ##[debug] } +2024-05-29T06:07:04.7059755Z ##[debug] }, +2024-05-29T06:07:04.7059972Z ##[debug] { +2024-05-29T06:07:04.7060195Z ##[debug] "checkRun": { +2024-05-29T06:07:04.7060483Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:07:04.7060838Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:07:04.7061188Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7061777Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:07:04.7062362Z ##[debug] "conclusion": "FAILURE" +2024-05-29T06:07:04.7062666Z ##[debug] }, +2024-05-29T06:07:04.7062903Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.7063192Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:04.7063515Z ##[debug] "conclusion": null, +2024-05-29T06:07:04.7063828Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7064139Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:04.7064492Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7064824Z ##[debug] "workflow": { +2024-05-29T06:07:04.7075229Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:04.7075882Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:04.7076400Z ##[debug] } +2024-05-29T06:07:04.7076646Z ##[debug] }, +2024-05-29T06:07:04.7076891Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.7077192Z ##[debug] "totalCount": 6, +2024-05-29T06:07:04.7077505Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.7077819Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.7078366Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:07:04.7078760Z ##[debug] }, +2024-05-29T06:07:04.7079001Z ##[debug] "nodes": [ +2024-05-29T06:07:04.7079277Z ##[debug] { +2024-05-29T06:07:04.7079567Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:07:04.7079938Z ##[debug] "name": "intermediate", +2024-05-29T06:07:04.7080310Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7080936Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:07:04.7081555Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7081874Z ##[debug] }, +2024-05-29T06:07:04.7082123Z ##[debug] { +2024-05-29T06:07:04.7082393Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:07:04.7082756Z ##[debug] "name": "wait-success", +2024-05-29T06:07:04.7083350Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:04.7083972Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:07:04.7084571Z ##[debug] "conclusion": null +2024-05-29T06:07:04.7084996Z ##[debug] }, +2024-05-29T06:07:04.7085243Z ##[debug] { +2024-05-29T06:07:04.7085511Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:07:04.7085907Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:07:04.7086298Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7086899Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:07:04.7087508Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7087833Z ##[debug] }, +2024-05-29T06:07:04.7088181Z ##[debug] { +2024-05-29T06:07:04.7088450Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:07:04.7088806Z ##[debug] "name": "wait-fail", +2024-05-29T06:07:04.7089161Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:04.7089762Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:07:04.7090368Z ##[debug] "conclusion": null +2024-05-29T06:07:04.7090677Z ##[debug] }, +2024-05-29T06:07:04.7090912Z ##[debug] { +2024-05-29T06:07:04.7091186Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:07:04.7091558Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:07:04.7091928Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7092529Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:07:04.7093139Z ##[debug] "conclusion": "FAILURE" +2024-05-29T06:07:04.7093462Z ##[debug] }, +2024-05-29T06:07:04.7093697Z ##[debug] { +2024-05-29T06:07:04.7093973Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:07:04.7094354Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:07:04.7094735Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:04.7095335Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:07:04.7095932Z ##[debug] "conclusion": null +2024-05-29T06:07:04.7096236Z ##[debug] } +2024-05-29T06:07:04.7096473Z ##[debug] ] +2024-05-29T06:07:04.7096709Z ##[debug] } +2024-05-29T06:07:04.7096930Z ##[debug] }, +2024-05-29T06:07:04.7097168Z ##[debug] "workflow": { +2024-05-29T06:07:04.7097507Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:04.7098172Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:04.7098679Z ##[debug] }, +2024-05-29T06:07:04.7098926Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7099227Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:04.7099571Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7099893Z ##[debug] "workflow": { +2024-05-29T06:07:04.7100236Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:04.7100798Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:04.7101298Z ##[debug] } +2024-05-29T06:07:04.7101522Z ##[debug] } +2024-05-29T06:07:04.7101740Z ##[debug] }, +2024-05-29T06:07:04.7101962Z ##[debug] { +2024-05-29T06:07:04.7102191Z ##[debug] "checkRun": { +2024-05-29T06:07:04.7102480Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:07:04.7102844Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:07:04.7103202Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:04.7103914Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:07:04.7104511Z ##[debug] "conclusion": null +2024-05-29T06:07:04.7104808Z ##[debug] }, +2024-05-29T06:07:04.7105049Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.7105352Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:04.7105823Z ##[debug] "conclusion": null, +2024-05-29T06:07:04.7106131Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7106450Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:04.7106798Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7107121Z ##[debug] "workflow": { +2024-05-29T06:07:04.7107480Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:04.7108151Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:04.7108658Z ##[debug] } +2024-05-29T06:07:04.7108889Z ##[debug] }, +2024-05-29T06:07:04.7109131Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.7109430Z ##[debug] "totalCount": 6, +2024-05-29T06:07:04.7109727Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.7110039Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.7110447Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:07:04.7110842Z ##[debug] }, +2024-05-29T06:07:04.7111090Z ##[debug] "nodes": [ +2024-05-29T06:07:04.7111355Z ##[debug] { +2024-05-29T06:07:04.7111640Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:07:04.7112008Z ##[debug] "name": "intermediate", +2024-05-29T06:07:04.7112360Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7112966Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:07:04.7113574Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7113897Z ##[debug] }, +2024-05-29T06:07:04.7114132Z ##[debug] { +2024-05-29T06:07:04.7114410Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:07:04.7114529Z ##[debug] "name": "wait-success", +2024-05-29T06:07:04.7114653Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:04.7115011Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:07:04.7115124Z ##[debug] "conclusion": null +2024-05-29T06:07:04.7115214Z ##[debug] }, +2024-05-29T06:07:04.7115297Z ##[debug] { +2024-05-29T06:07:04.7115424Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:07:04.7115565Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:07:04.7115681Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7116036Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:07:04.7116150Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7116234Z ##[debug] }, +2024-05-29T06:07:04.7116325Z ##[debug] { +2024-05-29T06:07:04.7116445Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:07:04.7116553Z ##[debug] "name": "wait-fail", +2024-05-29T06:07:04.7116679Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:04.7117044Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:07:04.7117155Z ##[debug] "conclusion": null +2024-05-29T06:07:04.7117240Z ##[debug] }, +2024-05-29T06:07:04.7117322Z ##[debug] { +2024-05-29T06:07:04.7117450Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:07:04.7117583Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:07:04.7117702Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7118166Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:07:04.7118406Z ##[debug] "conclusion": "FAILURE" +2024-05-29T06:07:04.7118498Z ##[debug] }, +2024-05-29T06:07:04.7118580Z ##[debug] { +2024-05-29T06:07:04.7118695Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:07:04.7118841Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:07:04.7119064Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:04.7119420Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:07:04.7119529Z ##[debug] "conclusion": null +2024-05-29T06:07:04.7119612Z ##[debug] } +2024-05-29T06:07:04.7119694Z ##[debug] ] +2024-05-29T06:07:04.7119784Z ##[debug] } +2024-05-29T06:07:04.7119866Z ##[debug] }, +2024-05-29T06:07:04.7119963Z ##[debug] "workflow": { +2024-05-29T06:07:04.7120116Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:04.7120407Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:04.7120496Z ##[debug] }, +2024-05-29T06:07:04.7120593Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7120702Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:04.7120816Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7120914Z ##[debug] "workflow": { +2024-05-29T06:07:04.7121069Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:04.7121361Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:04.7121445Z ##[debug] } +2024-05-29T06:07:04.7121532Z ##[debug] } +2024-05-29T06:07:04.7121615Z ##[debug] }, +2024-05-29T06:07:04.7121697Z ##[debug] { +2024-05-29T06:07:04.7121797Z ##[debug] "checkRun": { +2024-05-29T06:07:04.7121907Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:07:04.7122029Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:07:04.7122142Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7122511Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:07:04.7122619Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:04.7122705Z ##[debug] }, +2024-05-29T06:07:04.7122805Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.7122911Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7123020Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:07:04.7123116Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7123238Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:07:04.7123348Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7123443Z ##[debug] "workflow": { +2024-05-29T06:07:04.7123577Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:04.7123885Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:04.7123970Z ##[debug] } +2024-05-29T06:07:04.7124068Z ##[debug] }, +2024-05-29T06:07:04.7124163Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.7124260Z ##[debug] "totalCount": 4, +2024-05-29T06:07:04.7124360Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.7124471Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.7124666Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:07:04.7124749Z ##[debug] }, +2024-05-29T06:07:04.7124839Z ##[debug] "nodes": [ +2024-05-29T06:07:04.7124929Z ##[debug] { +2024-05-29T06:07:04.7125054Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:07:04.7125185Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:07:04.7125310Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7125685Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:07:04.7125811Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:04.7125990Z ##[debug] }, +2024-05-29T06:07:04.7126076Z ##[debug] { +2024-05-29T06:07:04.7126203Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:07:04.7126308Z ##[debug] "name": "renovate", +2024-05-29T06:07:04.7126426Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7126898Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:07:04.7127016Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:04.7127098Z ##[debug] }, +2024-05-29T06:07:04.7127188Z ##[debug] { +2024-05-29T06:07:04.7127307Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:07:04.7127431Z ##[debug] "name": "selfup-runner", +2024-05-29T06:07:04.7127544Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7127897Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:07:04.7128023Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:04.7128207Z ##[debug] }, +2024-05-29T06:07:04.7128291Z ##[debug] { +2024-05-29T06:07:04.7128413Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:07:04.7128531Z ##[debug] "name": "dependabot", +2024-05-29T06:07:04.7128642Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7129015Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:07:04.7129135Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:04.7129224Z ##[debug] } +2024-05-29T06:07:04.7129306Z ##[debug] ] +2024-05-29T06:07:04.7129388Z ##[debug] } +2024-05-29T06:07:04.7129475Z ##[debug] }, +2024-05-29T06:07:04.7129567Z ##[debug] "workflow": { +2024-05-29T06:07:04.7129671Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:04.7129971Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:04.7130055Z ##[debug] }, +2024-05-29T06:07:04.7130151Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7130266Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:07:04.7130375Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7130479Z ##[debug] "workflow": { +2024-05-29T06:07:04.7130577Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:04.7130863Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:04.7130950Z ##[debug] } +2024-05-29T06:07:04.7131033Z ##[debug] } +2024-05-29T06:07:04.7131114Z ##[debug] }, +2024-05-29T06:07:04.7131201Z ##[debug] { +2024-05-29T06:07:04.7131292Z ##[debug] "checkRun": { +2024-05-29T06:07:04.7131402Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:07:04.7131504Z ##[debug] "name": "renovate", +2024-05-29T06:07:04.7131606Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7131981Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:07:04.7132089Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:04.7132171Z ##[debug] }, +2024-05-29T06:07:04.7132276Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.7132377Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7132484Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:07:04.7132588Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7132702Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:07:04.7132811Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7132912Z ##[debug] "workflow": { +2024-05-29T06:07:04.7133011Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:04.7133297Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:04.7133385Z ##[debug] } +2024-05-29T06:07:04.7133469Z ##[debug] }, +2024-05-29T06:07:04.7133693Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.7133793Z ##[debug] "totalCount": 4, +2024-05-29T06:07:04.7133887Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.7134004Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.7134290Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:07:04.7134374Z ##[debug] }, +2024-05-29T06:07:04.7134468Z ##[debug] "nodes": [ +2024-05-29T06:07:04.7134550Z ##[debug] { +2024-05-29T06:07:04.7134672Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:07:04.7134805Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:07:04.7134921Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7135289Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:07:04.7135409Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:04.7135492Z ##[debug] }, +2024-05-29T06:07:04.7135587Z ##[debug] { +2024-05-29T06:07:04.7135705Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:07:04.7135810Z ##[debug] "name": "renovate", +2024-05-29T06:07:04.7135929Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7136296Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:07:04.7136419Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:04.7136505Z ##[debug] }, +2024-05-29T06:07:04.7136587Z ##[debug] { +2024-05-29T06:07:04.7136712Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:07:04.7136832Z ##[debug] "name": "selfup-runner", +2024-05-29T06:07:04.7136944Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7137304Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:07:04.7137423Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:04.7137507Z ##[debug] }, +2024-05-29T06:07:04.7137599Z ##[debug] { +2024-05-29T06:07:04.7137716Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:07:04.7137833Z ##[debug] "name": "dependabot", +2024-05-29T06:07:04.7137953Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7138408Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:07:04.7138532Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:04.7138616Z ##[debug] } +2024-05-29T06:07:04.7138699Z ##[debug] ] +2024-05-29T06:07:04.7138787Z ##[debug] } +2024-05-29T06:07:04.7138867Z ##[debug] }, +2024-05-29T06:07:04.7138959Z ##[debug] "workflow": { +2024-05-29T06:07:04.7139065Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:04.7139353Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:04.7139439Z ##[debug] }, +2024-05-29T06:07:04.7139533Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7139639Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:07:04.7139754Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7139853Z ##[debug] "workflow": { +2024-05-29T06:07:04.7139951Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:04.7140238Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:04.7140320Z ##[debug] } +2024-05-29T06:07:04.7140402Z ##[debug] } +2024-05-29T06:07:04.7140491Z ##[debug] }, +2024-05-29T06:07:04.7140573Z ##[debug] { +2024-05-29T06:07:04.7140663Z ##[debug] "checkRun": { +2024-05-29T06:07:04.7140779Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:07:04.7140886Z ##[debug] "name": "selfup-runner", +2024-05-29T06:07:04.7140996Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7141482Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:07:04.7141593Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:04.7141681Z ##[debug] }, +2024-05-29T06:07:04.7141772Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.7141984Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7142098Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:07:04.7142193Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7142306Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:07:04.7142421Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7142514Z ##[debug] "workflow": { +2024-05-29T06:07:04.7142620Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:04.7142904Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:04.7142988Z ##[debug] } +2024-05-29T06:07:04.7143077Z ##[debug] }, +2024-05-29T06:07:04.7143177Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.7143274Z ##[debug] "totalCount": 4, +2024-05-29T06:07:04.7143373Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.7143482Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.7143660Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:07:04.7143756Z ##[debug] }, +2024-05-29T06:07:04.7143845Z ##[debug] "nodes": [ +2024-05-29T06:07:04.7143934Z ##[debug] { +2024-05-29T06:07:04.7144054Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:07:04.7144183Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:07:04.7144306Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7144665Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:07:04.7144783Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:04.7144875Z ##[debug] }, +2024-05-29T06:07:04.7144994Z ##[debug] { +2024-05-29T06:07:04.7145114Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:07:04.7145224Z ##[debug] "name": "renovate", +2024-05-29T06:07:04.7145337Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7145711Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:07:04.7145827Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:04.7145909Z ##[debug] }, +2024-05-29T06:07:04.7145997Z ##[debug] { +2024-05-29T06:07:04.7146115Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:07:04.7146233Z ##[debug] "name": "selfup-runner", +2024-05-29T06:07:04.7146352Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7146700Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:07:04.7146823Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:04.7146907Z ##[debug] }, +2024-05-29T06:07:04.7146992Z ##[debug] { +2024-05-29T06:07:04.7147113Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:07:04.7147225Z ##[debug] "name": "dependabot", +2024-05-29T06:07:04.7147342Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7147700Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:07:04.7147814Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:04.7147898Z ##[debug] } +2024-05-29T06:07:04.7147986Z ##[debug] ] +2024-05-29T06:07:04.7148230Z ##[debug] } +2024-05-29T06:07:04.7148320Z ##[debug] }, +2024-05-29T06:07:04.7148413Z ##[debug] "workflow": { +2024-05-29T06:07:04.7148511Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:04.7148798Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:04.7149003Z ##[debug] }, +2024-05-29T06:07:04.7149103Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7149216Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:07:04.7149322Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7149583Z ##[debug] "workflow": { +2024-05-29T06:07:04.7149685Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:04.7149969Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:04.7150056Z ##[debug] } +2024-05-29T06:07:04.7150137Z ##[debug] } +2024-05-29T06:07:04.7150218Z ##[debug] }, +2024-05-29T06:07:04.7150302Z ##[debug] { +2024-05-29T06:07:04.7150393Z ##[debug] "checkRun": { +2024-05-29T06:07:04.7150500Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:07:04.7150608Z ##[debug] "name": "dependabot", +2024-05-29T06:07:04.7150709Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7151078Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:07:04.7151193Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:04.7151274Z ##[debug] }, +2024-05-29T06:07:04.7151366Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.7151481Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7151588Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:07:04.7151690Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7151803Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:07:04.7151914Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7152014Z ##[debug] "workflow": { +2024-05-29T06:07:04.7152112Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:04.7152397Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:04.7152487Z ##[debug] } +2024-05-29T06:07:04.7152568Z ##[debug] }, +2024-05-29T06:07:04.7152661Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.7152769Z ##[debug] "totalCount": 4, +2024-05-29T06:07:04.7152866Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.7152983Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.7153160Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:07:04.7153251Z ##[debug] }, +2024-05-29T06:07:04.7153344Z ##[debug] "nodes": [ +2024-05-29T06:07:04.7153427Z ##[debug] { +2024-05-29T06:07:04.7153547Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:07:04.7153682Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:07:04.7153801Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7154160Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:07:04.7154284Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:04.7154368Z ##[debug] }, +2024-05-29T06:07:04.7154456Z ##[debug] { +2024-05-29T06:07:04.7154580Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:07:04.7154686Z ##[debug] "name": "renovate", +2024-05-29T06:07:04.7154805Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7155168Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:07:04.7155292Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:04.7155383Z ##[debug] }, +2024-05-29T06:07:04.7155466Z ##[debug] { +2024-05-29T06:07:04.7155586Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:07:04.7155712Z ##[debug] "name": "selfup-runner", +2024-05-29T06:07:04.7155827Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7156184Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:07:04.7156302Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:04.7156497Z ##[debug] }, +2024-05-29T06:07:04.7156589Z ##[debug] { +2024-05-29T06:07:04.7156707Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:07:04.7156819Z ##[debug] "name": "dependabot", +2024-05-29T06:07:04.7157015Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7157367Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:07:04.7157487Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:04.7157570Z ##[debug] } +2024-05-29T06:07:04.7157652Z ##[debug] ] +2024-05-29T06:07:04.7157737Z ##[debug] } +2024-05-29T06:07:04.7157819Z ##[debug] }, +2024-05-29T06:07:04.7157910Z ##[debug] "workflow": { +2024-05-29T06:07:04.7158014Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:04.7158400Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:04.7158491Z ##[debug] }, +2024-05-29T06:07:04.7158593Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7158699Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:07:04.7158808Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7158906Z ##[debug] "workflow": { +2024-05-29T06:07:04.7159011Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:04.7159301Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:04.7159382Z ##[debug] } +2024-05-29T06:07:04.7159464Z ##[debug] } +2024-05-29T06:07:04.7159550Z ##[debug] }, +2024-05-29T06:07:04.7159631Z ##[debug] { +2024-05-29T06:07:04.7159723Z ##[debug] "checkRun": { +2024-05-29T06:07:04.7159839Z ##[debug] "databaseId": 25536411287, +2024-05-29T06:07:04.7159931Z ##[debug] "name": "echo", +2024-05-29T06:07:04.7160032Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7160405Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", +2024-05-29T06:07:04.7160511Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7160598Z ##[debug] }, +2024-05-29T06:07:04.7160690Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.7160791Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7160915Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:04.7161011Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7161125Z ##[debug] "databaseId": 9281068684, +2024-05-29T06:07:04.7161242Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7161334Z ##[debug] "workflow": { +2024-05-29T06:07:04.7161457Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:07:04.7161754Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:07:04.7161836Z ##[debug] } +2024-05-29T06:07:04.7161923Z ##[debug] }, +2024-05-29T06:07:04.7162016Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.7162116Z ##[debug] "totalCount": 1, +2024-05-29T06:07:04.7162215Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.7162325Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.7162501Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpc=" +2024-05-29T06:07:04.7162595Z ##[debug] }, +2024-05-29T06:07:04.7162686Z ##[debug] "nodes": [ +2024-05-29T06:07:04.7162768Z ##[debug] { +2024-05-29T06:07:04.7162895Z ##[debug] "databaseId": 25536411287, +2024-05-29T06:07:04.7162993Z ##[debug] "name": "echo", +2024-05-29T06:07:04.7163107Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7163476Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", +2024-05-29T06:07:04.7163594Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7163683Z ##[debug] } +2024-05-29T06:07:04.7163765Z ##[debug] ] +2024-05-29T06:07:04.7163846Z ##[debug] } +2024-05-29T06:07:04.7164057Z ##[debug] }, +2024-05-29T06:07:04.7164152Z ##[debug] "workflow": { +2024-05-29T06:07:04.7164265Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:07:04.7164553Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:07:04.7164750Z ##[debug] }, +2024-05-29T06:07:04.7164845Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7164956Z ##[debug] "databaseId": 9281068684, +2024-05-29T06:07:04.7165061Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7165156Z ##[debug] "workflow": { +2024-05-29T06:07:04.7165271Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:07:04.7165558Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:07:04.7165648Z ##[debug] } +2024-05-29T06:07:04.7165732Z ##[debug] } +2024-05-29T06:07:04.7165812Z ##[debug] }, +2024-05-29T06:07:04.7165899Z ##[debug] { +2024-05-29T06:07:04.7165996Z ##[debug] "checkRun": { +2024-05-29T06:07:04.7166104Z ##[debug] "databaseId": 25536411604, +2024-05-29T06:07:04.7166200Z ##[debug] "name": "wait", +2024-05-29T06:07:04.7166301Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7166670Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", +2024-05-29T06:07:04.7166780Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7166862Z ##[debug] }, +2024-05-29T06:07:04.7166958Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.7167058Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7167164Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:04.7167267Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7167378Z ##[debug] "databaseId": 9281068685, +2024-05-29T06:07:04.7167492Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7167589Z ##[debug] "workflow": { +2024-05-29T06:07:04.7167708Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:07:04.7167988Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:07:04.7168191Z ##[debug] } +2024-05-29T06:07:04.7168275Z ##[debug] }, +2024-05-29T06:07:04.7168377Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.7168474Z ##[debug] "totalCount": 1, +2024-05-29T06:07:04.7168565Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.7168682Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.7168858Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWt9Q=" +2024-05-29T06:07:04.7168940Z ##[debug] }, +2024-05-29T06:07:04.7169033Z ##[debug] "nodes": [ +2024-05-29T06:07:04.7169116Z ##[debug] { +2024-05-29T06:07:04.7169235Z ##[debug] "databaseId": 25536411604, +2024-05-29T06:07:04.7169337Z ##[debug] "name": "wait", +2024-05-29T06:07:04.7169452Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7169823Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", +2024-05-29T06:07:04.7169940Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7170022Z ##[debug] } +2024-05-29T06:07:04.7170115Z ##[debug] ] +2024-05-29T06:07:04.7170197Z ##[debug] } +2024-05-29T06:07:04.7170278Z ##[debug] }, +2024-05-29T06:07:04.7170374Z ##[debug] "workflow": { +2024-05-29T06:07:04.7170477Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:07:04.7170746Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:07:04.7170835Z ##[debug] }, +2024-05-29T06:07:04.7170929Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7171041Z ##[debug] "databaseId": 9281068685, +2024-05-29T06:07:04.7171148Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7171238Z ##[debug] "workflow": { +2024-05-29T06:07:04.7171354Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:07:04.7171756Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:07:04.7171844Z ##[debug] } +2024-05-29T06:07:04.7171932Z ##[debug] } +2024-05-29T06:07:04.7172013Z ##[debug] }, +2024-05-29T06:07:04.7172199Z ##[debug] { +2024-05-29T06:07:04.7172295Z ##[debug] "checkRun": { +2024-05-29T06:07:04.7172401Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:07:04.7172506Z ##[debug] "name": "default_logic", +2024-05-29T06:07:04.7172613Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7172971Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:07:04.7173080Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7173161Z ##[debug] }, +2024-05-29T06:07:04.7173253Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.7173358Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7173467Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:04.7173563Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7173680Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:04.7173788Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7173879Z ##[debug] "workflow": { +2024-05-29T06:07:04.7173987Z ##[debug] "name": "Itself", +2024-05-29T06:07:04.7174243Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:04.7174331Z ##[debug] } +2024-05-29T06:07:04.7174413Z ##[debug] }, +2024-05-29T06:07:04.7174505Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.7174606Z ##[debug] "totalCount": 7, +2024-05-29T06:07:04.7174698Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.7174807Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.7174987Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:07:04.7175070Z ##[debug] }, +2024-05-29T06:07:04.7175163Z ##[debug] "nodes": [ +2024-05-29T06:07:04.7175252Z ##[debug] { +2024-05-29T06:07:04.7175372Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:07:04.7175491Z ##[debug] "name": "default_logic", +2024-05-29T06:07:04.7175612Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7175982Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:07:04.7176105Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7176190Z ##[debug] }, +2024-05-29T06:07:04.7176272Z ##[debug] { +2024-05-29T06:07:04.7176400Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:07:04.7176521Z ##[debug] "name": "equal_intervals", +2024-05-29T06:07:04.7176635Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7176991Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:07:04.7177112Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7177201Z ##[debug] }, +2024-05-29T06:07:04.7177283Z ##[debug] { +2024-05-29T06:07:04.7177400Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:07:04.7177578Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:07:04.7177690Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7178038Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:07:04.7178264Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7178347Z ##[debug] }, +2024-05-29T06:07:04.7178438Z ##[debug] { +2024-05-29T06:07:04.7178553Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:07:04.7178660Z ##[debug] "name": "skip-list", +2024-05-29T06:07:04.7178781Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7179261Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:07:04.7179382Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7179469Z ##[debug] }, +2024-05-29T06:07:04.7179655Z ##[debug] { +2024-05-29T06:07:04.7179783Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:07:04.7179998Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:07:04.7180110Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7180464Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:07:04.7180578Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7180663Z ##[debug] }, +2024-05-29T06:07:04.7180751Z ##[debug] { +2024-05-29T06:07:04.7180867Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:07:04.7181093Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:07:04.7181215Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7181569Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:07:04.7181696Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7181779Z ##[debug] }, +2024-05-29T06:07:04.7181863Z ##[debug] { +2024-05-29T06:07:04.7181987Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:07:04.7182095Z ##[debug] "name": "wait-list", +2024-05-29T06:07:04.7182209Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7182573Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:07:04.7182687Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7182776Z ##[debug] } +2024-05-29T06:07:04.7182858Z ##[debug] ] +2024-05-29T06:07:04.7182944Z ##[debug] } +2024-05-29T06:07:04.7183032Z ##[debug] }, +2024-05-29T06:07:04.7183122Z ##[debug] "workflow": { +2024-05-29T06:07:04.7183219Z ##[debug] "name": "Itself", +2024-05-29T06:07:04.7183481Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:04.7183568Z ##[debug] }, +2024-05-29T06:07:04.7183663Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7183778Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:04.7183887Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7183981Z ##[debug] "workflow": { +2024-05-29T06:07:04.7184085Z ##[debug] "name": "Itself", +2024-05-29T06:07:04.7184342Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:04.7184430Z ##[debug] } +2024-05-29T06:07:04.7184512Z ##[debug] } +2024-05-29T06:07:04.7184593Z ##[debug] }, +2024-05-29T06:07:04.7184678Z ##[debug] { +2024-05-29T06:07:04.7184772Z ##[debug] "checkRun": { +2024-05-29T06:07:04.7184880Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:07:04.7184997Z ##[debug] "name": "equal_intervals", +2024-05-29T06:07:04.7185098Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7185469Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:07:04.7185580Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7185663Z ##[debug] }, +2024-05-29T06:07:04.7185761Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.7185861Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7185966Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:04.7186069Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7186183Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:04.7186290Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7186389Z ##[debug] "workflow": { +2024-05-29T06:07:04.7186598Z ##[debug] "name": "Itself", +2024-05-29T06:07:04.7186856Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:04.7186944Z ##[debug] } +2024-05-29T06:07:04.7187027Z ##[debug] }, +2024-05-29T06:07:04.7187199Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.7187301Z ##[debug] "totalCount": 7, +2024-05-29T06:07:04.7187395Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.7187510Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.7187687Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:07:04.7187770Z ##[debug] }, +2024-05-29T06:07:04.7187863Z ##[debug] "nodes": [ +2024-05-29T06:07:04.7187946Z ##[debug] { +2024-05-29T06:07:04.7188165Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:07:04.7188292Z ##[debug] "name": "default_logic", +2024-05-29T06:07:04.7188409Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7188776Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:07:04.7188900Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7188983Z ##[debug] }, +2024-05-29T06:07:04.7189077Z ##[debug] { +2024-05-29T06:07:04.7189195Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:07:04.7189312Z ##[debug] "name": "equal_intervals", +2024-05-29T06:07:04.7189430Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7189786Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:07:04.7189900Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7189991Z ##[debug] }, +2024-05-29T06:07:04.7190075Z ##[debug] { +2024-05-29T06:07:04.7190194Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:07:04.7190369Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:07:04.7190482Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7190838Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:07:04.7190957Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7191040Z ##[debug] }, +2024-05-29T06:07:04.7191130Z ##[debug] { +2024-05-29T06:07:04.7191246Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:07:04.7191359Z ##[debug] "name": "skip-list", +2024-05-29T06:07:04.7191473Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7191832Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:07:04.7191952Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7192036Z ##[debug] }, +2024-05-29T06:07:04.7192119Z ##[debug] { +2024-05-29T06:07:04.7192245Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:07:04.7192441Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:07:04.7192557Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7192920Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:07:04.7193034Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7193123Z ##[debug] }, +2024-05-29T06:07:04.7193206Z ##[debug] { +2024-05-29T06:07:04.7193323Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:07:04.7193548Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:07:04.7193662Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7194014Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:07:04.7194257Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7194344Z ##[debug] }, +2024-05-29T06:07:04.7194435Z ##[debug] { +2024-05-29T06:07:04.7194553Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:07:04.7194659Z ##[debug] "name": "wait-list", +2024-05-29T06:07:04.7194884Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7195234Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:07:04.7195349Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7195438Z ##[debug] } +2024-05-29T06:07:04.7195519Z ##[debug] ] +2024-05-29T06:07:04.7195607Z ##[debug] } +2024-05-29T06:07:04.7195689Z ##[debug] }, +2024-05-29T06:07:04.7195781Z ##[debug] "workflow": { +2024-05-29T06:07:04.7195881Z ##[debug] "name": "Itself", +2024-05-29T06:07:04.7196139Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:04.7196222Z ##[debug] }, +2024-05-29T06:07:04.7196322Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7196430Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:04.7196537Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7196641Z ##[debug] "workflow": { +2024-05-29T06:07:04.7196736Z ##[debug] "name": "Itself", +2024-05-29T06:07:04.7196994Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:04.7197084Z ##[debug] } +2024-05-29T06:07:04.7197166Z ##[debug] } +2024-05-29T06:07:04.7197254Z ##[debug] }, +2024-05-29T06:07:04.7197337Z ##[debug] { +2024-05-29T06:07:04.7197430Z ##[debug] "checkRun": { +2024-05-29T06:07:04.7197545Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:07:04.7197712Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:07:04.7197815Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7198294Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:07:04.7198404Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7198486Z ##[debug] }, +2024-05-29T06:07:04.7198585Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.7198694Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7198808Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:04.7198904Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7199017Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:04.7199132Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7199224Z ##[debug] "workflow": { +2024-05-29T06:07:04.7199322Z ##[debug] "name": "Itself", +2024-05-29T06:07:04.7199588Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:04.7199670Z ##[debug] } +2024-05-29T06:07:04.7199755Z ##[debug] }, +2024-05-29T06:07:04.7199861Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.7199960Z ##[debug] "totalCount": 7, +2024-05-29T06:07:04.7200057Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.7200174Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.7200351Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:07:04.7200445Z ##[debug] }, +2024-05-29T06:07:04.7200534Z ##[debug] "nodes": [ +2024-05-29T06:07:04.7200616Z ##[debug] { +2024-05-29T06:07:04.7200744Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:07:04.7200864Z ##[debug] "name": "default_logic", +2024-05-29T06:07:04.7200979Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7201354Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:07:04.7201471Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7201559Z ##[debug] }, +2024-05-29T06:07:04.7201763Z ##[debug] { +2024-05-29T06:07:04.7201885Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:07:04.7202008Z ##[debug] "name": "equal_intervals", +2024-05-29T06:07:04.7202122Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7202592Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:07:04.7202714Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7202798Z ##[debug] }, +2024-05-29T06:07:04.7202880Z ##[debug] { +2024-05-29T06:07:04.7203001Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:07:04.7203172Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:07:04.7203292Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7203639Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:07:04.7203759Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7203849Z ##[debug] }, +2024-05-29T06:07:04.7203934Z ##[debug] { +2024-05-29T06:07:04.7204049Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:07:04.7204165Z ##[debug] "name": "skip-list", +2024-05-29T06:07:04.7204284Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7204645Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:07:04.7204762Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7204847Z ##[debug] }, +2024-05-29T06:07:04.7204934Z ##[debug] { +2024-05-29T06:07:04.7205054Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:07:04.7205250Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:07:04.7205369Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7205721Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:07:04.7205840Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7205923Z ##[debug] }, +2024-05-29T06:07:04.7206005Z ##[debug] { +2024-05-29T06:07:04.7206131Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:07:04.7206352Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:07:04.7206467Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7206824Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:07:04.7206938Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7207020Z ##[debug] }, +2024-05-29T06:07:04.7207108Z ##[debug] { +2024-05-29T06:07:04.7207224Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:07:04.7207339Z ##[debug] "name": "wait-list", +2024-05-29T06:07:04.7207452Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7207803Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:07:04.7207927Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7208008Z ##[debug] } +2024-05-29T06:07:04.7208187Z ##[debug] ] +2024-05-29T06:07:04.7208280Z ##[debug] } +2024-05-29T06:07:04.7208362Z ##[debug] }, +2024-05-29T06:07:04.7208454Z ##[debug] "workflow": { +2024-05-29T06:07:04.7208558Z ##[debug] "name": "Itself", +2024-05-29T06:07:04.7208814Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:04.7208902Z ##[debug] }, +2024-05-29T06:07:04.7208997Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7209105Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:04.7209217Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7209432Z ##[debug] "workflow": { +2024-05-29T06:07:04.7209530Z ##[debug] "name": "Itself", +2024-05-29T06:07:04.7209793Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:04.7209875Z ##[debug] } +2024-05-29T06:07:04.7210083Z ##[debug] } +2024-05-29T06:07:04.7210171Z ##[debug] }, +2024-05-29T06:07:04.7210252Z ##[debug] { +2024-05-29T06:07:04.7210344Z ##[debug] "checkRun": { +2024-05-29T06:07:04.7210459Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:07:04.7210561Z ##[debug] "name": "skip-list", +2024-05-29T06:07:04.7210668Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7211030Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:07:04.7211137Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7211222Z ##[debug] }, +2024-05-29T06:07:04.7211314Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.7211419Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7211531Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:04.7211627Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7211740Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:04.7211862Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7211954Z ##[debug] "workflow": { +2024-05-29T06:07:04.7212057Z ##[debug] "name": "Itself", +2024-05-29T06:07:04.7212313Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:04.7212395Z ##[debug] } +2024-05-29T06:07:04.7212481Z ##[debug] }, +2024-05-29T06:07:04.7212574Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.7212671Z ##[debug] "totalCount": 7, +2024-05-29T06:07:04.7212769Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.7212879Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.7213061Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:07:04.7213153Z ##[debug] }, +2024-05-29T06:07:04.7213244Z ##[debug] "nodes": [ +2024-05-29T06:07:04.7213333Z ##[debug] { +2024-05-29T06:07:04.7213453Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:07:04.7213583Z ##[debug] "name": "default_logic", +2024-05-29T06:07:04.7213701Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7214065Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:07:04.7214183Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7214271Z ##[debug] }, +2024-05-29T06:07:04.7214354Z ##[debug] { +2024-05-29T06:07:04.7214474Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:07:04.7214601Z ##[debug] "name": "equal_intervals", +2024-05-29T06:07:04.7214714Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7215077Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:07:04.7215194Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7215277Z ##[debug] }, +2024-05-29T06:07:04.7215365Z ##[debug] { +2024-05-29T06:07:04.7215487Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:07:04.7215655Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:07:04.7215776Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7216122Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:07:04.7216243Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7216326Z ##[debug] }, +2024-05-29T06:07:04.7216408Z ##[debug] { +2024-05-29T06:07:04.7216529Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:07:04.7216635Z ##[debug] "name": "skip-list", +2024-05-29T06:07:04.7216840Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7217205Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:07:04.7217321Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7217488Z ##[debug] }, +2024-05-29T06:07:04.7217572Z ##[debug] { +2024-05-29T06:07:04.7217689Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:07:04.7217892Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:07:04.7218005Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7218449Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:07:04.7218570Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7218653Z ##[debug] }, +2024-05-29T06:07:04.7218736Z ##[debug] { +2024-05-29T06:07:04.7218866Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:07:04.7219086Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:07:04.7219206Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7219568Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:07:04.7219686Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7219775Z ##[debug] }, +2024-05-29T06:07:04.7219856Z ##[debug] { +2024-05-29T06:07:04.7219971Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:07:04.7220086Z ##[debug] "name": "wait-list", +2024-05-29T06:07:04.7220200Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7220561Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:07:04.7220677Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7220765Z ##[debug] } +2024-05-29T06:07:04.7220852Z ##[debug] ] +2024-05-29T06:07:04.7220934Z ##[debug] } +2024-05-29T06:07:04.7221015Z ##[debug] }, +2024-05-29T06:07:04.7221113Z ##[debug] "workflow": { +2024-05-29T06:07:04.7221213Z ##[debug] "name": "Itself", +2024-05-29T06:07:04.7221467Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:04.7221553Z ##[debug] }, +2024-05-29T06:07:04.7221649Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7221761Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:04.7221868Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7221960Z ##[debug] "workflow": { +2024-05-29T06:07:04.7222061Z ##[debug] "name": "Itself", +2024-05-29T06:07:04.7222315Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:04.7222400Z ##[debug] } +2024-05-29T06:07:04.7222490Z ##[debug] } +2024-05-29T06:07:04.7222571Z ##[debug] }, +2024-05-29T06:07:04.7222652Z ##[debug] { +2024-05-29T06:07:04.7222748Z ##[debug] "checkRun": { +2024-05-29T06:07:04.7222857Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:07:04.7223052Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:07:04.7223166Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7223526Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:07:04.7223640Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7223723Z ##[debug] }, +2024-05-29T06:07:04.7223815Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.7223924Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7224029Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:04.7224125Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7224246Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:04.7224479Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7224576Z ##[debug] "workflow": { +2024-05-29T06:07:04.7224678Z ##[debug] "name": "Itself", +2024-05-29T06:07:04.7224936Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:04.7225128Z ##[debug] } +2024-05-29T06:07:04.7225209Z ##[debug] }, +2024-05-29T06:07:04.7225302Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.7225406Z ##[debug] "totalCount": 7, +2024-05-29T06:07:04.7225502Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.7225614Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.7225796Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:07:04.7225881Z ##[debug] }, +2024-05-29T06:07:04.7225968Z ##[debug] "nodes": [ +2024-05-29T06:07:04.7226058Z ##[debug] { +2024-05-29T06:07:04.7226177Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:07:04.7226307Z ##[debug] "name": "default_logic", +2024-05-29T06:07:04.7226423Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7226784Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:07:04.7226912Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7226996Z ##[debug] }, +2024-05-29T06:07:04.7227079Z ##[debug] { +2024-05-29T06:07:04.7227204Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:07:04.7227325Z ##[debug] "name": "equal_intervals", +2024-05-29T06:07:04.7227437Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7227799Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:07:04.7227916Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7228004Z ##[debug] }, +2024-05-29T06:07:04.7228176Z ##[debug] { +2024-05-29T06:07:04.7228298Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:07:04.7228470Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:07:04.7228582Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7228937Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:07:04.7229055Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7229139Z ##[debug] }, +2024-05-29T06:07:04.7229227Z ##[debug] { +2024-05-29T06:07:04.7229343Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:07:04.7229449Z ##[debug] "name": "skip-list", +2024-05-29T06:07:04.7229568Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7229923Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:07:04.7230042Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7230133Z ##[debug] }, +2024-05-29T06:07:04.7230219Z ##[debug] { +2024-05-29T06:07:04.7230337Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:07:04.7230539Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:07:04.7230656Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7231011Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:07:04.7231125Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7231210Z ##[debug] }, +2024-05-29T06:07:04.7231298Z ##[debug] { +2024-05-29T06:07:04.7231413Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:07:04.7231632Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:07:04.7231754Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7232226Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:07:04.7232349Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7232432Z ##[debug] }, +2024-05-29T06:07:04.7232621Z ##[debug] { +2024-05-29T06:07:04.7232742Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:07:04.7232848Z ##[debug] "name": "wait-list", +2024-05-29T06:07:04.7232962Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7233314Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:07:04.7233430Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7233517Z ##[debug] } +2024-05-29T06:07:04.7233600Z ##[debug] ] +2024-05-29T06:07:04.7233682Z ##[debug] } +2024-05-29T06:07:04.7233769Z ##[debug] }, +2024-05-29T06:07:04.7233860Z ##[debug] "workflow": { +2024-05-29T06:07:04.7233962Z ##[debug] "name": "Itself", +2024-05-29T06:07:04.7234220Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:04.7234301Z ##[debug] }, +2024-05-29T06:07:04.7234396Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7234516Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:04.7234623Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7234722Z ##[debug] "workflow": { +2024-05-29T06:07:04.7234818Z ##[debug] "name": "Itself", +2024-05-29T06:07:04.7235072Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:04.7235162Z ##[debug] } +2024-05-29T06:07:04.7235244Z ##[debug] } +2024-05-29T06:07:04.7235326Z ##[debug] }, +2024-05-29T06:07:04.7235414Z ##[debug] { +2024-05-29T06:07:04.7235505Z ##[debug] "checkRun": { +2024-05-29T06:07:04.7235612Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:07:04.7235839Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:07:04.7235942Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7236310Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:07:04.7236421Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7236502Z ##[debug] }, +2024-05-29T06:07:04.7236601Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.7236703Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7236808Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:04.7236911Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7237026Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:04.7237137Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7237236Z ##[debug] "workflow": { +2024-05-29T06:07:04.7237333Z ##[debug] "name": "Itself", +2024-05-29T06:07:04.7237593Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:04.7237684Z ##[debug] } +2024-05-29T06:07:04.7237767Z ##[debug] }, +2024-05-29T06:07:04.7237863Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.7237959Z ##[debug] "totalCount": 7, +2024-05-29T06:07:04.7238149Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.7238267Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.7238445Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:07:04.7238529Z ##[debug] }, +2024-05-29T06:07:04.7238625Z ##[debug] "nodes": [ +2024-05-29T06:07:04.7238709Z ##[debug] { +2024-05-29T06:07:04.7238830Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:07:04.7238953Z ##[debug] "name": "default_logic", +2024-05-29T06:07:04.7239068Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7239434Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:07:04.7239671Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7239759Z ##[debug] }, +2024-05-29T06:07:04.7239847Z ##[debug] { +2024-05-29T06:07:04.7239966Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:07:04.7240221Z ##[debug] "name": "equal_intervals", +2024-05-29T06:07:04.7240340Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7240697Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:07:04.7240817Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7240900Z ##[debug] }, +2024-05-29T06:07:04.7240982Z ##[debug] { +2024-05-29T06:07:04.7241102Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:07:04.7241271Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:07:04.7241383Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7241747Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:07:04.7241860Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7241944Z ##[debug] }, +2024-05-29T06:07:04.7242039Z ##[debug] { +2024-05-29T06:07:04.7242157Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:07:04.7242270Z ##[debug] "name": "skip-list", +2024-05-29T06:07:04.7242382Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7242739Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:07:04.7242858Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7242941Z ##[debug] }, +2024-05-29T06:07:04.7243023Z ##[debug] { +2024-05-29T06:07:04.7243146Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:07:04.7243347Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:07:04.7243468Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7243817Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:07:04.7243937Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7244027Z ##[debug] }, +2024-05-29T06:07:04.7244109Z ##[debug] { +2024-05-29T06:07:04.7244225Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:07:04.7244450Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:07:04.7244564Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7244953Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:07:04.7245070Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7245154Z ##[debug] }, +2024-05-29T06:07:04.7245245Z ##[debug] { +2024-05-29T06:07:04.7245363Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:07:04.7245469Z ##[debug] "name": "wait-list", +2024-05-29T06:07:04.7245588Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7245941Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:07:04.7246062Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7246145Z ##[debug] } +2024-05-29T06:07:04.7246228Z ##[debug] ] +2024-05-29T06:07:04.7246316Z ##[debug] } +2024-05-29T06:07:04.7246398Z ##[debug] }, +2024-05-29T06:07:04.7246489Z ##[debug] "workflow": { +2024-05-29T06:07:04.7246592Z ##[debug] "name": "Itself", +2024-05-29T06:07:04.7246842Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:04.7246928Z ##[debug] }, +2024-05-29T06:07:04.7247028Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7247224Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:04.7247334Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7247432Z ##[debug] "workflow": { +2024-05-29T06:07:04.7247527Z ##[debug] "name": "Itself", +2024-05-29T06:07:04.7247860Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:04.7247942Z ##[debug] } +2024-05-29T06:07:04.7248022Z ##[debug] } +2024-05-29T06:07:04.7248202Z ##[debug] }, +2024-05-29T06:07:04.7248283Z ##[debug] { +2024-05-29T06:07:04.7248375Z ##[debug] "checkRun": { +2024-05-29T06:07:04.7248487Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:07:04.7248586Z ##[debug] "name": "wait-list", +2024-05-29T06:07:04.7248687Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7249050Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:07:04.7249161Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7249244Z ##[debug] }, +2024-05-29T06:07:04.7249342Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.7249441Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7249550Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:04.7249653Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7249766Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:04.7249879Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7249972Z ##[debug] "workflow": { +2024-05-29T06:07:04.7250068Z ##[debug] "name": "Itself", +2024-05-29T06:07:04.7250331Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:04.7250414Z ##[debug] } +2024-05-29T06:07:04.7250496Z ##[debug] }, +2024-05-29T06:07:04.7250593Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.7250690Z ##[debug] "totalCount": 7, +2024-05-29T06:07:04.7250790Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.7250915Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.7251092Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:07:04.7251182Z ##[debug] }, +2024-05-29T06:07:04.7251273Z ##[debug] "nodes": [ +2024-05-29T06:07:04.7251363Z ##[debug] { +2024-05-29T06:07:04.7251489Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:07:04.7251608Z ##[debug] "name": "default_logic", +2024-05-29T06:07:04.7251724Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7252090Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:07:04.7252205Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7252296Z ##[debug] }, +2024-05-29T06:07:04.7252379Z ##[debug] { +2024-05-29T06:07:04.7252496Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:07:04.7252624Z ##[debug] "name": "equal_intervals", +2024-05-29T06:07:04.7252739Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7253100Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:07:04.7253225Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7253308Z ##[debug] }, +2024-05-29T06:07:04.7253389Z ##[debug] { +2024-05-29T06:07:04.7253511Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:07:04.7253679Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:07:04.7253799Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7254149Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:07:04.7254263Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7254353Z ##[debug] }, +2024-05-29T06:07:04.7254435Z ##[debug] { +2024-05-29T06:07:04.7254673Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:07:04.7254788Z ##[debug] "name": "skip-list", +2024-05-29T06:07:04.7254904Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7255266Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:07:04.7255487Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7255570Z ##[debug] }, +2024-05-29T06:07:04.7255657Z ##[debug] { +2024-05-29T06:07:04.7255775Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:07:04.7255971Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:07:04.7256089Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7256437Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:07:04.7256563Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7256647Z ##[debug] }, +2024-05-29T06:07:04.7256729Z ##[debug] { +2024-05-29T06:07:04.7256849Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:07:04.7257068Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:07:04.7257189Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7257546Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:07:04.7257660Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7257749Z ##[debug] }, +2024-05-29T06:07:04.7257832Z ##[debug] { +2024-05-29T06:07:04.7257950Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:07:04.7258160Z ##[debug] "name": "wait-list", +2024-05-29T06:07:04.7258274Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7258634Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:07:04.7258757Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7258840Z ##[debug] } +2024-05-29T06:07:04.7258923Z ##[debug] ] +2024-05-29T06:07:04.7259018Z ##[debug] } +2024-05-29T06:07:04.7259099Z ##[debug] }, +2024-05-29T06:07:04.7259196Z ##[debug] "workflow": { +2024-05-29T06:07:04.7259291Z ##[debug] "name": "Itself", +2024-05-29T06:07:04.7259546Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:04.7259635Z ##[debug] }, +2024-05-29T06:07:04.7259730Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7259839Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:04.7259956Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7260049Z ##[debug] "workflow": { +2024-05-29T06:07:04.7260145Z ##[debug] "name": "Itself", +2024-05-29T06:07:04.7260411Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:04.7260494Z ##[debug] } +2024-05-29T06:07:04.7260582Z ##[debug] } +2024-05-29T06:07:04.7260672Z ##[debug] }, +2024-05-29T06:07:04.7260752Z ##[debug] { +2024-05-29T06:07:04.7260856Z ##[debug] "checkRun": { +2024-05-29T06:07:04.7260966Z ##[debug] "databaseId": 25536411358, +2024-05-29T06:07:04.7261087Z ##[debug] "name": "dependency-review", +2024-05-29T06:07:04.7261195Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7261559Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", +2024-05-29T06:07:04.7261668Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7261755Z ##[debug] }, +2024-05-29T06:07:04.7261848Z ##[debug] "checkSuite": { +2024-05-29T06:07:04.7261950Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7262066Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:04.7262285Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7262408Z ##[debug] "databaseId": 9281068690, +2024-05-29T06:07:04.7262518Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7262611Z ##[debug] "workflow": { +2024-05-29T06:07:04.7262718Z ##[debug] "name": "💂➕", +2024-05-29T06:07:04.7263139Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:07:04.7263223Z ##[debug] } +2024-05-29T06:07:04.7263311Z ##[debug] }, +2024-05-29T06:07:04.7263404Z ##[debug] "checkRuns": { +2024-05-29T06:07:04.7263500Z ##[debug] "totalCount": 1, +2024-05-29T06:07:04.7263600Z ##[debug] "pageInfo": { +2024-05-29T06:07:04.7263709Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:04.7263885Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtt4=" +2024-05-29T06:07:04.7263974Z ##[debug] }, +2024-05-29T06:07:04.7264062Z ##[debug] "nodes": [ +2024-05-29T06:07:04.7264158Z ##[debug] { +2024-05-29T06:07:04.7264277Z ##[debug] "databaseId": 25536411358, +2024-05-29T06:07:04.7264408Z ##[debug] "name": "dependency-review", +2024-05-29T06:07:04.7264530Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:04.7264896Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", +2024-05-29T06:07:04.7265015Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:04.7265106Z ##[debug] } +2024-05-29T06:07:04.7265190Z ##[debug] ] +2024-05-29T06:07:04.7265270Z ##[debug] } +2024-05-29T06:07:04.7265358Z ##[debug] }, +2024-05-29T06:07:04.7265450Z ##[debug] "workflow": { +2024-05-29T06:07:04.7265548Z ##[debug] "name": "💂➕", +2024-05-29T06:07:04.7265856Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:07:04.7265938Z ##[debug] }, +2024-05-29T06:07:04.7266043Z ##[debug] "workflowRun": { +2024-05-29T06:07:04.7266151Z ##[debug] "databaseId": 9281068690, +2024-05-29T06:07:04.7266259Z ##[debug] "event": "pull_request", +2024-05-29T06:07:04.7266358Z ##[debug] "workflow": { +2024-05-29T06:07:04.7266452Z ##[debug] "name": "💂➕", +2024-05-29T06:07:04.7266765Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:07:04.7266852Z ##[debug] } +2024-05-29T06:07:04.7266934Z ##[debug] } +2024-05-29T06:07:04.7267020Z ##[debug] } +2024-05-29T06:07:04.7267103Z ##[debug] ], +2024-05-29T06:07:04.7267219Z ##[debug] "elapsedMsec": 28428.77246899996 +2024-05-29T06:07:04.7267303Z ##[debug]} +2024-05-29T06:07:04.7268809Z GH-820-graceperiod.yml(quickstarter-success): [suiteStatus: IN_PROGRESS][suiteConclusion: (null)][runStatus: COMPLETED][runConclusion: SUCCESS][eventName: pull_request][runURL: https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631] +2024-05-29T06:07:04.7269983Z GH-820-graceperiod.yml(slowstarter-success): [suiteStatus: IN_PROGRESS][suiteConclusion: (null)][runStatus: IN_PROGRESS][runConclusion: (null)][eventName: pull_request][runURL: https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021] +2024-05-29T06:07:04.7270837Z ##[debug]{ +2024-05-29T06:07:04.7270941Z ##[debug] "label": "filtered", +2024-05-29T06:07:04.7271029Z ##[debug] "report": { +2024-05-29T06:07:04.7271139Z ##[debug] "progress": "in_progress", +2024-05-29T06:07:04.7271257Z ##[debug] "conclusion": "acceptable", +2024-05-29T06:07:04.7271349Z ##[debug] "summaries": [ +2024-05-29T06:07:04.7271432Z ##[debug] { +2024-05-29T06:07:04.7271538Z ##[debug] "acceptable": true, +2024-05-29T06:07:04.7271689Z ##[debug] "workflowPath": "GH-820-graceperiod.yml", +2024-05-29T06:07:04.7271801Z ##[debug] "isSameWorkflow": true, +2024-05-29T06:07:04.7271932Z ##[debug] "eventName": "pull_request", +2024-05-29T06:07:04.7272227Z ##[debug] "checkSuiteStatus": "IN_PROGRESS", +2024-05-29T06:07:04.7272361Z ##[debug] "checkSuiteConclusion": null, +2024-05-29T06:07:04.7272485Z ##[debug] "runDatabaseId": 25536443631, +2024-05-29T06:07:04.7272620Z ##[debug] "jobName": "quickstarter-success", +2024-05-29T06:07:04.7273117Z ##[debug] "checkRunUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:07:04.7273230Z ##[debug] "runStatus": "COMPLETED", +2024-05-29T06:07:04.7273345Z ##[debug] "runConclusion": "SUCCESS" +2024-05-29T06:07:04.7273434Z ##[debug] }, +2024-05-29T06:07:04.7273514Z ##[debug] { +2024-05-29T06:07:04.7273616Z ##[debug] "acceptable": false, +2024-05-29T06:07:04.7273765Z ##[debug] "workflowPath": "GH-820-graceperiod.yml", +2024-05-29T06:07:04.7273875Z ##[debug] "isSameWorkflow": true, +2024-05-29T06:07:04.7274000Z ##[debug] "eventName": "pull_request", +2024-05-29T06:07:04.7274133Z ##[debug] "checkSuiteStatus": "IN_PROGRESS", +2024-05-29T06:07:04.7274263Z ##[debug] "checkSuiteConclusion": null, +2024-05-29T06:07:04.7274386Z ##[debug] "runDatabaseId": 25536456021, +2024-05-29T06:07:04.7274518Z ##[debug] "jobName": "slowstarter-success", +2024-05-29T06:07:04.7274888Z ##[debug] "checkRunUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:07:04.7275017Z ##[debug] "runStatus": "IN_PROGRESS", +2024-05-29T06:07:04.7275122Z ##[debug] "runConclusion": null +2024-05-29T06:07:04.7275204Z ##[debug] } +2024-05-29T06:07:04.7275292Z ##[debug] ] +2024-05-29T06:07:04.7275375Z ##[debug] } +2024-05-29T06:07:04.7275453Z ##[debug]} +2024-05-29T06:07:04.7275566Z some jobs still in progress +2024-05-29T06:07:04.7275845Z ::endgroup:: +2024-05-29T06:07:04.7275947Z ##[endgroup] +2024-05-29T06:07:04.7276149Z Wait about 5 seconds before next polling to reduce API calls. +2024-05-29T06:07:09.6681900Z ::group::Polling 7: 2024-05-29T06:07:09.667Z +2024-05-29T06:07:09.6682493Z ##[group]Polling 7: 2024-05-29T06:07:09.667Z +2024-05-29T06:07:10.1237082Z ##[debug]{ +2024-05-29T06:07:10.1237495Z ##[debug] "label": "rawdata", +2024-05-29T06:07:10.1237968Z ##[debug] "checks": [ +2024-05-29T06:07:10.1238527Z ##[debug] { +2024-05-29T06:07:10.1238909Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1239435Z ##[debug] "databaseId": 25536410411, +2024-05-29T06:07:10.1239996Z ##[debug] "name": "gitleaks", +2024-05-29T06:07:10.1240524Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1241557Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", +2024-05-29T06:07:10.1242606Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1243142Z ##[debug] }, +2024-05-29T06:07:10.1243542Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1244078Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1244650Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:10.1245191Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1245731Z ##[debug] "databaseId": 9281068413, +2024-05-29T06:07:10.1246280Z ##[debug] "event": "push", +2024-05-29T06:07:10.1246784Z ##[debug] "workflow": { +2024-05-29T06:07:10.1247290Z ##[debug] "name": "💧", +2024-05-29T06:07:10.1248220Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:07:10.1249017Z ##[debug] } +2024-05-29T06:07:10.1261033Z ##[debug] }, +2024-05-29T06:07:10.1261476Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1261953Z ##[debug] "totalCount": 1, +2024-05-29T06:07:10.1262474Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1262880Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1263310Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWsys=" +2024-05-29T06:07:10.1263699Z ##[debug] }, +2024-05-29T06:07:10.1263952Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1264224Z ##[debug] { +2024-05-29T06:07:10.1264751Z ##[debug] "databaseId": 25536410411, +2024-05-29T06:07:10.1265117Z ##[debug] "name": "gitleaks", +2024-05-29T06:07:10.1265475Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1266110Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", +2024-05-29T06:07:10.1266949Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1267289Z ##[debug] } +2024-05-29T06:07:10.1267529Z ##[debug] ] +2024-05-29T06:07:10.1267763Z ##[debug] } +2024-05-29T06:07:10.1267990Z ##[debug] }, +2024-05-29T06:07:10.1268486Z ##[debug] "workflow": { +2024-05-29T06:07:10.1268789Z ##[debug] "name": "💧", +2024-05-29T06:07:10.1269260Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:07:10.1269740Z ##[debug] }, +2024-05-29T06:07:10.1269983Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1270306Z ##[debug] "databaseId": 9281068413, +2024-05-29T06:07:10.1270636Z ##[debug] "event": "push", +2024-05-29T06:07:10.1270938Z ##[debug] "workflow": { +2024-05-29T06:07:10.1271225Z ##[debug] "name": "💧", +2024-05-29T06:07:10.1271690Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:07:10.1272175Z ##[debug] } +2024-05-29T06:07:10.1272404Z ##[debug] } +2024-05-29T06:07:10.1272631Z ##[debug] }, +2024-05-29T06:07:10.1272847Z ##[debug] { +2024-05-29T06:07:10.1273074Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1273373Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:07:10.1273696Z ##[debug] "name": "build", +2024-05-29T06:07:10.1274001Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1274607Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:07:10.1275206Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1275521Z ##[debug] }, +2024-05-29T06:07:10.1275763Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1276052Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1276386Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:10.1276714Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1277034Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:07:10.1277386Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1277714Z ##[debug] "workflow": { +2024-05-29T06:07:10.1278017Z ##[debug] "name": "TypeScript", +2024-05-29T06:07:10.1278909Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:07:10.1279371Z ##[debug] } +2024-05-29T06:07:10.1279605Z ##[debug] }, +2024-05-29T06:07:10.1279848Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1280139Z ##[debug] "totalCount": 3, +2024-05-29T06:07:10.1280442Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1280756Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1281166Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:07:10.1281561Z ##[debug] }, +2024-05-29T06:07:10.1281800Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1282069Z ##[debug] { +2024-05-29T06:07:10.1282359Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:07:10.1282704Z ##[debug] "name": "build", +2024-05-29T06:07:10.1283041Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1283652Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:07:10.1284259Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1284584Z ##[debug] }, +2024-05-29T06:07:10.1284827Z ##[debug] { +2024-05-29T06:07:10.1285097Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:07:10.1285441Z ##[debug] "name": "test", +2024-05-29T06:07:10.1285946Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1286544Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:07:10.1287171Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1287628Z ##[debug] }, +2024-05-29T06:07:10.1287872Z ##[debug] { +2024-05-29T06:07:10.1288370Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:07:10.1288741Z ##[debug] "name": "typecheck", +2024-05-29T06:07:10.1289091Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1289682Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:07:10.1290298Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1290619Z ##[debug] } +2024-05-29T06:07:10.1290858Z ##[debug] ] +2024-05-29T06:07:10.1291095Z ##[debug] } +2024-05-29T06:07:10.1291322Z ##[debug] }, +2024-05-29T06:07:10.1291569Z ##[debug] "workflow": { +2024-05-29T06:07:10.1291865Z ##[debug] "name": "TypeScript", +2024-05-29T06:07:10.1292330Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:07:10.1292791Z ##[debug] }, +2024-05-29T06:07:10.1293040Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1293356Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:07:10.1293694Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1294022Z ##[debug] "workflow": { +2024-05-29T06:07:10.1294320Z ##[debug] "name": "TypeScript", +2024-05-29T06:07:10.1294788Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:07:10.1295242Z ##[debug] } +2024-05-29T06:07:10.1295469Z ##[debug] } +2024-05-29T06:07:10.1295691Z ##[debug] }, +2024-05-29T06:07:10.1295904Z ##[debug] { +2024-05-29T06:07:10.1296131Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1296428Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:07:10.1296751Z ##[debug] "name": "test", +2024-05-29T06:07:10.1297048Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1297646Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:07:10.1298519Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1299038Z ##[debug] }, +2024-05-29T06:07:10.1299292Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1299581Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1299909Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:10.1300230Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1300543Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:07:10.1300892Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1301216Z ##[debug] "workflow": { +2024-05-29T06:07:10.1301518Z ##[debug] "name": "TypeScript", +2024-05-29T06:07:10.1302000Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:07:10.1302456Z ##[debug] } +2024-05-29T06:07:10.1302686Z ##[debug] }, +2024-05-29T06:07:10.1302927Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1303218Z ##[debug] "totalCount": 3, +2024-05-29T06:07:10.1303521Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1303824Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1304227Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:07:10.1304609Z ##[debug] }, +2024-05-29T06:07:10.1304852Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1305118Z ##[debug] { +2024-05-29T06:07:10.1305394Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:07:10.1305748Z ##[debug] "name": "build", +2024-05-29T06:07:10.1306081Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1306887Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:07:10.1307501Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1307826Z ##[debug] }, +2024-05-29T06:07:10.1308218Z ##[debug] { +2024-05-29T06:07:10.1308490Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:07:10.1308961Z ##[debug] "name": "test", +2024-05-29T06:07:10.1309292Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1309885Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:07:10.1310497Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1310821Z ##[debug] }, +2024-05-29T06:07:10.1311057Z ##[debug] { +2024-05-29T06:07:10.1311329Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:07:10.1311680Z ##[debug] "name": "typecheck", +2024-05-29T06:07:10.1312020Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1312615Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:07:10.1313214Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1313533Z ##[debug] } +2024-05-29T06:07:10.1313764Z ##[debug] ] +2024-05-29T06:07:10.1314003Z ##[debug] } +2024-05-29T06:07:10.1314229Z ##[debug] }, +2024-05-29T06:07:10.1314457Z ##[debug] "workflow": { +2024-05-29T06:07:10.1314741Z ##[debug] "name": "TypeScript", +2024-05-29T06:07:10.1315202Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:07:10.1315653Z ##[debug] }, +2024-05-29T06:07:10.1315894Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1316197Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:07:10.1316530Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1316849Z ##[debug] "workflow": { +2024-05-29T06:07:10.1317141Z ##[debug] "name": "TypeScript", +2024-05-29T06:07:10.1317600Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:07:10.1318158Z ##[debug] } +2024-05-29T06:07:10.1318393Z ##[debug] } +2024-05-29T06:07:10.1318611Z ##[debug] }, +2024-05-29T06:07:10.1318830Z ##[debug] { +2024-05-29T06:07:10.1319063Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1319349Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:07:10.1319684Z ##[debug] "name": "typecheck", +2024-05-29T06:07:10.1320002Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1320593Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:07:10.1321184Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1321489Z ##[debug] }, +2024-05-29T06:07:10.1321724Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1322011Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1322339Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:10.1322666Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1322980Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:07:10.1323327Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1323653Z ##[debug] "workflow": { +2024-05-29T06:07:10.1323960Z ##[debug] "name": "TypeScript", +2024-05-29T06:07:10.1324430Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:07:10.1324887Z ##[debug] } +2024-05-29T06:07:10.1325118Z ##[debug] }, +2024-05-29T06:07:10.1325360Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1325659Z ##[debug] "totalCount": 3, +2024-05-29T06:07:10.1325957Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1326297Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1326707Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:07:10.1327092Z ##[debug] }, +2024-05-29T06:07:10.1327335Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1327778Z ##[debug] { +2024-05-29T06:07:10.1328148Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:07:10.1328504Z ##[debug] "name": "build", +2024-05-29T06:07:10.1328835Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1329567Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:07:10.1330174Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1330497Z ##[debug] }, +2024-05-29T06:07:10.1330743Z ##[debug] { +2024-05-29T06:07:10.1331013Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:07:10.1331359Z ##[debug] "name": "test", +2024-05-29T06:07:10.1331699Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1332293Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:07:10.1332908Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1333231Z ##[debug] }, +2024-05-29T06:07:10.1333471Z ##[debug] { +2024-05-29T06:07:10.1333744Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:07:10.1334099Z ##[debug] "name": "typecheck", +2024-05-29T06:07:10.1334453Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1335033Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:07:10.1335633Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1335954Z ##[debug] } +2024-05-29T06:07:10.1336187Z ##[debug] ] +2024-05-29T06:07:10.1336421Z ##[debug] } +2024-05-29T06:07:10.1336649Z ##[debug] }, +2024-05-29T06:07:10.1336875Z ##[debug] "workflow": { +2024-05-29T06:07:10.1337161Z ##[debug] "name": "TypeScript", +2024-05-29T06:07:10.1337621Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:07:10.1338190Z ##[debug] }, +2024-05-29T06:07:10.1338432Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1338737Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:07:10.1339071Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1339393Z ##[debug] "workflow": { +2024-05-29T06:07:10.1339696Z ##[debug] "name": "TypeScript", +2024-05-29T06:07:10.1340152Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:07:10.1340611Z ##[debug] } +2024-05-29T06:07:10.1340835Z ##[debug] } +2024-05-29T06:07:10.1341051Z ##[debug] }, +2024-05-29T06:07:10.1341274Z ##[debug] { +2024-05-29T06:07:10.1341501Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1341788Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:07:10.1342116Z ##[debug] "name": "typos", +2024-05-29T06:07:10.1342418Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1343009Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:07:10.1343600Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1343901Z ##[debug] }, +2024-05-29T06:07:10.1344138Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1344424Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1344757Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:10.1345080Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1345388Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:07:10.1345738Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1346065Z ##[debug] "workflow": { +2024-05-29T06:07:10.1346374Z ##[debug] "name": "👕", +2024-05-29T06:07:10.1346835Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:10.1347301Z ##[debug] } +2024-05-29T06:07:10.1347531Z ##[debug] }, +2024-05-29T06:07:10.1347778Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1348312Z ##[debug] "totalCount": 4, +2024-05-29T06:07:10.1348621Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1348927Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1349337Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:07:10.1349835Z ##[debug] }, +2024-05-29T06:07:10.1350083Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1350352Z ##[debug] { +2024-05-29T06:07:10.1350647Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:07:10.1351005Z ##[debug] "name": "typos", +2024-05-29T06:07:10.1351337Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1351945Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:07:10.1352553Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1352877Z ##[debug] }, +2024-05-29T06:07:10.1353122Z ##[debug] { +2024-05-29T06:07:10.1353396Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:07:10.1353745Z ##[debug] "name": "dprint", +2024-05-29T06:07:10.1354087Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1354680Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:07:10.1355288Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1355611Z ##[debug] }, +2024-05-29T06:07:10.1355846Z ##[debug] { +2024-05-29T06:07:10.1356120Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:07:10.1356472Z ##[debug] "name": "deno_lint", +2024-05-29T06:07:10.1356820Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1357403Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:07:10.1358012Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1358450Z ##[debug] }, +2024-05-29T06:07:10.1358691Z ##[debug] { +2024-05-29T06:07:10.1358967Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:07:10.1359312Z ##[debug] "name": "yamlfmt", +2024-05-29T06:07:10.1359644Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1360251Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:07:10.1360864Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1361190Z ##[debug] } +2024-05-29T06:07:10.1361421Z ##[debug] ] +2024-05-29T06:07:10.1361654Z ##[debug] } +2024-05-29T06:07:10.1361878Z ##[debug] }, +2024-05-29T06:07:10.1362121Z ##[debug] "workflow": { +2024-05-29T06:07:10.1362400Z ##[debug] "name": "👕", +2024-05-29T06:07:10.1362835Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:10.1363296Z ##[debug] }, +2024-05-29T06:07:10.1363540Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1363850Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:07:10.1364179Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1364501Z ##[debug] "workflow": { +2024-05-29T06:07:10.1364781Z ##[debug] "name": "👕", +2024-05-29T06:07:10.1365228Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:10.1365690Z ##[debug] } +2024-05-29T06:07:10.1365915Z ##[debug] } +2024-05-29T06:07:10.1366134Z ##[debug] }, +2024-05-29T06:07:10.1366353Z ##[debug] { +2024-05-29T06:07:10.1366584Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1366871Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:07:10.1367202Z ##[debug] "name": "dprint", +2024-05-29T06:07:10.1367508Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1368190Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:07:10.1368910Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1369220Z ##[debug] }, +2024-05-29T06:07:10.1369450Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1369743Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1370072Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:10.1370498Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1370815Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:07:10.1371163Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1371487Z ##[debug] "workflow": { +2024-05-29T06:07:10.1371773Z ##[debug] "name": "👕", +2024-05-29T06:07:10.1372227Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:10.1372702Z ##[debug] } +2024-05-29T06:07:10.1372937Z ##[debug] }, +2024-05-29T06:07:10.1373180Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1373473Z ##[debug] "totalCount": 4, +2024-05-29T06:07:10.1373773Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1374085Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1374495Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:07:10.1374886Z ##[debug] }, +2024-05-29T06:07:10.1375137Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1375417Z ##[debug] { +2024-05-29T06:07:10.1375697Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:07:10.1376045Z ##[debug] "name": "typos", +2024-05-29T06:07:10.1376380Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1376989Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:07:10.1377602Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1377932Z ##[debug] }, +2024-05-29T06:07:10.1378309Z ##[debug] { +2024-05-29T06:07:10.1378577Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:07:10.1378921Z ##[debug] "name": "dprint", +2024-05-29T06:07:10.1379260Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1379857Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:07:10.1380467Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1380794Z ##[debug] }, +2024-05-29T06:07:10.1381033Z ##[debug] { +2024-05-29T06:07:10.1381313Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:07:10.1381662Z ##[debug] "name": "deno_lint", +2024-05-29T06:07:10.1382010Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1382605Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:07:10.1383998Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1384321Z ##[debug] }, +2024-05-29T06:07:10.1384557Z ##[debug] { +2024-05-29T06:07:10.1384834Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:07:10.1385181Z ##[debug] "name": "yamlfmt", +2024-05-29T06:07:10.1385512Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1386112Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:07:10.1386730Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1387049Z ##[debug] } +2024-05-29T06:07:10.1387287Z ##[debug] ] +2024-05-29T06:07:10.1387519Z ##[debug] } +2024-05-29T06:07:10.1387742Z ##[debug] }, +2024-05-29T06:07:10.1387976Z ##[debug] "workflow": { +2024-05-29T06:07:10.1388362Z ##[debug] "name": "👕", +2024-05-29T06:07:10.1388798Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:10.1389262Z ##[debug] }, +2024-05-29T06:07:10.1389501Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1389802Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:07:10.1390297Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1390625Z ##[debug] "workflow": { +2024-05-29T06:07:10.1390902Z ##[debug] "name": "👕", +2024-05-29T06:07:10.1391349Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:10.1392007Z ##[debug] } +2024-05-29T06:07:10.1392235Z ##[debug] } +2024-05-29T06:07:10.1392453Z ##[debug] }, +2024-05-29T06:07:10.1392675Z ##[debug] { +2024-05-29T06:07:10.1392898Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1393195Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:07:10.1393530Z ##[debug] "name": "deno_lint", +2024-05-29T06:07:10.1393846Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1394434Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:07:10.1395035Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1395344Z ##[debug] }, +2024-05-29T06:07:10.1395584Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1395878Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1396208Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:10.1396530Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1396852Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:07:10.1397202Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1397526Z ##[debug] "workflow": { +2024-05-29T06:07:10.1397817Z ##[debug] "name": "👕", +2024-05-29T06:07:10.1398415Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:10.1398876Z ##[debug] } +2024-05-29T06:07:10.1399114Z ##[debug] }, +2024-05-29T06:07:10.1399356Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1399646Z ##[debug] "totalCount": 4, +2024-05-29T06:07:10.1399950Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1400257Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1400672Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:07:10.1401067Z ##[debug] }, +2024-05-29T06:07:10.1401314Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1401586Z ##[debug] { +2024-05-29T06:07:10.1401860Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:07:10.1402224Z ##[debug] "name": "typos", +2024-05-29T06:07:10.1402556Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1403159Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:07:10.1403769Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1404097Z ##[debug] }, +2024-05-29T06:07:10.1404336Z ##[debug] { +2024-05-29T06:07:10.1404612Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:07:10.1404960Z ##[debug] "name": "dprint", +2024-05-29T06:07:10.1405292Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1405898Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:07:10.1406504Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1406826Z ##[debug] }, +2024-05-29T06:07:10.1407068Z ##[debug] { +2024-05-29T06:07:10.1407341Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:07:10.1407693Z ##[debug] "name": "deno_lint", +2024-05-29T06:07:10.1408033Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1408758Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:07:10.1409360Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1409675Z ##[debug] }, +2024-05-29T06:07:10.1409919Z ##[debug] { +2024-05-29T06:07:10.1410196Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:07:10.1410687Z ##[debug] "name": "yamlfmt", +2024-05-29T06:07:10.1411030Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1411633Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:07:10.1412243Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1412676Z ##[debug] } +2024-05-29T06:07:10.1412917Z ##[debug] ] +2024-05-29T06:07:10.1413152Z ##[debug] } +2024-05-29T06:07:10.1413374Z ##[debug] }, +2024-05-29T06:07:10.1413612Z ##[debug] "workflow": { +2024-05-29T06:07:10.1413893Z ##[debug] "name": "👕", +2024-05-29T06:07:10.1414329Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:10.1414793Z ##[debug] }, +2024-05-29T06:07:10.1415032Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1415335Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:07:10.1415677Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1416009Z ##[debug] "workflow": { +2024-05-29T06:07:10.1416286Z ##[debug] "name": "👕", +2024-05-29T06:07:10.1416731Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:10.1417197Z ##[debug] } +2024-05-29T06:07:10.1417434Z ##[debug] } +2024-05-29T06:07:10.1417661Z ##[debug] }, +2024-05-29T06:07:10.1417887Z ##[debug] { +2024-05-29T06:07:10.1418210Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1418507Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:07:10.1418841Z ##[debug] "name": "yamlfmt", +2024-05-29T06:07:10.1419146Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1419739Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:07:10.1420338Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1420638Z ##[debug] }, +2024-05-29T06:07:10.1420877Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1421176Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1421506Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:10.1421824Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1422143Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:07:10.1422507Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1422833Z ##[debug] "workflow": { +2024-05-29T06:07:10.1423126Z ##[debug] "name": "👕", +2024-05-29T06:07:10.1423588Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:10.1424050Z ##[debug] } +2024-05-29T06:07:10.1424291Z ##[debug] }, +2024-05-29T06:07:10.1424533Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1424825Z ##[debug] "totalCount": 4, +2024-05-29T06:07:10.1425132Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1425442Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1425847Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:07:10.1426284Z ##[debug] }, +2024-05-29T06:07:10.1426532Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1426793Z ##[debug] { +2024-05-29T06:07:10.1427076Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:07:10.1427421Z ##[debug] "name": "typos", +2024-05-29T06:07:10.1427757Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1428460Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:07:10.1429072Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1429395Z ##[debug] }, +2024-05-29T06:07:10.1429635Z ##[debug] { +2024-05-29T06:07:10.1429912Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:07:10.1430263Z ##[debug] "name": "dprint", +2024-05-29T06:07:10.1430593Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1431323Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:07:10.1431934Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1432322Z ##[debug] }, +2024-05-29T06:07:10.1432705Z ##[debug] { +2024-05-29T06:07:10.1433131Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:07:10.1433785Z ##[debug] "name": "deno_lint", +2024-05-29T06:07:10.1434134Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1434742Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:07:10.1435346Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1435661Z ##[debug] }, +2024-05-29T06:07:10.1435908Z ##[debug] { +2024-05-29T06:07:10.1436185Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:07:10.1436526Z ##[debug] "name": "yamlfmt", +2024-05-29T06:07:10.1436870Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1437484Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:07:10.1438215Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1438545Z ##[debug] } +2024-05-29T06:07:10.1438793Z ##[debug] ] +2024-05-29T06:07:10.1439022Z ##[debug] } +2024-05-29T06:07:10.1439251Z ##[debug] }, +2024-05-29T06:07:10.1439484Z ##[debug] "workflow": { +2024-05-29T06:07:10.1439763Z ##[debug] "name": "👕", +2024-05-29T06:07:10.1440206Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:10.1440670Z ##[debug] }, +2024-05-29T06:07:10.1440905Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1441217Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:07:10.1441561Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1441879Z ##[debug] "workflow": { +2024-05-29T06:07:10.1442165Z ##[debug] "name": "👕", +2024-05-29T06:07:10.1442626Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:10.1443095Z ##[debug] } +2024-05-29T06:07:10.1443320Z ##[debug] } +2024-05-29T06:07:10.1443543Z ##[debug] }, +2024-05-29T06:07:10.1443771Z ##[debug] { +2024-05-29T06:07:10.1443995Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1444292Z ##[debug] "databaseId": 25536411289, +2024-05-29T06:07:10.1444625Z ##[debug] "name": "gitleaks", +2024-05-29T06:07:10.1444936Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1445533Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", +2024-05-29T06:07:10.1446135Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1446436Z ##[debug] }, +2024-05-29T06:07:10.1446673Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1446964Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1447290Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:10.1447617Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1447937Z ##[debug] "databaseId": 9281068678, +2024-05-29T06:07:10.1448388Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1448718Z ##[debug] "workflow": { +2024-05-29T06:07:10.1449021Z ##[debug] "name": "💧", +2024-05-29T06:07:10.1449493Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:07:10.1449980Z ##[debug] } +2024-05-29T06:07:10.1450217Z ##[debug] }, +2024-05-29T06:07:10.1450456Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1450749Z ##[debug] "totalCount": 1, +2024-05-29T06:07:10.1451057Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1451365Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1451771Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpk=" +2024-05-29T06:07:10.1452165Z ##[debug] }, +2024-05-29T06:07:10.1452563Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1452830Z ##[debug] { +2024-05-29T06:07:10.1453114Z ##[debug] "databaseId": 25536411289, +2024-05-29T06:07:10.1453475Z ##[debug] "name": "gitleaks", +2024-05-29T06:07:10.1453812Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1454535Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", +2024-05-29T06:07:10.1455147Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1455465Z ##[debug] } +2024-05-29T06:07:10.1455708Z ##[debug] ] +2024-05-29T06:07:10.1455946Z ##[debug] } +2024-05-29T06:07:10.1456172Z ##[debug] }, +2024-05-29T06:07:10.1456406Z ##[debug] "workflow": { +2024-05-29T06:07:10.1456686Z ##[debug] "name": "💧", +2024-05-29T06:07:10.1457134Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:07:10.1457616Z ##[debug] }, +2024-05-29T06:07:10.1457868Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1458273Z ##[debug] "databaseId": 9281068678, +2024-05-29T06:07:10.1458613Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1458935Z ##[debug] "workflow": { +2024-05-29T06:07:10.1459222Z ##[debug] "name": "💧", +2024-05-29T06:07:10.1459686Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:07:10.1460169Z ##[debug] } +2024-05-29T06:07:10.1460397Z ##[debug] } +2024-05-29T06:07:10.1460615Z ##[debug] }, +2024-05-29T06:07:10.1460838Z ##[debug] { +2024-05-29T06:07:10.1461068Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1461354Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:07:10.1461701Z ##[debug] "name": "intermediate", +2024-05-29T06:07:10.1462031Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1462624Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:07:10.1463235Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1463547Z ##[debug] }, +2024-05-29T06:07:10.1463779Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1464079Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:10.1464417Z ##[debug] "conclusion": null, +2024-05-29T06:07:10.1464727Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1465047Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:10.1465401Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1465728Z ##[debug] "workflow": { +2024-05-29T06:07:10.1466086Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:10.1466662Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:10.1467169Z ##[debug] } +2024-05-29T06:07:10.1467403Z ##[debug] }, +2024-05-29T06:07:10.1467646Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1467944Z ##[debug] "totalCount": 6, +2024-05-29T06:07:10.1468351Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1468659Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1469071Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:07:10.1469460Z ##[debug] }, +2024-05-29T06:07:10.1469709Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1469977Z ##[debug] { +2024-05-29T06:07:10.1470255Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:07:10.1470622Z ##[debug] "name": "intermediate", +2024-05-29T06:07:10.1470984Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1471586Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:07:10.1472196Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1472522Z ##[debug] }, +2024-05-29T06:07:10.1472761Z ##[debug] { +2024-05-29T06:07:10.1473188Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:07:10.1473554Z ##[debug] "name": "wait-success", +2024-05-29T06:07:10.1473916Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:10.1474520Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:07:10.1475263Z ##[debug] "conclusion": null +2024-05-29T06:07:10.1475580Z ##[debug] }, +2024-05-29T06:07:10.1475820Z ##[debug] { +2024-05-29T06:07:10.1476097Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:07:10.1476483Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:07:10.1476867Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1477470Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:07:10.1478178Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1478502Z ##[debug] }, +2024-05-29T06:07:10.1478748Z ##[debug] { +2024-05-29T06:07:10.1479024Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:07:10.1479376Z ##[debug] "name": "wait-fail", +2024-05-29T06:07:10.1479718Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1480323Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:07:10.1480925Z ##[debug] "conclusion": "FAILURE" +2024-05-29T06:07:10.1481241Z ##[debug] }, +2024-05-29T06:07:10.1481488Z ##[debug] { +2024-05-29T06:07:10.1481764Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:07:10.1482131Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:07:10.1482506Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1483106Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:07:10.1483709Z ##[debug] "conclusion": "FAILURE" +2024-05-29T06:07:10.1484024Z ##[debug] }, +2024-05-29T06:07:10.1484265Z ##[debug] { +2024-05-29T06:07:10.1484545Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:07:10.1484920Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:07:10.1485313Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1485918Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:07:10.1486522Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1486848Z ##[debug] } +2024-05-29T06:07:10.1487087Z ##[debug] ] +2024-05-29T06:07:10.1487317Z ##[debug] } +2024-05-29T06:07:10.1487543Z ##[debug] }, +2024-05-29T06:07:10.1487779Z ##[debug] "workflow": { +2024-05-29T06:07:10.1488204Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:10.1488773Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:10.1489275Z ##[debug] }, +2024-05-29T06:07:10.1489507Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1489813Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:10.1490156Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1490475Z ##[debug] "workflow": { +2024-05-29T06:07:10.1490822Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:10.1491389Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:10.1491887Z ##[debug] } +2024-05-29T06:07:10.1492110Z ##[debug] } +2024-05-29T06:07:10.1492343Z ##[debug] }, +2024-05-29T06:07:10.1492562Z ##[debug] { +2024-05-29T06:07:10.1492782Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1493076Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:07:10.1493415Z ##[debug] "name": "wait-success", +2024-05-29T06:07:10.1493878Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:10.1494480Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:07:10.1495072Z ##[debug] "conclusion": null +2024-05-29T06:07:10.1495359Z ##[debug] }, +2024-05-29T06:07:10.1495762Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1496058Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:10.1496378Z ##[debug] "conclusion": null, +2024-05-29T06:07:10.1496689Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1497013Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:10.1497355Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1497686Z ##[debug] "workflow": { +2024-05-29T06:07:10.1498040Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:10.1498724Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:10.1499222Z ##[debug] } +2024-05-29T06:07:10.1499462Z ##[debug] }, +2024-05-29T06:07:10.1499705Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1499993Z ##[debug] "totalCount": 6, +2024-05-29T06:07:10.1500297Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1500610Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1501023Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:07:10.1501415Z ##[debug] }, +2024-05-29T06:07:10.1501662Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1501923Z ##[debug] { +2024-05-29T06:07:10.1502205Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:07:10.1502574Z ##[debug] "name": "intermediate", +2024-05-29T06:07:10.1502928Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1503537Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:07:10.1504154Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1504481Z ##[debug] }, +2024-05-29T06:07:10.1504729Z ##[debug] { +2024-05-29T06:07:10.1505004Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:07:10.1505368Z ##[debug] "name": "wait-success", +2024-05-29T06:07:10.1505737Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:10.1506350Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:07:10.1506962Z ##[debug] "conclusion": null +2024-05-29T06:07:10.1507268Z ##[debug] }, +2024-05-29T06:07:10.1507511Z ##[debug] { +2024-05-29T06:07:10.1507790Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:07:10.1508272Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:07:10.1508661Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1509269Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:07:10.1509878Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1510195Z ##[debug] }, +2024-05-29T06:07:10.1510439Z ##[debug] { +2024-05-29T06:07:10.1510713Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:07:10.1511064Z ##[debug] "name": "wait-fail", +2024-05-29T06:07:10.1511409Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1512002Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:07:10.1512605Z ##[debug] "conclusion": "FAILURE" +2024-05-29T06:07:10.1512933Z ##[debug] }, +2024-05-29T06:07:10.1513175Z ##[debug] { +2024-05-29T06:07:10.1513441Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:07:10.1513820Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:07:10.1514192Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1514916Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:07:10.1515520Z ##[debug] "conclusion": "FAILURE" +2024-05-29T06:07:10.1515841Z ##[debug] }, +2024-05-29T06:07:10.1516190Z ##[debug] { +2024-05-29T06:07:10.1516456Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:07:10.1516838Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:07:10.1517219Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1517816Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:07:10.1518528Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1518850Z ##[debug] } +2024-05-29T06:07:10.1519083Z ##[debug] ] +2024-05-29T06:07:10.1519319Z ##[debug] } +2024-05-29T06:07:10.1519543Z ##[debug] }, +2024-05-29T06:07:10.1519772Z ##[debug] "workflow": { +2024-05-29T06:07:10.1520112Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:10.1520676Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:10.1521168Z ##[debug] }, +2024-05-29T06:07:10.1521415Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1521722Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:10.1522066Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1522385Z ##[debug] "workflow": { +2024-05-29T06:07:10.1522725Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:10.1523293Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:10.1523788Z ##[debug] } +2024-05-29T06:07:10.1524014Z ##[debug] } +2024-05-29T06:07:10.1524240Z ##[debug] }, +2024-05-29T06:07:10.1524455Z ##[debug] { +2024-05-29T06:07:10.1524683Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1524984Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:07:10.1525347Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:07:10.1525709Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1526349Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:07:10.1526954Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1527262Z ##[debug] }, +2024-05-29T06:07:10.1527498Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1527788Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:10.1528207Z ##[debug] "conclusion": null, +2024-05-29T06:07:10.1528523Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1528835Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:10.1529181Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1529508Z ##[debug] "workflow": { +2024-05-29T06:07:10.1529862Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:10.1530434Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:10.1530939Z ##[debug] } +2024-05-29T06:07:10.1531177Z ##[debug] }, +2024-05-29T06:07:10.1531410Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1531707Z ##[debug] "totalCount": 6, +2024-05-29T06:07:10.1532011Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1532312Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1532728Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:07:10.1533118Z ##[debug] }, +2024-05-29T06:07:10.1533357Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1533623Z ##[debug] { +2024-05-29T06:07:10.1533905Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:07:10.1534268Z ##[debug] "name": "intermediate", +2024-05-29T06:07:10.1534626Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1535373Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:07:10.1535994Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1536312Z ##[debug] }, +2024-05-29T06:07:10.1536557Z ##[debug] { +2024-05-29T06:07:10.1536946Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:07:10.1537302Z ##[debug] "name": "wait-success", +2024-05-29T06:07:10.1537656Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:10.1538385Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:07:10.1538979Z ##[debug] "conclusion": null +2024-05-29T06:07:10.1539288Z ##[debug] }, +2024-05-29T06:07:10.1539530Z ##[debug] { +2024-05-29T06:07:10.1539798Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:07:10.1540186Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:07:10.1540580Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1556005Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:07:10.1556653Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1557000Z ##[debug] }, +2024-05-29T06:07:10.1557257Z ##[debug] { +2024-05-29T06:07:10.1557538Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:07:10.1557902Z ##[debug] "name": "wait-fail", +2024-05-29T06:07:10.1558381Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1559002Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:07:10.1559614Z ##[debug] "conclusion": "FAILURE" +2024-05-29T06:07:10.1559936Z ##[debug] }, +2024-05-29T06:07:10.1560175Z ##[debug] { +2024-05-29T06:07:10.1560436Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:07:10.1560810Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:07:10.1561183Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1561787Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:07:10.1562412Z ##[debug] "conclusion": "FAILURE" +2024-05-29T06:07:10.1562734Z ##[debug] }, +2024-05-29T06:07:10.1562969Z ##[debug] { +2024-05-29T06:07:10.1563239Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:07:10.1563622Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:07:10.1564008Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1564614Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:07:10.1565221Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1565538Z ##[debug] } +2024-05-29T06:07:10.1565771Z ##[debug] ] +2024-05-29T06:07:10.1566006Z ##[debug] } +2024-05-29T06:07:10.1566234Z ##[debug] }, +2024-05-29T06:07:10.1566462Z ##[debug] "workflow": { +2024-05-29T06:07:10.1566804Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:10.1567382Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:10.1567878Z ##[debug] }, +2024-05-29T06:07:10.1568211Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1568520Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:10.1568858Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1569180Z ##[debug] "workflow": { +2024-05-29T06:07:10.1569525Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:10.1570085Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:10.1570585Z ##[debug] } +2024-05-29T06:07:10.1570815Z ##[debug] } +2024-05-29T06:07:10.1571311Z ##[debug] }, +2024-05-29T06:07:10.1571541Z ##[debug] { +2024-05-29T06:07:10.1571769Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1572058Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:07:10.1572390Z ##[debug] "name": "wait-fail", +2024-05-29T06:07:10.1572827Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1573420Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:07:10.1574018Z ##[debug] "conclusion": "FAILURE" +2024-05-29T06:07:10.1574330Z ##[debug] }, +2024-05-29T06:07:10.1574571Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1574865Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:10.1575191Z ##[debug] "conclusion": null, +2024-05-29T06:07:10.1575499Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1575809Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:10.1576158Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1576493Z ##[debug] "workflow": { +2024-05-29T06:07:10.1576843Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:10.1577423Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:10.1577931Z ##[debug] } +2024-05-29T06:07:10.1578270Z ##[debug] }, +2024-05-29T06:07:10.1578509Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1578802Z ##[debug] "totalCount": 6, +2024-05-29T06:07:10.1579101Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1579411Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1579822Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:07:10.1580212Z ##[debug] }, +2024-05-29T06:07:10.1580452Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1580719Z ##[debug] { +2024-05-29T06:07:10.1581001Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:07:10.1581365Z ##[debug] "name": "intermediate", +2024-05-29T06:07:10.1581735Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1582362Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:07:10.1582972Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1583301Z ##[debug] }, +2024-05-29T06:07:10.1583543Z ##[debug] { +2024-05-29T06:07:10.1583811Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:07:10.1584173Z ##[debug] "name": "wait-success", +2024-05-29T06:07:10.1584543Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:10.1585143Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:07:10.1585739Z ##[debug] "conclusion": null +2024-05-29T06:07:10.1586046Z ##[debug] }, +2024-05-29T06:07:10.1586287Z ##[debug] { +2024-05-29T06:07:10.1586559Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:07:10.1586939Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:07:10.1587321Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1587912Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:07:10.1588620Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1588940Z ##[debug] }, +2024-05-29T06:07:10.1589172Z ##[debug] { +2024-05-29T06:07:10.1589441Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:07:10.1589787Z ##[debug] "name": "wait-fail", +2024-05-29T06:07:10.1590124Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1590712Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:07:10.1591307Z ##[debug] "conclusion": "FAILURE" +2024-05-29T06:07:10.1591623Z ##[debug] }, +2024-05-29T06:07:10.1591984Z ##[debug] { +2024-05-29T06:07:10.1592268Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:07:10.1592645Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:07:10.1593014Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1593729Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:07:10.1594327Z ##[debug] "conclusion": "FAILURE" +2024-05-29T06:07:10.1594638Z ##[debug] }, +2024-05-29T06:07:10.1594880Z ##[debug] { +2024-05-29T06:07:10.1595155Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:07:10.1595528Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:07:10.1595906Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1596515Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:07:10.1597128Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1597444Z ##[debug] } +2024-05-29T06:07:10.1597680Z ##[debug] ] +2024-05-29T06:07:10.1597914Z ##[debug] } +2024-05-29T06:07:10.1598230Z ##[debug] }, +2024-05-29T06:07:10.1598470Z ##[debug] "workflow": { +2024-05-29T06:07:10.1598801Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:10.1599356Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:10.1599852Z ##[debug] }, +2024-05-29T06:07:10.1600086Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1600382Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:10.1600722Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1601042Z ##[debug] "workflow": { +2024-05-29T06:07:10.1601375Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:10.1601941Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:10.1602437Z ##[debug] } +2024-05-29T06:07:10.1602657Z ##[debug] } +2024-05-29T06:07:10.1602881Z ##[debug] }, +2024-05-29T06:07:10.1603102Z ##[debug] { +2024-05-29T06:07:10.1603321Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1603620Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:07:10.1603975Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:07:10.1604320Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1604905Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:07:10.1605500Z ##[debug] "conclusion": "FAILURE" +2024-05-29T06:07:10.1605802Z ##[debug] }, +2024-05-29T06:07:10.1606034Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1606332Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:10.1606654Z ##[debug] "conclusion": null, +2024-05-29T06:07:10.1606956Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1607276Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:10.1607619Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1607940Z ##[debug] "workflow": { +2024-05-29T06:07:10.1608383Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:10.1608962Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:10.1609456Z ##[debug] } +2024-05-29T06:07:10.1609694Z ##[debug] }, +2024-05-29T06:07:10.1609931Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1610218Z ##[debug] "totalCount": 6, +2024-05-29T06:07:10.1610518Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1610821Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1611226Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:07:10.1611608Z ##[debug] }, +2024-05-29T06:07:10.1611851Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1612115Z ##[debug] { +2024-05-29T06:07:10.1612516Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:07:10.1612885Z ##[debug] "name": "intermediate", +2024-05-29T06:07:10.1613244Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1613841Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:07:10.1614556Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1614877Z ##[debug] }, +2024-05-29T06:07:10.1615113Z ##[debug] { +2024-05-29T06:07:10.1615383Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:07:10.1615739Z ##[debug] "name": "wait-success", +2024-05-29T06:07:10.1616084Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:10.1616689Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:07:10.1617283Z ##[debug] "conclusion": null +2024-05-29T06:07:10.1617601Z ##[debug] }, +2024-05-29T06:07:10.1617836Z ##[debug] { +2024-05-29T06:07:10.1618198Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:07:10.1618579Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:07:10.1618960Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1619554Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:07:10.1620157Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1620475Z ##[debug] }, +2024-05-29T06:07:10.1620716Z ##[debug] { +2024-05-29T06:07:10.1620990Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:07:10.1621335Z ##[debug] "name": "wait-fail", +2024-05-29T06:07:10.1621680Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1622273Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:07:10.1622875Z ##[debug] "conclusion": "FAILURE" +2024-05-29T06:07:10.1623187Z ##[debug] }, +2024-05-29T06:07:10.1623426Z ##[debug] { +2024-05-29T06:07:10.1623695Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:07:10.1624072Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:07:10.1624447Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1625043Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:07:10.1625627Z ##[debug] "conclusion": "FAILURE" +2024-05-29T06:07:10.1625951Z ##[debug] }, +2024-05-29T06:07:10.1626190Z ##[debug] { +2024-05-29T06:07:10.1626489Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:07:10.1626865Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:07:10.1627247Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1627846Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:07:10.1628534Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1628853Z ##[debug] } +2024-05-29T06:07:10.1629090Z ##[debug] ] +2024-05-29T06:07:10.1629319Z ##[debug] } +2024-05-29T06:07:10.1629546Z ##[debug] }, +2024-05-29T06:07:10.1629777Z ##[debug] "workflow": { +2024-05-29T06:07:10.1630099Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:10.1630655Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:10.1631152Z ##[debug] }, +2024-05-29T06:07:10.1631382Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1631686Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:10.1632027Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1632339Z ##[debug] "workflow": { +2024-05-29T06:07:10.1632838Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:10.1633410Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:10.1633908Z ##[debug] } +2024-05-29T06:07:10.1634127Z ##[debug] } +2024-05-29T06:07:10.1634459Z ##[debug] }, +2024-05-29T06:07:10.1634670Z ##[debug] { +2024-05-29T06:07:10.1634899Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1635189Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:07:10.1635558Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:07:10.1635906Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1636503Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:07:10.1637104Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1637405Z ##[debug] }, +2024-05-29T06:07:10.1637638Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1637941Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:10.1638357Z ##[debug] "conclusion": null, +2024-05-29T06:07:10.1638668Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1638989Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:10.1639328Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1639659Z ##[debug] "workflow": { +2024-05-29T06:07:10.1640011Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:10.1640574Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:10.1641072Z ##[debug] } +2024-05-29T06:07:10.1641306Z ##[debug] }, +2024-05-29T06:07:10.1641538Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1641830Z ##[debug] "totalCount": 6, +2024-05-29T06:07:10.1642132Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1642437Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1642842Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:07:10.1643237Z ##[debug] }, +2024-05-29T06:07:10.1643481Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1643740Z ##[debug] { +2024-05-29T06:07:10.1644016Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:07:10.1644387Z ##[debug] "name": "intermediate", +2024-05-29T06:07:10.1644740Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1645348Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:07:10.1645956Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1646277Z ##[debug] }, +2024-05-29T06:07:10.1646523Z ##[debug] { +2024-05-29T06:07:10.1646801Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:07:10.1646920Z ##[debug] "name": "wait-success", +2024-05-29T06:07:10.1647041Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:10.1647408Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:07:10.1647517Z ##[debug] "conclusion": null +2024-05-29T06:07:10.1647611Z ##[debug] }, +2024-05-29T06:07:10.1647696Z ##[debug] { +2024-05-29T06:07:10.1647822Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:07:10.1647968Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:07:10.1648179Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1648534Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:07:10.1648659Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1648747Z ##[debug] }, +2024-05-29T06:07:10.1648839Z ##[debug] { +2024-05-29T06:07:10.1648958Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:07:10.1649067Z ##[debug] "name": "wait-fail", +2024-05-29T06:07:10.1649320Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1649687Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:07:10.1649803Z ##[debug] "conclusion": "FAILURE" +2024-05-29T06:07:10.1649998Z ##[debug] }, +2024-05-29T06:07:10.1650081Z ##[debug] { +2024-05-29T06:07:10.1650207Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:07:10.1650337Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:07:10.1650454Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1650823Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:07:10.1650936Z ##[debug] "conclusion": "FAILURE" +2024-05-29T06:07:10.1651024Z ##[debug] }, +2024-05-29T06:07:10.1651115Z ##[debug] { +2024-05-29T06:07:10.1651232Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:07:10.1651376Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:07:10.1651501Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1651863Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:07:10.1651990Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1652074Z ##[debug] } +2024-05-29T06:07:10.1652157Z ##[debug] ] +2024-05-29T06:07:10.1652248Z ##[debug] } +2024-05-29T06:07:10.1652334Z ##[debug] }, +2024-05-29T06:07:10.1652431Z ##[debug] "workflow": { +2024-05-29T06:07:10.1652586Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:10.1652871Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:10.1652957Z ##[debug] }, +2024-05-29T06:07:10.1653064Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1653174Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:10.1653294Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1653387Z ##[debug] "workflow": { +2024-05-29T06:07:10.1653544Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:10.1653842Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:10.1653935Z ##[debug] } +2024-05-29T06:07:10.1654019Z ##[debug] } +2024-05-29T06:07:10.1654108Z ##[debug] }, +2024-05-29T06:07:10.1654190Z ##[debug] { +2024-05-29T06:07:10.1654284Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1654399Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:07:10.1654518Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:07:10.1654627Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1654991Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:07:10.1655100Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:10.1655192Z ##[debug] }, +2024-05-29T06:07:10.1655287Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1655389Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1655505Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:07:10.1655609Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1655723Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:07:10.1655843Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1655939Z ##[debug] "workflow": { +2024-05-29T06:07:10.1656089Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:10.1656385Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:10.1656470Z ##[debug] } +2024-05-29T06:07:10.1656559Z ##[debug] }, +2024-05-29T06:07:10.1656655Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1656752Z ##[debug] "totalCount": 4, +2024-05-29T06:07:10.1656856Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1657066Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1657250Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:07:10.1657345Z ##[debug] }, +2024-05-29T06:07:10.1657437Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1657601Z ##[debug] { +2024-05-29T06:07:10.1657731Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:07:10.1657862Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:07:10.1657987Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1658460Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:07:10.1658581Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:10.1658677Z ##[debug] }, +2024-05-29T06:07:10.1658761Z ##[debug] { +2024-05-29T06:07:10.1658882Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:07:10.1658995Z ##[debug] "name": "renovate", +2024-05-29T06:07:10.1659122Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1659490Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:07:10.1659611Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:10.1659702Z ##[debug] }, +2024-05-29T06:07:10.1659791Z ##[debug] { +2024-05-29T06:07:10.1659911Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:07:10.1660033Z ##[debug] "name": "selfup-runner", +2024-05-29T06:07:10.1660158Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1660512Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:07:10.1660634Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:10.1660719Z ##[debug] }, +2024-05-29T06:07:10.1660804Z ##[debug] { +2024-05-29T06:07:10.1660933Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:07:10.1661048Z ##[debug] "name": "dependabot", +2024-05-29T06:07:10.1661161Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1661526Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:07:10.1661646Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:10.1661732Z ##[debug] } +2024-05-29T06:07:10.1661823Z ##[debug] ] +2024-05-29T06:07:10.1661907Z ##[debug] } +2024-05-29T06:07:10.1661999Z ##[debug] }, +2024-05-29T06:07:10.1662094Z ##[debug] "workflow": { +2024-05-29T06:07:10.1662197Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:10.1662490Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:10.1662574Z ##[debug] }, +2024-05-29T06:07:10.1662671Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1662788Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:07:10.1662903Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1663011Z ##[debug] "workflow": { +2024-05-29T06:07:10.1663130Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:10.1663414Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:10.1663505Z ##[debug] } +2024-05-29T06:07:10.1663595Z ##[debug] } +2024-05-29T06:07:10.1663679Z ##[debug] }, +2024-05-29T06:07:10.1663768Z ##[debug] { +2024-05-29T06:07:10.1663861Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1663971Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:07:10.1664076Z ##[debug] "name": "renovate", +2024-05-29T06:07:10.1664179Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1664543Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:07:10.1664656Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:10.1664871Z ##[debug] }, +2024-05-29T06:07:10.1664972Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1665081Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1665190Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:07:10.1665300Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1665540Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:07:10.1665651Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1665753Z ##[debug] "workflow": { +2024-05-29T06:07:10.1665855Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:10.1666142Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:10.1666232Z ##[debug] } +2024-05-29T06:07:10.1666317Z ##[debug] }, +2024-05-29T06:07:10.1666414Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1666517Z ##[debug] "totalCount": 4, +2024-05-29T06:07:10.1666611Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1666727Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1666911Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:07:10.1666995Z ##[debug] }, +2024-05-29T06:07:10.1667095Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1667179Z ##[debug] { +2024-05-29T06:07:10.1667308Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:07:10.1667445Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:07:10.1667564Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1667924Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:07:10.1668048Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:10.1668235Z ##[debug] }, +2024-05-29T06:07:10.1668317Z ##[debug] { +2024-05-29T06:07:10.1668443Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:07:10.1668548Z ##[debug] "name": "renovate", +2024-05-29T06:07:10.1668671Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1669032Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:07:10.1669150Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:10.1669246Z ##[debug] }, +2024-05-29T06:07:10.1669328Z ##[debug] { +2024-05-29T06:07:10.1669446Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:07:10.1669572Z ##[debug] "name": "selfup-runner", +2024-05-29T06:07:10.1669689Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1670049Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:07:10.1670165Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:10.1670248Z ##[debug] }, +2024-05-29T06:07:10.1670336Z ##[debug] { +2024-05-29T06:07:10.1670453Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:07:10.1670568Z ##[debug] "name": "dependabot", +2024-05-29T06:07:10.1670686Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1671041Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:07:10.1671165Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:10.1671252Z ##[debug] } +2024-05-29T06:07:10.1671335Z ##[debug] ] +2024-05-29T06:07:10.1671422Z ##[debug] } +2024-05-29T06:07:10.1671503Z ##[debug] }, +2024-05-29T06:07:10.1671594Z ##[debug] "workflow": { +2024-05-29T06:07:10.1671705Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:10.1671984Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:10.1672066Z ##[debug] }, +2024-05-29T06:07:10.1672169Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1672277Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:07:10.1672544Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1672647Z ##[debug] "workflow": { +2024-05-29T06:07:10.1672746Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:10.1673037Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:10.1673231Z ##[debug] } +2024-05-29T06:07:10.1673313Z ##[debug] } +2024-05-29T06:07:10.1673403Z ##[debug] }, +2024-05-29T06:07:10.1673483Z ##[debug] { +2024-05-29T06:07:10.1673574Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1673689Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:07:10.1673794Z ##[debug] "name": "selfup-runner", +2024-05-29T06:07:10.1673896Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1674268Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:07:10.1674375Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:10.1674462Z ##[debug] }, +2024-05-29T06:07:10.1674564Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1674665Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1674777Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:07:10.1674874Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1674996Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:07:10.1675113Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1675206Z ##[debug] "workflow": { +2024-05-29T06:07:10.1675306Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:10.1675601Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:10.1675685Z ##[debug] } +2024-05-29T06:07:10.1675769Z ##[debug] }, +2024-05-29T06:07:10.1675871Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1675970Z ##[debug] "totalCount": 4, +2024-05-29T06:07:10.1676071Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1676181Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1676364Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:07:10.1676459Z ##[debug] }, +2024-05-29T06:07:10.1676552Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1676636Z ##[debug] { +2024-05-29T06:07:10.1676774Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:07:10.1676903Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:07:10.1677021Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1677385Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:07:10.1677503Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:10.1677594Z ##[debug] }, +2024-05-29T06:07:10.1677678Z ##[debug] { +2024-05-29T06:07:10.1677796Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:07:10.1677907Z ##[debug] "name": "renovate", +2024-05-29T06:07:10.1678026Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1678482Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:07:10.1678610Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:10.1678695Z ##[debug] }, +2024-05-29T06:07:10.1678795Z ##[debug] { +2024-05-29T06:07:10.1678915Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:07:10.1679035Z ##[debug] "name": "selfup-runner", +2024-05-29T06:07:10.1679157Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1679509Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:07:10.1679624Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:10.1679715Z ##[debug] }, +2024-05-29T06:07:10.1679801Z ##[debug] { +2024-05-29T06:07:10.1679916Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:07:10.1680154Z ##[debug] "name": "dependabot", +2024-05-29T06:07:10.1680270Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1680631Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:07:10.1680858Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:10.1680943Z ##[debug] } +2024-05-29T06:07:10.1681033Z ##[debug] ] +2024-05-29T06:07:10.1681117Z ##[debug] } +2024-05-29T06:07:10.1681200Z ##[debug] }, +2024-05-29T06:07:10.1681303Z ##[debug] "workflow": { +2024-05-29T06:07:10.1681403Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:10.1681687Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:10.1681778Z ##[debug] }, +2024-05-29T06:07:10.1681874Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1681989Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:07:10.1682103Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1682196Z ##[debug] "workflow": { +2024-05-29T06:07:10.1682300Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:10.1682577Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:10.1682669Z ##[debug] } +2024-05-29T06:07:10.1682757Z ##[debug] } +2024-05-29T06:07:10.1682839Z ##[debug] }, +2024-05-29T06:07:10.1682920Z ##[debug] { +2024-05-29T06:07:10.1683019Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1683128Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:07:10.1683232Z ##[debug] "name": "dependabot", +2024-05-29T06:07:10.1683341Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1683704Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:07:10.1683823Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:10.1683905Z ##[debug] }, +2024-05-29T06:07:10.1684007Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1684116Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1684226Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:07:10.1684323Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1684442Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:07:10.1684560Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1684655Z ##[debug] "workflow": { +2024-05-29T06:07:10.1684764Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:10.1685053Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:10.1685145Z ##[debug] } +2024-05-29T06:07:10.1685229Z ##[debug] }, +2024-05-29T06:07:10.1685323Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1685429Z ##[debug] "totalCount": 4, +2024-05-29T06:07:10.1685523Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1685635Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1685828Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:07:10.1685913Z ##[debug] }, +2024-05-29T06:07:10.1686003Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1686093Z ##[debug] { +2024-05-29T06:07:10.1686215Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:07:10.1686359Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:07:10.1686474Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1686835Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:07:10.1686959Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:10.1687044Z ##[debug] }, +2024-05-29T06:07:10.1687130Z ##[debug] { +2024-05-29T06:07:10.1687258Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:07:10.1687364Z ##[debug] "name": "renovate", +2024-05-29T06:07:10.1687481Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1687942Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:07:10.1688156Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:10.1688255Z ##[debug] }, +2024-05-29T06:07:10.1688454Z ##[debug] { +2024-05-29T06:07:10.1688573Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:07:10.1688701Z ##[debug] "name": "selfup-runner", +2024-05-29T06:07:10.1688814Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1689168Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:07:10.1689291Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:10.1689378Z ##[debug] }, +2024-05-29T06:07:10.1689469Z ##[debug] { +2024-05-29T06:07:10.1689586Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:07:10.1689701Z ##[debug] "name": "dependabot", +2024-05-29T06:07:10.1689826Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1690182Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:07:10.1690299Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:10.1690398Z ##[debug] } +2024-05-29T06:07:10.1690482Z ##[debug] ] +2024-05-29T06:07:10.1690566Z ##[debug] } +2024-05-29T06:07:10.1690654Z ##[debug] }, +2024-05-29T06:07:10.1690748Z ##[debug] "workflow": { +2024-05-29T06:07:10.1690857Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:10.1691138Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:10.1691220Z ##[debug] }, +2024-05-29T06:07:10.1691322Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1691430Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:07:10.1691539Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1691643Z ##[debug] "workflow": { +2024-05-29T06:07:10.1691743Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:10.1692027Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:10.1692117Z ##[debug] } +2024-05-29T06:07:10.1692208Z ##[debug] } +2024-05-29T06:07:10.1692291Z ##[debug] }, +2024-05-29T06:07:10.1692381Z ##[debug] { +2024-05-29T06:07:10.1692472Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1692590Z ##[debug] "databaseId": 25536411287, +2024-05-29T06:07:10.1692684Z ##[debug] "name": "echo", +2024-05-29T06:07:10.1692787Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1693159Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", +2024-05-29T06:07:10.1693267Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1693350Z ##[debug] }, +2024-05-29T06:07:10.1693453Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1693560Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1693668Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:10.1693774Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1693892Z ##[debug] "databaseId": 9281068684, +2024-05-29T06:07:10.1694012Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1694107Z ##[debug] "workflow": { +2024-05-29T06:07:10.1694229Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:07:10.1694533Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:07:10.1694619Z ##[debug] } +2024-05-29T06:07:10.1694701Z ##[debug] }, +2024-05-29T06:07:10.1694802Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1694900Z ##[debug] "totalCount": 1, +2024-05-29T06:07:10.1694994Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1695112Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1695408Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpc=" +2024-05-29T06:07:10.1695503Z ##[debug] }, +2024-05-29T06:07:10.1695594Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1695678Z ##[debug] { +2024-05-29T06:07:10.1695809Z ##[debug] "databaseId": 25536411287, +2024-05-29T06:07:10.1696018Z ##[debug] "name": "echo", +2024-05-29T06:07:10.1696135Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1696503Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", +2024-05-29T06:07:10.1696623Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1696707Z ##[debug] } +2024-05-29T06:07:10.1696796Z ##[debug] ] +2024-05-29T06:07:10.1696879Z ##[debug] } +2024-05-29T06:07:10.1696961Z ##[debug] }, +2024-05-29T06:07:10.1697059Z ##[debug] "workflow": { +2024-05-29T06:07:10.1697174Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:07:10.1697470Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:07:10.1697554Z ##[debug] }, +2024-05-29T06:07:10.1697650Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1697762Z ##[debug] "databaseId": 9281068684, +2024-05-29T06:07:10.1697878Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1697970Z ##[debug] "workflow": { +2024-05-29T06:07:10.1698192Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:07:10.1698480Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:07:10.1698571Z ##[debug] } +2024-05-29T06:07:10.1698653Z ##[debug] } +2024-05-29T06:07:10.1698735Z ##[debug] }, +2024-05-29T06:07:10.1698825Z ##[debug] { +2024-05-29T06:07:10.1698916Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1699024Z ##[debug] "databaseId": 25536411604, +2024-05-29T06:07:10.1699122Z ##[debug] "name": "wait", +2024-05-29T06:07:10.1699222Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1699591Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", +2024-05-29T06:07:10.1699705Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1699789Z ##[debug] }, +2024-05-29T06:07:10.1699888Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1699996Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1700103Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:10.1700205Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1700319Z ##[debug] "databaseId": 9281068685, +2024-05-29T06:07:10.1700430Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1700530Z ##[debug] "workflow": { +2024-05-29T06:07:10.1700647Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:07:10.1700923Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:07:10.1701016Z ##[debug] } +2024-05-29T06:07:10.1701109Z ##[debug] }, +2024-05-29T06:07:10.1701207Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1701311Z ##[debug] "totalCount": 1, +2024-05-29T06:07:10.1701406Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1701516Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1701703Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWt9Q=" +2024-05-29T06:07:10.1701789Z ##[debug] }, +2024-05-29T06:07:10.1701883Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1701968Z ##[debug] { +2024-05-29T06:07:10.1702087Z ##[debug] "databaseId": 25536411604, +2024-05-29T06:07:10.1702191Z ##[debug] "name": "wait", +2024-05-29T06:07:10.1702305Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1702669Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", +2024-05-29T06:07:10.1702794Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1703009Z ##[debug] } +2024-05-29T06:07:10.1703097Z ##[debug] ] +2024-05-29T06:07:10.1703188Z ##[debug] } +2024-05-29T06:07:10.1703270Z ##[debug] }, +2024-05-29T06:07:10.1703367Z ##[debug] "workflow": { +2024-05-29T06:07:10.1703474Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:07:10.1703851Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:07:10.1703943Z ##[debug] }, +2024-05-29T06:07:10.1704037Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1704143Z ##[debug] "databaseId": 9281068685, +2024-05-29T06:07:10.1704258Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1704351Z ##[debug] "workflow": { +2024-05-29T06:07:10.1704460Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:07:10.1704740Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:07:10.1704825Z ##[debug] } +2024-05-29T06:07:10.1704915Z ##[debug] } +2024-05-29T06:07:10.1705003Z ##[debug] }, +2024-05-29T06:07:10.1705085Z ##[debug] { +2024-05-29T06:07:10.1705187Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1705294Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:07:10.1705399Z ##[debug] "name": "default_logic", +2024-05-29T06:07:10.1705512Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1705873Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:07:10.1705979Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1706069Z ##[debug] }, +2024-05-29T06:07:10.1706162Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1706265Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1706381Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:10.1706477Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1706598Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:10.1706714Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1706812Z ##[debug] "workflow": { +2024-05-29T06:07:10.1706918Z ##[debug] "name": "Itself", +2024-05-29T06:07:10.1707176Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:10.1707265Z ##[debug] } +2024-05-29T06:07:10.1707356Z ##[debug] }, +2024-05-29T06:07:10.1707449Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1707545Z ##[debug] "totalCount": 7, +2024-05-29T06:07:10.1707646Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1707756Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1707939Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:07:10.1708023Z ##[debug] }, +2024-05-29T06:07:10.1708221Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1708316Z ##[debug] { +2024-05-29T06:07:10.1708437Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:07:10.1708557Z ##[debug] "name": "default_logic", +2024-05-29T06:07:10.1708682Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1709045Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:07:10.1709164Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1709263Z ##[debug] }, +2024-05-29T06:07:10.1709347Z ##[debug] { +2024-05-29T06:07:10.1709473Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:07:10.1709595Z ##[debug] "name": "equal_intervals", +2024-05-29T06:07:10.1709709Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1710067Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:07:10.1710184Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1710268Z ##[debug] }, +2024-05-29T06:07:10.1710358Z ##[debug] { +2024-05-29T06:07:10.1710592Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:07:10.1710773Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:07:10.1710888Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1711240Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:07:10.1711465Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1711551Z ##[debug] }, +2024-05-29T06:07:10.1711635Z ##[debug] { +2024-05-29T06:07:10.1711761Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:07:10.1711869Z ##[debug] "name": "skip-list", +2024-05-29T06:07:10.1711983Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1712353Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:07:10.1712470Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1712567Z ##[debug] }, +2024-05-29T06:07:10.1712652Z ##[debug] { +2024-05-29T06:07:10.1712769Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:07:10.1712976Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:07:10.1713095Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1713445Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:07:10.1713568Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1713652Z ##[debug] }, +2024-05-29T06:07:10.1713743Z ##[debug] { +2024-05-29T06:07:10.1713859Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:07:10.1714081Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:07:10.1714202Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1714564Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:07:10.1714678Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1714770Z ##[debug] }, +2024-05-29T06:07:10.1714853Z ##[debug] { +2024-05-29T06:07:10.1714978Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:07:10.1715092Z ##[debug] "name": "wait-list", +2024-05-29T06:07:10.1715208Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1715573Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:07:10.1715686Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1715771Z ##[debug] } +2024-05-29T06:07:10.1715866Z ##[debug] ] +2024-05-29T06:07:10.1715949Z ##[debug] } +2024-05-29T06:07:10.1716031Z ##[debug] }, +2024-05-29T06:07:10.1716136Z ##[debug] "workflow": { +2024-05-29T06:07:10.1716234Z ##[debug] "name": "Itself", +2024-05-29T06:07:10.1716503Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:10.1716588Z ##[debug] }, +2024-05-29T06:07:10.1716685Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1716802Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:10.1716913Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1717006Z ##[debug] "workflow": { +2024-05-29T06:07:10.1717112Z ##[debug] "name": "Itself", +2024-05-29T06:07:10.1717370Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:10.1717456Z ##[debug] } +2024-05-29T06:07:10.1717547Z ##[debug] } +2024-05-29T06:07:10.1717630Z ##[debug] }, +2024-05-29T06:07:10.1717713Z ##[debug] { +2024-05-29T06:07:10.1717812Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1717921Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:07:10.1718042Z ##[debug] "name": "equal_intervals", +2024-05-29T06:07:10.1718571Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1719054Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:07:10.1719178Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1719383Z ##[debug] }, +2024-05-29T06:07:10.1719479Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1719591Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1719711Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:10.1719811Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1719932Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:10.1720044Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1720145Z ##[debug] "workflow": { +2024-05-29T06:07:10.1720244Z ##[debug] "name": "Itself", +2024-05-29T06:07:10.1720504Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:10.1720594Z ##[debug] } +2024-05-29T06:07:10.1720682Z ##[debug] }, +2024-05-29T06:07:10.1720776Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1720883Z ##[debug] "totalCount": 7, +2024-05-29T06:07:10.1720977Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1721087Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1721279Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:07:10.1721362Z ##[debug] }, +2024-05-29T06:07:10.1721452Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1721544Z ##[debug] { +2024-05-29T06:07:10.1721666Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:07:10.1721794Z ##[debug] "name": "default_logic", +2024-05-29T06:07:10.1721911Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1722276Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:07:10.1722403Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1722491Z ##[debug] }, +2024-05-29T06:07:10.1722575Z ##[debug] { +2024-05-29T06:07:10.1722700Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:07:10.1722822Z ##[debug] "name": "equal_intervals", +2024-05-29T06:07:10.1722949Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1723310Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:07:10.1723427Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1723519Z ##[debug] }, +2024-05-29T06:07:10.1723603Z ##[debug] { +2024-05-29T06:07:10.1723719Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:07:10.1723895Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:07:10.1724010Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1724372Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:07:10.1724486Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1724569Z ##[debug] }, +2024-05-29T06:07:10.1724660Z ##[debug] { +2024-05-29T06:07:10.1724778Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:07:10.1724889Z ##[debug] "name": "skip-list", +2024-05-29T06:07:10.1725009Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1725365Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:07:10.1725485Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1725568Z ##[debug] }, +2024-05-29T06:07:10.1725651Z ##[debug] { +2024-05-29T06:07:10.1725777Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:07:10.1725975Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:07:10.1726194Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1726601Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:07:10.1726721Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1726883Z ##[debug] }, +2024-05-29T06:07:10.1726975Z ##[debug] { +2024-05-29T06:07:10.1727093Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:07:10.1727320Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:07:10.1727437Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1727792Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:07:10.1727912Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1727998Z ##[debug] }, +2024-05-29T06:07:10.1728189Z ##[debug] { +2024-05-29T06:07:10.1728319Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:07:10.1728439Z ##[debug] "name": "wait-list", +2024-05-29T06:07:10.1728564Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1728916Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:07:10.1729038Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1729128Z ##[debug] } +2024-05-29T06:07:10.1729215Z ##[debug] ] +2024-05-29T06:07:10.1729297Z ##[debug] } +2024-05-29T06:07:10.1729387Z ##[debug] }, +2024-05-29T06:07:10.1729483Z ##[debug] "workflow": { +2024-05-29T06:07:10.1729580Z ##[debug] "name": "Itself", +2024-05-29T06:07:10.1729843Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:10.1729926Z ##[debug] }, +2024-05-29T06:07:10.1730031Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1730140Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:10.1730254Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1730354Z ##[debug] "workflow": { +2024-05-29T06:07:10.1730452Z ##[debug] "name": "Itself", +2024-05-29T06:07:10.1730709Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:10.1730803Z ##[debug] } +2024-05-29T06:07:10.1730888Z ##[debug] } +2024-05-29T06:07:10.1730972Z ##[debug] }, +2024-05-29T06:07:10.1731060Z ##[debug] { +2024-05-29T06:07:10.1731154Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1731264Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:07:10.1731436Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:07:10.1731541Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1731912Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:07:10.1732021Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1732104Z ##[debug] }, +2024-05-29T06:07:10.1732209Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1732310Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1732418Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:10.1732521Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1732639Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:10.1732748Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1732848Z ##[debug] "workflow": { +2024-05-29T06:07:10.1732947Z ##[debug] "name": "Itself", +2024-05-29T06:07:10.1733212Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:10.1733297Z ##[debug] } +2024-05-29T06:07:10.1733380Z ##[debug] }, +2024-05-29T06:07:10.1733482Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1733578Z ##[debug] "totalCount": 7, +2024-05-29T06:07:10.1733672Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1733791Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1734088Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:07:10.1734177Z ##[debug] }, +2024-05-29T06:07:10.1734277Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1734361Z ##[debug] { +2024-05-29T06:07:10.1734589Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:07:10.1734719Z ##[debug] "name": "default_logic", +2024-05-29T06:07:10.1734838Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1735199Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:07:10.1735316Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1735402Z ##[debug] }, +2024-05-29T06:07:10.1735494Z ##[debug] { +2024-05-29T06:07:10.1735614Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:07:10.1735734Z ##[debug] "name": "equal_intervals", +2024-05-29T06:07:10.1735861Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1736221Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:07:10.1736343Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1736433Z ##[debug] }, +2024-05-29T06:07:10.1736515Z ##[debug] { +2024-05-29T06:07:10.1736639Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:07:10.1736808Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:07:10.1736923Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1737279Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:07:10.1737392Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1737481Z ##[debug] }, +2024-05-29T06:07:10.1737565Z ##[debug] { +2024-05-29T06:07:10.1737683Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:07:10.1737801Z ##[debug] "name": "skip-list", +2024-05-29T06:07:10.1737915Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1738377Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:07:10.1738503Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1738587Z ##[debug] }, +2024-05-29T06:07:10.1738672Z ##[debug] { +2024-05-29T06:07:10.1738795Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:07:10.1738991Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:07:10.1739109Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1739461Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:07:10.1739576Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1739670Z ##[debug] }, +2024-05-29T06:07:10.1739758Z ##[debug] { +2024-05-29T06:07:10.1739875Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:07:10.1740099Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:07:10.1740218Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1740577Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:07:10.1740693Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1740778Z ##[debug] }, +2024-05-29T06:07:10.1740868Z ##[debug] { +2024-05-29T06:07:10.1740988Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:07:10.1741096Z ##[debug] "name": "wait-list", +2024-05-29T06:07:10.1741219Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1741689Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:07:10.1741815Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1741901Z ##[debug] } +2024-05-29T06:07:10.1741984Z ##[debug] ] +2024-05-29T06:07:10.1742073Z ##[debug] } +2024-05-29T06:07:10.1742155Z ##[debug] }, +2024-05-29T06:07:10.1742385Z ##[debug] "workflow": { +2024-05-29T06:07:10.1742490Z ##[debug] "name": "Itself", +2024-05-29T06:07:10.1742747Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:10.1742831Z ##[debug] }, +2024-05-29T06:07:10.1742934Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1743044Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:10.1743151Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1743251Z ##[debug] "workflow": { +2024-05-29T06:07:10.1743347Z ##[debug] "name": "Itself", +2024-05-29T06:07:10.1743606Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:10.1743697Z ##[debug] } +2024-05-29T06:07:10.1743781Z ##[debug] } +2024-05-29T06:07:10.1743870Z ##[debug] }, +2024-05-29T06:07:10.1743954Z ##[debug] { +2024-05-29T06:07:10.1744047Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1744160Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:07:10.1744267Z ##[debug] "name": "skip-list", +2024-05-29T06:07:10.1744369Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1744736Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:07:10.1744843Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1744932Z ##[debug] }, +2024-05-29T06:07:10.1745026Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1745126Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1745240Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:10.1745336Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1745455Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:10.1745574Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1745668Z ##[debug] "workflow": { +2024-05-29T06:07:10.1745766Z ##[debug] "name": "Itself", +2024-05-29T06:07:10.1746030Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:10.1746118Z ##[debug] } +2024-05-29T06:07:10.1746200Z ##[debug] }, +2024-05-29T06:07:10.1746303Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1746401Z ##[debug] "totalCount": 7, +2024-05-29T06:07:10.1746501Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1746612Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1746788Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:07:10.1746880Z ##[debug] }, +2024-05-29T06:07:10.1746972Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1747056Z ##[debug] { +2024-05-29T06:07:10.1747186Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:07:10.1747307Z ##[debug] "name": "default_logic", +2024-05-29T06:07:10.1747421Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1747793Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:07:10.1747914Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1748003Z ##[debug] }, +2024-05-29T06:07:10.1748186Z ##[debug] { +2024-05-29T06:07:10.1748308Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:07:10.1748435Z ##[debug] "name": "equal_intervals", +2024-05-29T06:07:10.1748551Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1748902Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:07:10.1749024Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1749108Z ##[debug] }, +2024-05-29T06:07:10.1749351Z ##[debug] { +2024-05-29T06:07:10.1749474Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:07:10.1749645Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:07:10.1749766Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1750218Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:07:10.1750338Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1750429Z ##[debug] }, +2024-05-29T06:07:10.1750512Z ##[debug] { +2024-05-29T06:07:10.1750627Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:07:10.1750741Z ##[debug] "name": "skip-list", +2024-05-29T06:07:10.1750854Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1751215Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:07:10.1751335Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1751421Z ##[debug] }, +2024-05-29T06:07:10.1751513Z ##[debug] { +2024-05-29T06:07:10.1751630Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:07:10.1751835Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:07:10.1751961Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1752311Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:07:10.1752435Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1752519Z ##[debug] }, +2024-05-29T06:07:10.1752604Z ##[debug] { +2024-05-29T06:07:10.1752737Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:07:10.1752958Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:07:10.1753073Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1753444Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:07:10.1753562Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1753652Z ##[debug] }, +2024-05-29T06:07:10.1753744Z ##[debug] { +2024-05-29T06:07:10.1753860Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:07:10.1753973Z ##[debug] "name": "wait-list", +2024-05-29T06:07:10.1754089Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1754446Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:07:10.1754569Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1754653Z ##[debug] } +2024-05-29T06:07:10.1754741Z ##[debug] ] +2024-05-29T06:07:10.1754823Z ##[debug] } +2024-05-29T06:07:10.1754906Z ##[debug] }, +2024-05-29T06:07:10.1755007Z ##[debug] "workflow": { +2024-05-29T06:07:10.1755103Z ##[debug] "name": "Itself", +2024-05-29T06:07:10.1755359Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:10.1755451Z ##[debug] }, +2024-05-29T06:07:10.1755552Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1755663Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:10.1755786Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1755881Z ##[debug] "workflow": { +2024-05-29T06:07:10.1755981Z ##[debug] "name": "Itself", +2024-05-29T06:07:10.1756242Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:10.1756326Z ##[debug] } +2024-05-29T06:07:10.1756414Z ##[debug] } +2024-05-29T06:07:10.1756498Z ##[debug] }, +2024-05-29T06:07:10.1756582Z ##[debug] { +2024-05-29T06:07:10.1756681Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1756791Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:07:10.1757095Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:07:10.1757210Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1757576Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:07:10.1757762Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1757854Z ##[debug] }, +2024-05-29T06:07:10.1757948Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1758151Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1758261Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:10.1758359Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1758481Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:10.1758593Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1758689Z ##[debug] "workflow": { +2024-05-29T06:07:10.1758793Z ##[debug] "name": "Itself", +2024-05-29T06:07:10.1759060Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:10.1759145Z ##[debug] } +2024-05-29T06:07:10.1759236Z ##[debug] }, +2024-05-29T06:07:10.1759331Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1759430Z ##[debug] "totalCount": 7, +2024-05-29T06:07:10.1759539Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1759649Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1759832Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:07:10.1759918Z ##[debug] }, +2024-05-29T06:07:10.1760008Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1760099Z ##[debug] { +2024-05-29T06:07:10.1760224Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:07:10.1760350Z ##[debug] "name": "default_logic", +2024-05-29T06:07:10.1760473Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1760843Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:07:10.1760970Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1761056Z ##[debug] }, +2024-05-29T06:07:10.1761140Z ##[debug] { +2024-05-29T06:07:10.1761268Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:07:10.1761395Z ##[debug] "name": "equal_intervals", +2024-05-29T06:07:10.1761511Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1761872Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:07:10.1761989Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1762075Z ##[debug] }, +2024-05-29T06:07:10.1762165Z ##[debug] { +2024-05-29T06:07:10.1762281Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:07:10.1762457Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:07:10.1762579Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1762927Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:07:10.1763049Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1763137Z ##[debug] }, +2024-05-29T06:07:10.1763221Z ##[debug] { +2024-05-29T06:07:10.1763346Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:07:10.1763455Z ##[debug] "name": "skip-list", +2024-05-29T06:07:10.1763569Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1763939Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:07:10.1764054Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1764206Z ##[debug] }, +2024-05-29T06:07:10.1764344Z ##[debug] { +2024-05-29T06:07:10.1764513Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:07:10.1764971Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:07:10.1765104Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1765590Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:07:10.1765845Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1765932Z ##[debug] }, +2024-05-29T06:07:10.1766023Z ##[debug] { +2024-05-29T06:07:10.1766146Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:07:10.1766372Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:07:10.1766499Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1766871Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:07:10.1767000Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1767086Z ##[debug] }, +2024-05-29T06:07:10.1767177Z ##[debug] { +2024-05-29T06:07:10.1767306Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:07:10.1767418Z ##[debug] "name": "wait-list", +2024-05-29T06:07:10.1767535Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1767914Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:07:10.1768198Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1768288Z ##[debug] } +2024-05-29T06:07:10.1768379Z ##[debug] ] +2024-05-29T06:07:10.1768463Z ##[debug] } +2024-05-29T06:07:10.1768546Z ##[debug] }, +2024-05-29T06:07:10.1768645Z ##[debug] "workflow": { +2024-05-29T06:07:10.1768745Z ##[debug] "name": "Itself", +2024-05-29T06:07:10.1769011Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:10.1769093Z ##[debug] }, +2024-05-29T06:07:10.1769194Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1769310Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:10.1769421Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1769516Z ##[debug] "workflow": { +2024-05-29T06:07:10.1769619Z ##[debug] "name": "Itself", +2024-05-29T06:07:10.1769882Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:10.1769967Z ##[debug] } +2024-05-29T06:07:10.1770056Z ##[debug] } +2024-05-29T06:07:10.1770139Z ##[debug] }, +2024-05-29T06:07:10.1770224Z ##[debug] { +2024-05-29T06:07:10.1770326Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1770439Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:07:10.1770664Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:07:10.1770766Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1771138Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:07:10.1771256Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1771339Z ##[debug] }, +2024-05-29T06:07:10.1771433Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1771541Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1771652Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:10.1771757Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1771871Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:10.1771984Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1772085Z ##[debug] "workflow": { +2024-05-29T06:07:10.1772183Z ##[debug] "name": "Itself", +2024-05-29T06:07:10.1772440Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:10.1772531Z ##[debug] } +2024-05-29T06:07:10.1772615Z ##[debug] }, +2024-05-29T06:07:10.1772708Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1772947Z ##[debug] "totalCount": 7, +2024-05-29T06:07:10.1773045Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1773157Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1773344Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:07:10.1773532Z ##[debug] }, +2024-05-29T06:07:10.1773628Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1773712Z ##[debug] { +2024-05-29T06:07:10.1773833Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:07:10.1773959Z ##[debug] "name": "default_logic", +2024-05-29T06:07:10.1774077Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1774440Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:07:10.1774563Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1774647Z ##[debug] }, +2024-05-29T06:07:10.1774730Z ##[debug] { +2024-05-29T06:07:10.1774866Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:07:10.1774985Z ##[debug] "name": "equal_intervals", +2024-05-29T06:07:10.1775104Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1775466Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:07:10.1775589Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1775679Z ##[debug] }, +2024-05-29T06:07:10.1775762Z ##[debug] { +2024-05-29T06:07:10.1775877Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:07:10.1776054Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:07:10.1776169Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1776534Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:07:10.1776649Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1776739Z ##[debug] }, +2024-05-29T06:07:10.1776833Z ##[debug] { +2024-05-29T06:07:10.1776950Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:07:10.1777058Z ##[debug] "name": "skip-list", +2024-05-29T06:07:10.1777184Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1777551Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:07:10.1777678Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1777763Z ##[debug] }, +2024-05-29T06:07:10.1777846Z ##[debug] { +2024-05-29T06:07:10.1777971Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:07:10.1778266Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:07:10.1778382Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1778743Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:07:10.1778857Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1778948Z ##[debug] }, +2024-05-29T06:07:10.1779032Z ##[debug] { +2024-05-29T06:07:10.1779149Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:07:10.1779379Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:07:10.1779495Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1779847Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:07:10.1779968Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1780054Z ##[debug] }, +2024-05-29T06:07:10.1780137Z ##[debug] { +2024-05-29T06:07:10.1780263Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:07:10.1780371Z ##[debug] "name": "wait-list", +2024-05-29T06:07:10.1780610Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1780963Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:07:10.1781078Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1781170Z ##[debug] } +2024-05-29T06:07:10.1781378Z ##[debug] ] +2024-05-29T06:07:10.1781461Z ##[debug] } +2024-05-29T06:07:10.1781552Z ##[debug] }, +2024-05-29T06:07:10.1781645Z ##[debug] "workflow": { +2024-05-29T06:07:10.1781743Z ##[debug] "name": "Itself", +2024-05-29T06:07:10.1782005Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:10.1782089Z ##[debug] }, +2024-05-29T06:07:10.1782190Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1782299Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:10.1782406Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1782505Z ##[debug] "workflow": { +2024-05-29T06:07:10.1782606Z ##[debug] "name": "Itself", +2024-05-29T06:07:10.1782869Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:10.1782961Z ##[debug] } +2024-05-29T06:07:10.1783042Z ##[debug] } +2024-05-29T06:07:10.1783130Z ##[debug] }, +2024-05-29T06:07:10.1783220Z ##[debug] { +2024-05-29T06:07:10.1783312Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1783421Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:07:10.1783532Z ##[debug] "name": "wait-list", +2024-05-29T06:07:10.1783634Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1784001Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:07:10.1784108Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1784190Z ##[debug] }, +2024-05-29T06:07:10.1784290Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1784392Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1784503Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:10.1784610Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1784726Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:10.1784834Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1784939Z ##[debug] "workflow": { +2024-05-29T06:07:10.1785037Z ##[debug] "name": "Itself", +2024-05-29T06:07:10.1785302Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:10.1785389Z ##[debug] } +2024-05-29T06:07:10.1785472Z ##[debug] }, +2024-05-29T06:07:10.1785573Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1785671Z ##[debug] "totalCount": 7, +2024-05-29T06:07:10.1785766Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1785883Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1786063Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:07:10.1786146Z ##[debug] }, +2024-05-29T06:07:10.1786249Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1786338Z ##[debug] { +2024-05-29T06:07:10.1786465Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:07:10.1786585Z ##[debug] "name": "default_logic", +2024-05-29T06:07:10.1786703Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1787067Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:07:10.1787189Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1787274Z ##[debug] }, +2024-05-29T06:07:10.1787365Z ##[debug] { +2024-05-29T06:07:10.1787482Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:07:10.1787603Z ##[debug] "name": "equal_intervals", +2024-05-29T06:07:10.1787724Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1788307Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:07:10.1788439Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1788524Z ##[debug] }, +2024-05-29T06:07:10.1788608Z ##[debug] { +2024-05-29T06:07:10.1788736Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:07:10.1789016Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:07:10.1789130Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1789489Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:07:10.1789604Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1789693Z ##[debug] }, +2024-05-29T06:07:10.1789775Z ##[debug] { +2024-05-29T06:07:10.1789890Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:07:10.1799044Z ##[debug] "name": "skip-list", +2024-05-29T06:07:10.1799199Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1799601Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:07:10.1799735Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1799823Z ##[debug] }, +2024-05-29T06:07:10.1799912Z ##[debug] { +2024-05-29T06:07:10.1800047Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:07:10.1800248Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:07:10.1800373Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1800747Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:07:10.1800867Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1800956Z ##[debug] }, +2024-05-29T06:07:10.1801041Z ##[debug] { +2024-05-29T06:07:10.1801163Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:07:10.1801392Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:07:10.1801511Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1801882Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:07:10.1802004Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1802088Z ##[debug] }, +2024-05-29T06:07:10.1802176Z ##[debug] { +2024-05-29T06:07:10.1802294Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:07:10.1802402Z ##[debug] "name": "wait-list", +2024-05-29T06:07:10.1802524Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1802894Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:07:10.1803015Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1803098Z ##[debug] } +2024-05-29T06:07:10.1803183Z ##[debug] ] +2024-05-29T06:07:10.1803271Z ##[debug] } +2024-05-29T06:07:10.1803354Z ##[debug] }, +2024-05-29T06:07:10.1803447Z ##[debug] "workflow": { +2024-05-29T06:07:10.1803550Z ##[debug] "name": "Itself", +2024-05-29T06:07:10.1803806Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:10.1803894Z ##[debug] }, +2024-05-29T06:07:10.1803998Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1804108Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:10.1804225Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1804319Z ##[debug] "workflow": { +2024-05-29T06:07:10.1804416Z ##[debug] "name": "Itself", +2024-05-29T06:07:10.1804682Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:10.1804764Z ##[debug] } +2024-05-29T06:07:10.1804846Z ##[debug] } +2024-05-29T06:07:10.1804934Z ##[debug] }, +2024-05-29T06:07:10.1805176Z ##[debug] { +2024-05-29T06:07:10.1805276Z ##[debug] "checkRun": { +2024-05-29T06:07:10.1805396Z ##[debug] "databaseId": 25536411358, +2024-05-29T06:07:10.1805520Z ##[debug] "name": "dependency-review", +2024-05-29T06:07:10.1805623Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1806108Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", +2024-05-29T06:07:10.1806213Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1806302Z ##[debug] }, +2024-05-29T06:07:10.1806398Z ##[debug] "checkSuite": { +2024-05-29T06:07:10.1806499Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1806611Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:10.1806708Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1806822Z ##[debug] "databaseId": 9281068690, +2024-05-29T06:07:10.1806935Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1807028Z ##[debug] "workflow": { +2024-05-29T06:07:10.1807145Z ##[debug] "name": "💂➕", +2024-05-29T06:07:10.1807471Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:07:10.1807555Z ##[debug] } +2024-05-29T06:07:10.1807656Z ##[debug] }, +2024-05-29T06:07:10.1807752Z ##[debug] "checkRuns": { +2024-05-29T06:07:10.1807849Z ##[debug] "totalCount": 1, +2024-05-29T06:07:10.1807950Z ##[debug] "pageInfo": { +2024-05-29T06:07:10.1808170Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:10.1808355Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtt4=" +2024-05-29T06:07:10.1808447Z ##[debug] }, +2024-05-29T06:07:10.1808538Z ##[debug] "nodes": [ +2024-05-29T06:07:10.1808621Z ##[debug] { +2024-05-29T06:07:10.1808749Z ##[debug] "databaseId": 25536411358, +2024-05-29T06:07:10.1808881Z ##[debug] "name": "dependency-review", +2024-05-29T06:07:10.1809007Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:10.1809383Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", +2024-05-29T06:07:10.1809503Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:10.1809597Z ##[debug] } +2024-05-29T06:07:10.1809680Z ##[debug] ] +2024-05-29T06:07:10.1809762Z ##[debug] } +2024-05-29T06:07:10.1809850Z ##[debug] }, +2024-05-29T06:07:10.1809944Z ##[debug] "workflow": { +2024-05-29T06:07:10.1810040Z ##[debug] "name": "💂➕", +2024-05-29T06:07:10.1810358Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:07:10.1810440Z ##[debug] }, +2024-05-29T06:07:10.1810534Z ##[debug] "workflowRun": { +2024-05-29T06:07:10.1810651Z ##[debug] "databaseId": 9281068690, +2024-05-29T06:07:10.1810758Z ##[debug] "event": "pull_request", +2024-05-29T06:07:10.1810855Z ##[debug] "workflow": { +2024-05-29T06:07:10.1810954Z ##[debug] "name": "💂➕", +2024-05-29T06:07:10.1811265Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:07:10.1811353Z ##[debug] } +2024-05-29T06:07:10.1811435Z ##[debug] } +2024-05-29T06:07:10.1811523Z ##[debug] } +2024-05-29T06:07:10.1811608Z ##[debug] ], +2024-05-29T06:07:10.1811719Z ##[debug] "elapsedMsec": 33880.05268900003 +2024-05-29T06:07:10.1811796Z ##[debug]} +2024-05-29T06:07:10.1813154Z GH-820-graceperiod.yml(quickstarter-success): [suiteStatus: IN_PROGRESS][suiteConclusion: (null)][runStatus: COMPLETED][runConclusion: SUCCESS][eventName: pull_request][runURL: https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631] +2024-05-29T06:07:10.1814430Z GH-820-graceperiod.yml(slowstarter-success): [suiteStatus: IN_PROGRESS][suiteConclusion: (null)][runStatus: COMPLETED][runConclusion: SUCCESS][eventName: pull_request][runURL: https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021] +2024-05-29T06:07:10.1815288Z ##[debug]{ +2024-05-29T06:07:10.1815386Z ##[debug] "label": "filtered", +2024-05-29T06:07:10.1815480Z ##[debug] "report": { +2024-05-29T06:07:10.1815579Z ##[debug] "progress": "done", +2024-05-29T06:07:10.1815805Z ##[debug] "conclusion": "acceptable", +2024-05-29T06:07:10.1815905Z ##[debug] "summaries": [ +2024-05-29T06:07:10.1815987Z ##[debug] { +2024-05-29T06:07:10.1816089Z ##[debug] "acceptable": true, +2024-05-29T06:07:10.1816242Z ##[debug] "workflowPath": "GH-820-graceperiod.yml", +2024-05-29T06:07:10.1816352Z ##[debug] "isSameWorkflow": true, +2024-05-29T06:07:10.1816480Z ##[debug] "eventName": "pull_request", +2024-05-29T06:07:10.1816616Z ##[debug] "checkSuiteStatus": "IN_PROGRESS", +2024-05-29T06:07:10.1816746Z ##[debug] "checkSuiteConclusion": null, +2024-05-29T06:07:10.1816870Z ##[debug] "runDatabaseId": 25536443631, +2024-05-29T06:07:10.1817013Z ##[debug] "jobName": "quickstarter-success", +2024-05-29T06:07:10.1817389Z ##[debug] "checkRunUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:07:10.1817511Z ##[debug] "runStatus": "COMPLETED", +2024-05-29T06:07:10.1817627Z ##[debug] "runConclusion": "SUCCESS" +2024-05-29T06:07:10.1817723Z ##[debug] }, +2024-05-29T06:07:10.1817806Z ##[debug] { +2024-05-29T06:07:10.1817910Z ##[debug] "acceptable": true, +2024-05-29T06:07:10.1818165Z ##[debug] "workflowPath": "GH-820-graceperiod.yml", +2024-05-29T06:07:10.1818283Z ##[debug] "isSameWorkflow": true, +2024-05-29T06:07:10.1818406Z ##[debug] "eventName": "pull_request", +2024-05-29T06:07:10.1818547Z ##[debug] "checkSuiteStatus": "IN_PROGRESS", +2024-05-29T06:07:10.1818676Z ##[debug] "checkSuiteConclusion": null, +2024-05-29T06:07:10.1818792Z ##[debug] "runDatabaseId": 25536456021, +2024-05-29T06:07:10.1818932Z ##[debug] "jobName": "slowstarter-success", +2024-05-29T06:07:10.1819325Z ##[debug] "checkRunUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:07:10.1819443Z ##[debug] "runStatus": "COMPLETED", +2024-05-29T06:07:10.1819558Z ##[debug] "runConclusion": "SUCCESS" +2024-05-29T06:07:10.1819646Z ##[debug] } +2024-05-29T06:07:10.1819732Z ##[debug] ] +2024-05-29T06:07:10.1819812Z ##[debug] } +2024-05-29T06:07:10.1819889Z ##[debug]} +2024-05-29T06:07:10.1820042Z all jobs passed +2024-05-29T06:07:10.1820380Z ::endgroup:: +2024-05-29T06:07:10.1820513Z ##[endgroup] +2024-05-29T06:07:10.1821837Z ##[debug]Node Action run completed with exit code 0 +2024-05-29T06:07:10.1824750Z ##[debug]Finishing: Run /./ +2024-05-29T06:07:10.1833212Z ##[debug]Evaluating condition for step: 'Post Run actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633' +2024-05-29T06:07:10.1836723Z ##[debug]Evaluating: always() +2024-05-29T06:07:10.1836937Z ##[debug]Evaluating always: +2024-05-29T06:07:10.1837722Z ##[debug]=> true +2024-05-29T06:07:10.1838342Z ##[debug]Result: true +2024-05-29T06:07:10.1839182Z ##[debug]Starting: Post Run actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 +2024-05-29T06:07:10.1872744Z ##[debug]Loading inputs +2024-05-29T06:07:10.1873515Z ##[debug]Evaluating: github.repository +2024-05-29T06:07:10.1873675Z ##[debug]Evaluating Index: +2024-05-29T06:07:10.1873787Z ##[debug]..Evaluating github: +2024-05-29T06:07:10.1873904Z ##[debug]..=> Object +2024-05-29T06:07:10.1874032Z ##[debug]..Evaluating String: +2024-05-29T06:07:10.1874143Z ##[debug]..=> 'repository' +2024-05-29T06:07:10.1874311Z ##[debug]=> 'kachick/wait-other-jobs' +2024-05-29T06:07:10.1874451Z ##[debug]Result: 'kachick/wait-other-jobs' +2024-05-29T06:07:10.1875814Z ##[debug]Evaluating: github.token +2024-05-29T06:07:10.1875921Z ##[debug]Evaluating Index: +2024-05-29T06:07:10.1876029Z ##[debug]..Evaluating github: +2024-05-29T06:07:10.1876136Z ##[debug]..=> Object +2024-05-29T06:07:10.1876252Z ##[debug]..Evaluating String: +2024-05-29T06:07:10.1876354Z ##[debug]..=> 'token' +2024-05-29T06:07:10.1876749Z ##[debug]=> '***' +2024-05-29T06:07:10.1877001Z ##[debug]Result: '***' +2024-05-29T06:07:10.1885422Z ##[debug]Loading env +2024-05-29T06:07:10.1889922Z Post job cleanup. +2024-05-29T06:07:10.2610606Z ##[debug]Getting git version +2024-05-29T06:07:10.2625799Z [command]/usr/bin/git version +2024-05-29T06:07:10.2671835Z git version 2.45.1 +2024-05-29T06:07:10.2694024Z ##[debug]0 +2024-05-29T06:07:10.2694712Z ##[debug]git version 2.45.1 +2024-05-29T06:07:10.2695141Z ##[debug] +2024-05-29T06:07:10.2696708Z ##[debug]Set git useragent to: git/2.45.1 (github-actions-checkout) +2024-05-29T06:07:10.2700729Z ::add-mask::*** +2024-05-29T06:07:10.2716845Z Temporarily overriding HOME='/home/runner/work/_temp/cb15a73f-8e47-4743-852c-88551fc5f46f' before making global git config changes +2024-05-29T06:07:10.2718574Z Adding repository directory to the temporary git global config as a safe directory +2024-05-29T06:07:10.2720818Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/wait-other-jobs/wait-other-jobs +2024-05-29T06:07:10.2749581Z ##[debug]0 +2024-05-29T06:07:10.2750303Z ##[debug] +2024-05-29T06:07:10.2756777Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2024-05-29T06:07:10.2784747Z ##[debug]1 +2024-05-29T06:07:10.2785397Z ##[debug] +2024-05-29T06:07:10.2788716Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2024-05-29T06:07:10.3020456Z ##[debug]0 +2024-05-29T06:07:10.3021382Z ##[debug] +2024-05-29T06:07:10.3025146Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2024-05-29T06:07:10.3045794Z http.https://github.com/.extraheader +2024-05-29T06:07:10.3052158Z ##[debug]0 +2024-05-29T06:07:10.3052735Z ##[debug]http.https://github.com/.extraheader +2024-05-29T06:07:10.3053114Z ##[debug] +2024-05-29T06:07:10.3056501Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader +2024-05-29T06:07:10.3081186Z ##[debug]0 +2024-05-29T06:07:10.3081831Z ##[debug] +2024-05-29T06:07:10.3084941Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2024-05-29T06:07:10.3309729Z ##[debug]0 +2024-05-29T06:07:10.3310239Z ##[debug] +2024-05-29T06:07:10.3310946Z ##[debug]Unsetting HOME override +2024-05-29T06:07:10.3391258Z ##[debug]Node Action run completed with exit code 0 +2024-05-29T06:07:10.3394960Z ##[debug]Finishing: Post Run actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 +2024-05-29T06:07:10.3563137Z ##[debug]Starting: Complete job +2024-05-29T06:07:10.3564767Z Uploading runner diagnostic logs +2024-05-29T06:07:10.3619098Z ##[debug]Starting diagnostic file upload. +2024-05-29T06:07:10.3619549Z ##[debug]Setting up diagnostic log folders. +2024-05-29T06:07:10.3621959Z ##[debug]Creating diagnostic log files folder. +2024-05-29T06:07:10.3640388Z ##[debug]Copying 1 worker diagnostic logs. +2024-05-29T06:07:10.3656827Z ##[debug]Copying 1 runner diagnostic logs. +2024-05-29T06:07:10.3658227Z ##[debug]Zipping diagnostic files. +2024-05-29T06:07:10.3716156Z ##[debug]Uploading diagnostic metadata file. +2024-05-29T06:07:10.3743256Z ##[debug]Diagnostic file upload complete. +2024-05-29T06:07:10.3743964Z Completed runner diagnostic log upload +2024-05-29T06:07:10.3744325Z Cleaning up orphan processes +2024-05-29T06:07:10.4116157Z ##[debug]Finishing: Complete job +2024-05-29T06:07:10.4245156Z ##[debug]Finishing: wait-success diff --git a/snapshots/run-9281068681/3_wait-fail.txt b/snapshots/run-9281068681/3_wait-fail.txt new file mode 100644 index 00000000..8d63a747 --- /dev/null +++ b/snapshots/run-9281068681/3_wait-fail.txt @@ -0,0 +1,12654 @@ +2024-05-29T06:06:34.6566920Z ##[debug]Starting: wait-fail +2024-05-29T06:06:34.6591487Z ##[debug]Cleaning runner temp folder: /home/runner/work/_temp +2024-05-29T06:06:34.6835321Z ##[debug]Starting: Set up job +2024-05-29T06:06:34.6836197Z Current runner version: '2.316.1' +2024-05-29T06:06:34.6945201Z ##[group]Operating System +2024-05-29T06:06:34.6945689Z Ubuntu +2024-05-29T06:06:34.6946154Z 24.04 +2024-05-29T06:06:34.6946411Z LTS +2024-05-29T06:06:34.6946656Z ##[endgroup] +2024-05-29T06:06:34.6946961Z ##[group]Runner Image +2024-05-29T06:06:34.6947313Z Image: ubuntu-24.04 +2024-05-29T06:06:34.6947627Z Version: 20240516.4.0 +2024-05-29T06:06:34.6948622Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20240516.4/images/ubuntu/Ubuntu2404-Readme.md +2024-05-29T06:06:34.6950100Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20240516.4 +2024-05-29T06:06:34.6950927Z ##[endgroup] +2024-05-29T06:06:34.6951254Z ##[group]Runner Image Provisioner +2024-05-29T06:06:34.6951664Z 2.0.369.1 +2024-05-29T06:06:34.6952024Z ##[endgroup] +2024-05-29T06:06:34.6952672Z ##[group]GITHUB_TOKEN Permissions +2024-05-29T06:06:34.6954205Z Metadata: read +2024-05-29T06:06:34.6954551Z ##[endgroup] +2024-05-29T06:06:34.6957875Z Secret source: Actions +2024-05-29T06:06:34.6958479Z ##[debug]Primary repository: kachick/wait-other-jobs +2024-05-29T06:06:34.6959068Z Prepare workflow directory +2024-05-29T06:06:34.7024697Z ##[debug]Creating pipeline directory: '/home/runner/work/wait-other-jobs' +2024-05-29T06:06:34.7027839Z ##[debug]Creating workspace directory: '/home/runner/work/wait-other-jobs/wait-other-jobs' +2024-05-29T06:06:34.7029265Z ##[debug]Update context data +2024-05-29T06:06:34.7032441Z ##[debug]Evaluating job-level environment variables +2024-05-29T06:06:34.7542737Z ##[debug]Evaluating job container +2024-05-29T06:06:34.7546055Z ##[debug]Evaluating job service containers +2024-05-29T06:06:34.7548477Z ##[debug]Evaluating job defaults +2024-05-29T06:06:34.7618074Z Prepare all required actions +2024-05-29T06:06:34.7839299Z Getting action download info +2024-05-29T06:06:34.8881336Z Download action repository 'actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633' (SHA:9bb56186c3b09b4f86b1c65136769dd318469633) +2024-05-29T06:06:34.9588689Z ##[debug]Copied action archive '/opt/actionarchivecache/actions_checkout/9bb56186c3b09b4f86b1c65136769dd318469633.tar.gz' to '/home/runner/work/_actions/_temp_fbe60868-8ccf-45c4-a23e-934c99c6d244/e123e514-4f1e-42dc-b8aa-53da28d9be86.tar.gz' +2024-05-29T06:06:35.0117179Z ##[debug]Unwrap 'actions-checkout-9bb5618' to '/home/runner/work/_actions/actions/checkout/9bb56186c3b09b4f86b1c65136769dd318469633' +2024-05-29T06:06:35.0273557Z ##[debug]Archive '/home/runner/work/_actions/_temp_fbe60868-8ccf-45c4-a23e-934c99c6d244/e123e514-4f1e-42dc-b8aa-53da28d9be86.tar.gz' has been unzipped into '/home/runner/work/_actions/actions/checkout/9bb56186c3b09b4f86b1c65136769dd318469633'. +2024-05-29T06:06:35.0427334Z ##[debug]action.yml for action: '/home/runner/work/_actions/actions/checkout/9bb56186c3b09b4f86b1c65136769dd318469633/action.yml'. +2024-05-29T06:06:35.1349511Z ##[debug]Set step '__actions_checkout' display name to: 'Run actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633' +2024-05-29T06:06:35.1351956Z ##[debug]Set step '__self' display name to: 'Run /./' +2024-05-29T06:06:35.1352943Z Complete job name: wait-fail +2024-05-29T06:06:35.1366102Z ##[debug]Collect running processes for tracking orphan processes. +2024-05-29T06:06:35.1576952Z ##[debug]Finishing: Set up job +2024-05-29T06:06:35.1775769Z ##[debug]Evaluating condition for step: 'Run actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633' +2024-05-29T06:06:35.1825461Z ##[debug]Evaluating: success() +2024-05-29T06:06:35.1830861Z ##[debug]Evaluating success: +2024-05-29T06:06:35.1854356Z ##[debug]=> true +2024-05-29T06:06:35.1861100Z ##[debug]Result: true +2024-05-29T06:06:35.1895417Z ##[debug]Starting: Run actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 +2024-05-29T06:06:35.2013732Z ##[debug]Register post job cleanup for action: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 +2024-05-29T06:06:35.2114313Z ##[debug]Loading inputs +2024-05-29T06:06:35.2122342Z ##[debug]Evaluating: github.repository +2024-05-29T06:06:35.2123521Z ##[debug]Evaluating Index: +2024-05-29T06:06:35.2125498Z ##[debug]..Evaluating github: +2024-05-29T06:06:35.2126873Z ##[debug]..=> Object +2024-05-29T06:06:35.2138868Z ##[debug]..Evaluating String: +2024-05-29T06:06:35.2139868Z ##[debug]..=> 'repository' +2024-05-29T06:06:35.2144157Z ##[debug]=> 'kachick/wait-other-jobs' +2024-05-29T06:06:35.2146163Z ##[debug]Result: 'kachick/wait-other-jobs' +2024-05-29T06:06:35.2148933Z ##[debug]Evaluating: github.token +2024-05-29T06:06:35.2149426Z ##[debug]Evaluating Index: +2024-05-29T06:06:35.2149832Z ##[debug]..Evaluating github: +2024-05-29T06:06:35.2150251Z ##[debug]..=> Object +2024-05-29T06:06:35.2150612Z ##[debug]..Evaluating String: +2024-05-29T06:06:35.2151010Z ##[debug]..=> 'token' +2024-05-29T06:06:35.2151660Z ##[debug]=> '***' +2024-05-29T06:06:35.2152242Z ##[debug]Result: '***' +2024-05-29T06:06:35.2167179Z ##[debug]Loading env +2024-05-29T06:06:35.2260186Z ##[group]Run actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 +2024-05-29T06:06:35.2260899Z with: +2024-05-29T06:06:35.2261224Z repository: kachick/wait-other-jobs +2024-05-29T06:06:35.2261939Z token: *** +2024-05-29T06:06:35.2262247Z ssh-strict: true +2024-05-29T06:06:35.2262591Z persist-credentials: true +2024-05-29T06:06:35.2262973Z clean: true +2024-05-29T06:06:35.2263307Z sparse-checkout-cone-mode: true +2024-05-29T06:06:35.2263739Z fetch-depth: 1 +2024-05-29T06:06:35.2264045Z fetch-tags: false +2024-05-29T06:06:35.2264364Z show-progress: true +2024-05-29T06:06:35.2264690Z lfs: false +2024-05-29T06:06:35.2264976Z submodules: false +2024-05-29T06:06:35.2265304Z set-safe-directory: true +2024-05-29T06:06:35.2265673Z ##[endgroup] +2024-05-29T06:06:35.3748704Z ##[debug]GITHUB_WORKSPACE = '/home/runner/work/wait-other-jobs/wait-other-jobs' +2024-05-29T06:06:35.3750983Z ##[debug]qualified repository = 'kachick/wait-other-jobs' +2024-05-29T06:06:35.3752467Z ##[debug]ref = 'refs/pull/821/merge' +2024-05-29T06:06:35.3753859Z ##[debug]commit = '78b7ef80457975b7d8a9fdd827bf7db72b867465' +2024-05-29T06:06:35.3755213Z ##[debug]clean = true +2024-05-29T06:06:35.3756344Z ##[debug]filter = undefined +2024-05-29T06:06:35.3757374Z ##[debug]fetch depth = 1 +2024-05-29T06:06:35.3758574Z ##[debug]fetch tags = false +2024-05-29T06:06:35.3759849Z ##[debug]show progress = true +2024-05-29T06:06:35.3760888Z ##[debug]lfs = false +2024-05-29T06:06:35.3761825Z ##[debug]submodules = false +2024-05-29T06:06:35.3762875Z ##[debug]recursive submodules = false +2024-05-29T06:06:35.3764007Z ##[debug]GitHub Host URL = +2024-05-29T06:06:35.3767024Z ::add-matcher::/home/runner/work/_actions/actions/checkout/9bb56186c3b09b4f86b1c65136769dd318469633/dist/problem-matcher.json +2024-05-29T06:06:35.3883006Z ##[debug]Added matchers: 'checkout-git'. Problem matchers scan action output for known warning or error strings and report these inline. +2024-05-29T06:06:35.3896148Z Syncing repository: kachick/wait-other-jobs +2024-05-29T06:06:35.3897965Z ::group::Getting Git version info +2024-05-29T06:06:35.3899683Z ##[group]Getting Git version info +2024-05-29T06:06:35.3901020Z Working directory is '/home/runner/work/wait-other-jobs/wait-other-jobs' +2024-05-29T06:06:35.3902664Z ##[debug]Getting git version +2024-05-29T06:06:35.3903354Z [command]/usr/bin/git version +2024-05-29T06:06:35.3904014Z git version 2.45.1 +2024-05-29T06:06:35.3905253Z ##[debug]0 +2024-05-29T06:06:35.3906344Z ##[debug]git version 2.45.1 +2024-05-29T06:06:35.3906940Z ##[debug] +2024-05-29T06:06:35.3908183Z ##[debug]Set git useragent to: git/2.45.1 (github-actions-checkout) +2024-05-29T06:06:35.3909690Z ::endgroup:: +2024-05-29T06:06:35.3910199Z ##[endgroup] +2024-05-29T06:06:35.3923496Z ::add-mask::*** +2024-05-29T06:06:35.3926379Z Temporarily overriding HOME='/home/runner/work/_temp/55126f22-9090-42a8-921a-fc30b2bbdd57' before making global git config changes +2024-05-29T06:06:35.3929133Z Adding repository directory to the temporary git global config as a safe directory +2024-05-29T06:06:35.3931750Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/wait-other-jobs/wait-other-jobs +2024-05-29T06:06:35.3934043Z ##[debug]0 +2024-05-29T06:06:35.3935053Z ##[debug] +2024-05-29T06:06:35.3936363Z Deleting the contents of '/home/runner/work/wait-other-jobs/wait-other-jobs' +2024-05-29T06:06:35.3938369Z ::group::Initializing the repository +2024-05-29T06:06:35.3939340Z ##[group]Initializing the repository +2024-05-29T06:06:35.3940853Z [command]/usr/bin/git init /home/runner/work/wait-other-jobs/wait-other-jobs +2024-05-29T06:06:35.3978208Z hint: Using 'master' as the name for the initial branch. This default branch name +2024-05-29T06:06:35.3980219Z hint: is subject to change. To configure the initial branch name to use in all +2024-05-29T06:06:35.3982189Z hint: of your new repositories, which will suppress this warning, call: +2024-05-29T06:06:35.3983625Z hint: +2024-05-29T06:06:35.3984678Z hint: git config --global init.defaultBranch +2024-05-29T06:06:35.3986253Z hint: +2024-05-29T06:06:35.3987607Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and +2024-05-29T06:06:35.3989649Z hint: 'development'. The just-created branch can be renamed via this command: +2024-05-29T06:06:35.3991238Z hint: +2024-05-29T06:06:35.3992095Z hint: git branch -m +2024-05-29T06:06:35.3993807Z Initialized empty Git repository in /home/runner/work/wait-other-jobs/wait-other-jobs/.git/ +2024-05-29T06:06:35.3996579Z ##[debug]0 +2024-05-29T06:06:35.3998602Z ##[debug]Initialized empty Git repository in /home/runner/work/wait-other-jobs/wait-other-jobs/.git/ +2024-05-29T06:06:35.3999798Z ##[debug] +2024-05-29T06:06:35.4000637Z [command]/usr/bin/git remote add origin https://github.com/kachick/wait-other-jobs +2024-05-29T06:06:35.4024639Z ##[debug]0 +2024-05-29T06:06:35.4026095Z ##[debug] +2024-05-29T06:06:35.4027464Z ::endgroup:: +2024-05-29T06:06:35.4028231Z ##[endgroup] +2024-05-29T06:06:35.4029556Z ::group::Disabling automatic garbage collection +2024-05-29T06:06:35.4030876Z ##[group]Disabling automatic garbage collection +2024-05-29T06:06:35.4032368Z [command]/usr/bin/git config --local gc.auto 0 +2024-05-29T06:06:35.4057054Z ##[debug]0 +2024-05-29T06:06:35.4058377Z ##[debug] +2024-05-29T06:06:35.4059791Z ::endgroup:: +2024-05-29T06:06:35.4060554Z ##[endgroup] +2024-05-29T06:06:35.4061768Z ::group::Setting up auth +2024-05-29T06:06:35.4062672Z ##[group]Setting up auth +2024-05-29T06:06:35.4064584Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2024-05-29T06:06:35.4087594Z ##[debug]1 +2024-05-29T06:06:35.4088898Z ##[debug] +2024-05-29T06:06:35.4094231Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2024-05-29T06:06:35.4357960Z ##[debug]0 +2024-05-29T06:06:35.4358713Z ##[debug] +2024-05-29T06:06:35.4361696Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2024-05-29T06:06:35.4383055Z ##[debug]1 +2024-05-29T06:06:35.4384254Z ##[debug] +2024-05-29T06:06:35.4387302Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2024-05-29T06:06:35.4598416Z ##[debug]0 +2024-05-29T06:06:35.4599265Z ##[debug] +2024-05-29T06:06:35.4605120Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** +2024-05-29T06:06:35.4629573Z ##[debug]0 +2024-05-29T06:06:35.4630780Z ##[debug] +2024-05-29T06:06:35.4636325Z ::endgroup:: +2024-05-29T06:06:35.4637059Z ##[endgroup] +2024-05-29T06:06:35.4638213Z ::group::Fetching the repository +2024-05-29T06:06:35.4639042Z ##[group]Fetching the repository +2024-05-29T06:06:35.4645704Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +78b7ef80457975b7d8a9fdd827bf7db72b867465:refs/remotes/pull/821/merge +2024-05-29T06:06:35.6984971Z From https://github.com/kachick/wait-other-jobs +2024-05-29T06:06:35.6988437Z * [new ref] 78b7ef80457975b7d8a9fdd827bf7db72b867465 -> pull/821/merge +2024-05-29T06:06:35.7010134Z ##[debug]0 +2024-05-29T06:06:35.7011095Z ##[debug] +2024-05-29T06:06:35.7012223Z ::endgroup:: +2024-05-29T06:06:35.7012678Z ##[endgroup] +2024-05-29T06:06:35.7013760Z ::group::Determining the checkout info +2024-05-29T06:06:35.7014563Z ##[group]Determining the checkout info +2024-05-29T06:06:35.7015528Z ::endgroup:: +2024-05-29T06:06:35.7016125Z ##[endgroup] +2024-05-29T06:06:35.7019340Z [command]/usr/bin/git sparse-checkout disable +2024-05-29T06:06:35.7056522Z ##[debug]0 +2024-05-29T06:06:35.7057621Z ##[debug] +2024-05-29T06:06:35.7058888Z ::group::Checking out the ref +2024-05-29T06:06:35.7059636Z ##[group]Checking out the ref +2024-05-29T06:06:35.7061236Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/821/merge +2024-05-29T06:06:35.7182460Z Note: switching to 'refs/remotes/pull/821/merge'. +2024-05-29T06:06:35.7184676Z +2024-05-29T06:06:35.7185553Z You are in 'detached HEAD' state. You can look around, make experimental +2024-05-29T06:06:35.7187356Z changes and commit them, and you can discard any commits you make in this +2024-05-29T06:06:35.7188771Z state without impacting any branches by switching back to a branch. +2024-05-29T06:06:35.7189601Z +2024-05-29T06:06:35.7190564Z If you want to create a new branch to retain commits you create, you may +2024-05-29T06:06:35.7192228Z do so (now or later) by using -c with the switch command. Example: +2024-05-29T06:06:35.7193015Z +2024-05-29T06:06:35.7193431Z git switch -c +2024-05-29T06:06:35.7194030Z +2024-05-29T06:06:35.7194359Z Or undo this operation with: +2024-05-29T06:06:35.7194977Z +2024-05-29T06:06:35.7195303Z git switch - +2024-05-29T06:06:35.7195690Z +2024-05-29T06:06:35.7196546Z Turn off this advice by setting config variable advice.detachedHead to false +2024-05-29T06:06:35.7197527Z +2024-05-29T06:06:35.7198455Z HEAD is now at 78b7ef8 Merge 8c14d2a44d6dff4e69b0a3cacc2a14e416b44137 into b259df766bd107422afc2c77e234f800a02c4f36 +2024-05-29T06:06:35.7200454Z ##[debug]0 +2024-05-29T06:06:35.7201424Z ##[debug] +2024-05-29T06:06:35.7202488Z ::endgroup:: +2024-05-29T06:06:35.7305988Z ##[endgroup] +2024-05-29T06:06:35.7306937Z ##[debug]0 +2024-05-29T06:06:35.7307958Z ##[debug]commit 78b7ef80457975b7d8a9fdd827bf7db72b867465 +2024-05-29T06:06:35.7308899Z ##[debug]Author: Kenichi Kamiya +2024-05-29T06:06:35.7309727Z ##[debug]Date: Wed May 29 06:05:27 2024 +0000 +2024-05-29T06:06:35.7310383Z ##[debug] +2024-05-29T06:06:35.7311288Z ##[debug] Merge 8c14d2a44d6dff4e69b0a3cacc2a14e416b44137 into b259df766bd107422afc2c77e234f800a02c4f36 +2024-05-29T06:06:35.7312354Z ##[debug] +2024-05-29T06:06:35.7313124Z [command]/usr/bin/git log -1 --format='%H' +2024-05-29T06:06:35.7314005Z '78b7ef80457975b7d8a9fdd827bf7db72b867465' +2024-05-29T06:06:35.7315095Z ##[debug]0 +2024-05-29T06:06:35.7316386Z ##[debug]'78b7ef80457975b7d8a9fdd827bf7db72b867465' +2024-05-29T06:06:35.7317258Z ##[debug] +2024-05-29T06:06:35.7318144Z ##[debug]Unsetting HOME override +2024-05-29T06:06:35.7322941Z ::remove-matcher owner=checkout-git:: +2024-05-29T06:06:35.7347938Z ##[debug]Removed matchers: 'checkout-git' +2024-05-29T06:06:35.7357130Z ##[debug]Node Action run completed with exit code 0 +2024-05-29T06:06:35.7527629Z ##[debug]Save intra-action state isPost = true +2024-05-29T06:06:35.7528443Z ##[debug]Save intra-action state setSafeDirectory = true +2024-05-29T06:06:35.7529206Z ##[debug]Save intra-action state repositoryPath = /home/runner/work/wait-other-jobs/wait-other-jobs +2024-05-29T06:06:35.7539620Z ##[debug]Finishing: Run actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 +2024-05-29T06:06:35.7551569Z ##[debug]Evaluating condition for step: 'Run /./' +2024-05-29T06:06:35.7553590Z ##[debug]Evaluating: success() +2024-05-29T06:06:35.7554066Z ##[debug]Evaluating success: +2024-05-29T06:06:35.7554627Z ##[debug]=> true +2024-05-29T06:06:35.7555272Z ##[debug]Result: true +2024-05-29T06:06:35.7556250Z ##[debug]Starting: Run /./ +2024-05-29T06:06:35.7587806Z ##[debug]Loading inputs +2024-05-29T06:06:35.7620000Z ##[debug]Evaluating: github.token +2024-05-29T06:06:35.7620690Z ##[debug]Evaluating Index: +2024-05-29T06:06:35.7621255Z ##[debug]..Evaluating github: +2024-05-29T06:06:35.7621830Z ##[debug]..=> Object +2024-05-29T06:06:35.7622354Z ##[debug]..Evaluating String: +2024-05-29T06:06:35.7622923Z ##[debug]..=> 'token' +2024-05-29T06:06:35.7623742Z ##[debug]=> '***' +2024-05-29T06:06:35.7624470Z ##[debug]Result: '***' +2024-05-29T06:06:35.7631687Z ##[debug]Loading env +2024-05-29T06:06:35.7639238Z ##[group]Run ./ +2024-05-29T06:06:35.7639523Z with: +2024-05-29T06:06:35.7639822Z retry-method: equal_intervals +2024-05-29T06:06:35.7640195Z wait-seconds-before-first-polling: 0 +2024-05-29T06:06:35.7640580Z min-interval-seconds: 5 +2024-05-29T06:06:35.7640880Z attempt-limits: 100 +2024-05-29T06:06:35.7641905Z wait-list: [ + { + "workflowFile": "GH-820-graceperiod.yml", + "optional": false, + "jobName": "quickstarter-success" + }, + { + "workflowFile": "GH-820-graceperiod.yml", + "optional": false, + "jobName": "slowstarter-fail", + "startupGracePeriod": { "seconds": 60 } + } +] + +2024-05-29T06:06:35.7643209Z github-token: *** +2024-05-29T06:06:35.7643505Z early-exit: true +2024-05-29T06:06:35.7643780Z skip-list: [] +2024-05-29T06:06:35.7644055Z skip-same-workflow: false +2024-05-29T06:06:35.7644368Z dry-run: false +2024-05-29T06:06:35.7644626Z ##[endgroup] +2024-05-29T06:06:35.8535540Z ::group::Parameters +2024-05-29T06:06:35.8536316Z ##[group]Parameters +2024-05-29T06:06:35.8559017Z ::add-mask::*** +2024-05-29T06:06:35.8560114Z { +2024-05-29T06:06:35.8560514Z "trigger": { +2024-05-29T06:06:35.8560969Z "owner": "kachick", +2024-05-29T06:06:35.8561376Z "repo": "wait-other-jobs", +2024-05-29T06:06:35.8561805Z "ref": "8c14d2a44d6dff4e69b0a3cacc2a14e416b44137", +2024-05-29T06:06:35.8562219Z "runId": 9281068681, +2024-05-29T06:06:35.8562557Z "jobName": "wait-fail", +2024-05-29T06:06:35.8562895Z "eventName": "pull_request" +2024-05-29T06:06:35.8563211Z }, +2024-05-29T06:06:35.8563459Z "startedAt": 85.27451099990867, +2024-05-29T06:06:35.8563787Z "options": { +2024-05-29T06:06:35.8564049Z "waitList": [ +2024-05-29T06:06:35.8564313Z { +2024-05-29T06:06:35.8564634Z "workflowFile": "GH-820-graceperiod.yml", +2024-05-29T06:06:35.8565092Z "jobName": "quickstarter-success", +2024-05-29T06:06:35.8565473Z "optional": false, +2024-05-29T06:06:35.8566011Z "startupGracePeriod": { "seconds": 0 } +2024-05-29T06:06:35.8566406Z }, +2024-05-29T06:06:35.8566650Z { +2024-05-29T06:06:35.8567004Z "workflowFile": "GH-820-graceperiod.yml", +2024-05-29T06:06:35.8567471Z "jobName": "slowstarter-fail", +2024-05-29T06:06:35.8567843Z "optional": false, +2024-05-29T06:06:35.8568162Z "startupGracePeriod": { "seconds": 60 } +2024-05-29T06:06:35.8568510Z } +2024-05-29T06:06:35.8568750Z ], +2024-05-29T06:06:35.8568987Z "skipList": [], +2024-05-29T06:06:35.8569302Z "waitSecondsBeforeFirstPolling": 0, +2024-05-29T06:06:35.8569686Z "minIntervalSeconds": 5, +2024-05-29T06:06:35.8570018Z "retryMethod": "equal_intervals", +2024-05-29T06:06:35.8570373Z "attemptLimits": 100, +2024-05-29T06:06:35.8570680Z "isEarlyExit": true, +2024-05-29T06:06:35.8570992Z "shouldSkipSameWorkflow": false, +2024-05-29T06:06:35.8571339Z "isDryRun": false +2024-05-29T06:06:35.8571631Z } +2024-05-29T06:06:35.8571846Z } +2024-05-29T06:06:35.8572297Z ::endgroup:: +2024-05-29T06:06:35.8572558Z ##[endgroup] +2024-05-29T06:06:35.8572853Z Wait about 0 seconds before first polling. +2024-05-29T06:06:35.8626179Z ::group::Polling 1: 2024-05-29T06:06:35.857Z +2024-05-29T06:06:35.8627082Z ##[group]Polling 1: 2024-05-29T06:06:35.857Z +2024-05-29T06:06:36.3737406Z ##[debug]{ +2024-05-29T06:06:36.3737715Z ##[debug] "label": "rawdata", +2024-05-29T06:06:36.3738025Z ##[debug] "checks": [ +2024-05-29T06:06:36.3738296Z ##[debug] { +2024-05-29T06:06:36.3738539Z ##[debug] "checkRun": { +2024-05-29T06:06:36.3739223Z ##[debug] "databaseId": 25536410411, +2024-05-29T06:06:36.3739583Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:36.3739924Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3740563Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", +2024-05-29T06:06:36.3741200Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3741526Z ##[debug] }, +2024-05-29T06:06:36.3741772Z ##[debug] "checkSuite": { +2024-05-29T06:06:36.3742083Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3742430Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:36.3742767Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.3743114Z ##[debug] "databaseId": 9281068413, +2024-05-29T06:06:36.3743468Z ##[debug] "event": "push", +2024-05-29T06:06:36.3743783Z ##[debug] "workflow": { +2024-05-29T06:06:36.3744119Z ##[debug] "name": "💧", +2024-05-29T06:06:36.3744637Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:36.3745136Z ##[debug] } +2024-05-29T06:06:36.3745391Z ##[debug] }, +2024-05-29T06:06:36.3745645Z ##[debug] "checkRuns": { +2024-05-29T06:06:36.3746098Z ##[debug] "totalCount": 1, +2024-05-29T06:06:36.3746421Z ##[debug] "pageInfo": { +2024-05-29T06:06:36.3746740Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:36.3747168Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWsys=" +2024-05-29T06:06:36.3747569Z ##[debug] }, +2024-05-29T06:06:36.3747829Z ##[debug] "nodes": [ +2024-05-29T06:06:36.3748105Z ##[debug] { +2024-05-29T06:06:36.3748407Z ##[debug] "databaseId": 25536410411, +2024-05-29T06:06:36.3748776Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:36.3749134Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3749763Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", +2024-05-29T06:06:36.3750408Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3750750Z ##[debug] } +2024-05-29T06:06:36.3750996Z ##[debug] ] +2024-05-29T06:06:36.3751238Z ##[debug] } +2024-05-29T06:06:36.3751475Z ##[debug] }, +2024-05-29T06:06:36.3751714Z ##[debug] "workflow": { +2024-05-29T06:06:36.3752002Z ##[debug] "name": "💧", +2024-05-29T06:06:36.3752473Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:36.3752961Z ##[debug] }, +2024-05-29T06:06:36.3753206Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.3753530Z ##[debug] "databaseId": 9281068413, +2024-05-29T06:06:36.3753858Z ##[debug] "event": "push", +2024-05-29T06:06:36.3754165Z ##[debug] "workflow": { +2024-05-29T06:06:36.3754462Z ##[debug] "name": "💧", +2024-05-29T06:06:36.3754930Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:36.3755438Z ##[debug] } +2024-05-29T06:06:36.3755687Z ##[debug] } +2024-05-29T06:06:36.3756038Z ##[debug] }, +2024-05-29T06:06:36.3756269Z ##[debug] { +2024-05-29T06:06:36.3756515Z ##[debug] "checkRun": { +2024-05-29T06:06:36.3756831Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:36.3757169Z ##[debug] "name": "build", +2024-05-29T06:06:36.3757490Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3758105Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:36.3758748Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3759221Z ##[debug] }, +2024-05-29T06:06:36.3759481Z ##[debug] "checkSuite": { +2024-05-29T06:06:36.3759782Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3760126Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:36.3760475Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.3760915Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:36.3761283Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.3761628Z ##[debug] "workflow": { +2024-05-29T06:06:36.3761942Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:36.3762435Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:36.3762915Z ##[debug] } +2024-05-29T06:06:36.3763156Z ##[debug] }, +2024-05-29T06:06:36.3763409Z ##[debug] "checkRuns": { +2024-05-29T06:06:36.3763716Z ##[debug] "totalCount": 3, +2024-05-29T06:06:36.3764027Z ##[debug] "pageInfo": { +2024-05-29T06:06:36.3764353Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:36.3764779Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:36.3765188Z ##[debug] }, +2024-05-29T06:06:36.3765439Z ##[debug] "nodes": [ +2024-05-29T06:06:36.3765720Z ##[debug] { +2024-05-29T06:06:36.3766131Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:36.3766485Z ##[debug] "name": "build", +2024-05-29T06:06:36.3766836Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3767469Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:36.3768099Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3768438Z ##[debug] }, +2024-05-29T06:06:36.3768697Z ##[debug] { +2024-05-29T06:06:36.3768978Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:36.3769337Z ##[debug] "name": "test", +2024-05-29T06:06:36.3769684Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3770285Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:36.3770898Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3771236Z ##[debug] }, +2024-05-29T06:06:36.3771484Z ##[debug] { +2024-05-29T06:06:36.3771758Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:36.3772123Z ##[debug] "name": "typecheck", +2024-05-29T06:06:36.3772476Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3773068Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:36.3773692Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3774018Z ##[debug] } +2024-05-29T06:06:36.3774264Z ##[debug] ] +2024-05-29T06:06:36.3774510Z ##[debug] } +2024-05-29T06:06:36.3774746Z ##[debug] }, +2024-05-29T06:06:36.3774985Z ##[debug] "workflow": { +2024-05-29T06:06:36.3775288Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:36.3775766Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:36.3776560Z ##[debug] }, +2024-05-29T06:06:36.3776822Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.3777137Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:36.3777483Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.3777819Z ##[debug] "workflow": { +2024-05-29T06:06:36.3778133Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:36.3778639Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:36.3779116Z ##[debug] } +2024-05-29T06:06:36.3779362Z ##[debug] } +2024-05-29T06:06:36.3779598Z ##[debug] }, +2024-05-29T06:06:36.3779824Z ##[debug] { +2024-05-29T06:06:36.3780064Z ##[debug] "checkRun": { +2024-05-29T06:06:36.3780502Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:36.3780846Z ##[debug] "name": "test", +2024-05-29T06:06:36.3781159Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3781792Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:36.3782516Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3782844Z ##[debug] }, +2024-05-29T06:06:36.3783097Z ##[debug] "checkSuite": { +2024-05-29T06:06:36.3783397Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3783747Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:36.3784087Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.3784412Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:36.3784778Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.3785139Z ##[debug] "workflow": { +2024-05-29T06:06:36.3785460Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:36.3786182Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:36.3786665Z ##[debug] } +2024-05-29T06:06:36.3786914Z ##[debug] }, +2024-05-29T06:06:36.3787170Z ##[debug] "checkRuns": { +2024-05-29T06:06:36.3787471Z ##[debug] "totalCount": 3, +2024-05-29T06:06:36.3787794Z ##[debug] "pageInfo": { +2024-05-29T06:06:36.3788117Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:36.3788533Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:36.3788946Z ##[debug] }, +2024-05-29T06:06:36.3789213Z ##[debug] "nodes": [ +2024-05-29T06:06:36.3789525Z ##[debug] { +2024-05-29T06:06:36.3789823Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:36.3790189Z ##[debug] "name": "build", +2024-05-29T06:06:36.3790534Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3791177Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:36.3791818Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3792156Z ##[debug] }, +2024-05-29T06:06:36.3792406Z ##[debug] { +2024-05-29T06:06:36.3792697Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:36.3793057Z ##[debug] "name": "test", +2024-05-29T06:06:36.3793398Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3794018Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:36.3794641Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3794971Z ##[debug] }, +2024-05-29T06:06:36.3795230Z ##[debug] { +2024-05-29T06:06:36.3795519Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:36.3796006Z ##[debug] "name": "typecheck", +2024-05-29T06:06:36.3796370Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3796993Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:36.3797618Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3797950Z ##[debug] } +2024-05-29T06:06:36.3798201Z ##[debug] ] +2024-05-29T06:06:36.3798454Z ##[debug] } +2024-05-29T06:06:36.3798685Z ##[debug] }, +2024-05-29T06:06:36.3798930Z ##[debug] "workflow": { +2024-05-29T06:06:36.3799232Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:36.3799700Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:36.3800169Z ##[debug] }, +2024-05-29T06:06:36.3800417Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.3800727Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:36.3801085Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.3801421Z ##[debug] "workflow": { +2024-05-29T06:06:36.3801723Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:36.3802328Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:36.3802804Z ##[debug] } +2024-05-29T06:06:36.3803037Z ##[debug] } +2024-05-29T06:06:36.3803276Z ##[debug] }, +2024-05-29T06:06:36.3803508Z ##[debug] { +2024-05-29T06:06:36.3803850Z ##[debug] "checkRun": { +2024-05-29T06:06:36.3804161Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:36.3804679Z ##[debug] "name": "typecheck", +2024-05-29T06:06:36.3805199Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3806343Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:36.3807398Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3807904Z ##[debug] }, +2024-05-29T06:06:36.3808272Z ##[debug] "checkSuite": { +2024-05-29T06:06:36.3808849Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3809486Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:36.3810090Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.3810667Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:36.3811325Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.3811933Z ##[debug] "workflow": { +2024-05-29T06:06:36.3812502Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:36.3813337Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:36.3813895Z ##[debug] } +2024-05-29T06:06:36.3814146Z ##[debug] }, +2024-05-29T06:06:36.3814404Z ##[debug] "checkRuns": { +2024-05-29T06:06:36.3814714Z ##[debug] "totalCount": 3, +2024-05-29T06:06:36.3815029Z ##[debug] "pageInfo": { +2024-05-29T06:06:36.3815352Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:36.3815778Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:36.3816313Z ##[debug] }, +2024-05-29T06:06:36.3816577Z ##[debug] "nodes": [ +2024-05-29T06:06:36.3816863Z ##[debug] { +2024-05-29T06:06:36.3817157Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:36.3817518Z ##[debug] "name": "build", +2024-05-29T06:06:36.3817869Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3818514Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:36.3819151Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3819491Z ##[debug] }, +2024-05-29T06:06:36.3819741Z ##[debug] { +2024-05-29T06:06:36.3820034Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:36.3820391Z ##[debug] "name": "test", +2024-05-29T06:06:36.3820732Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3821348Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:36.3821971Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3822310Z ##[debug] }, +2024-05-29T06:06:36.3822566Z ##[debug] { +2024-05-29T06:06:36.3822853Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:36.3823249Z ##[debug] "name": "typecheck", +2024-05-29T06:06:36.3823627Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3824238Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:36.3824856Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3825183Z ##[debug] } +2024-05-29T06:06:36.3825435Z ##[debug] ] +2024-05-29T06:06:36.3825681Z ##[debug] } +2024-05-29T06:06:36.3826051Z ##[debug] }, +2024-05-29T06:06:36.3826302Z ##[debug] "workflow": { +2024-05-29T06:06:36.3826604Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:36.3827077Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:36.3827724Z ##[debug] }, +2024-05-29T06:06:36.3827996Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.3828316Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:36.3828662Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.3828999Z ##[debug] "workflow": { +2024-05-29T06:06:36.3829419Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:36.3829890Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:36.3830359Z ##[debug] } +2024-05-29T06:06:36.3830599Z ##[debug] } +2024-05-29T06:06:36.3830826Z ##[debug] }, +2024-05-29T06:06:36.3831058Z ##[debug] { +2024-05-29T06:06:36.3831303Z ##[debug] "checkRun": { +2024-05-29T06:06:36.3831602Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:36.3831945Z ##[debug] "name": "typos", +2024-05-29T06:06:36.3832264Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3832877Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:36.3833496Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3833816Z ##[debug] }, +2024-05-29T06:06:36.3834061Z ##[debug] "checkSuite": { +2024-05-29T06:06:36.3834367Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3834717Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:36.3835047Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.3835376Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:36.3835747Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.3836196Z ##[debug] "workflow": { +2024-05-29T06:06:36.3836506Z ##[debug] "name": "👕", +2024-05-29T06:06:36.3836979Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:36.3837462Z ##[debug] } +2024-05-29T06:06:36.3837703Z ##[debug] }, +2024-05-29T06:06:36.3837958Z ##[debug] "checkRuns": { +2024-05-29T06:06:36.3838275Z ##[debug] "totalCount": 4, +2024-05-29T06:06:36.3838588Z ##[debug] "pageInfo": { +2024-05-29T06:06:36.3838910Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:36.3839334Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:36.3839735Z ##[debug] }, +2024-05-29T06:06:36.3840004Z ##[debug] "nodes": [ +2024-05-29T06:06:36.3840290Z ##[debug] { +2024-05-29T06:06:36.3840587Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:36.3840940Z ##[debug] "name": "typos", +2024-05-29T06:06:36.3841290Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3841916Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:36.3842542Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3842882Z ##[debug] }, +2024-05-29T06:06:36.3843138Z ##[debug] { +2024-05-29T06:06:36.3843427Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:36.3843791Z ##[debug] "name": "dprint", +2024-05-29T06:06:36.3844156Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3844779Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:36.3845418Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3845753Z ##[debug] }, +2024-05-29T06:06:36.3846109Z ##[debug] { +2024-05-29T06:06:36.3846393Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:36.3846761Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:36.3847123Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3847733Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:36.3848369Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3848706Z ##[debug] }, +2024-05-29T06:06:36.3849078Z ##[debug] { +2024-05-29T06:06:36.3849372Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:36.3849732Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:36.3850082Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3850816Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:36.3851451Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3851788Z ##[debug] } +2024-05-29T06:06:36.3852033Z ##[debug] ] +2024-05-29T06:06:36.3852277Z ##[debug] } +2024-05-29T06:06:36.3852514Z ##[debug] }, +2024-05-29T06:06:36.3852752Z ##[debug] "workflow": { +2024-05-29T06:06:36.3853040Z ##[debug] "name": "👕", +2024-05-29T06:06:36.3853495Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:36.3853972Z ##[debug] }, +2024-05-29T06:06:36.3854221Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.3854548Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:36.3854899Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.3855232Z ##[debug] "workflow": { +2024-05-29T06:06:36.3855526Z ##[debug] "name": "👕", +2024-05-29T06:06:36.3856099Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:36.3856589Z ##[debug] } +2024-05-29T06:06:36.3856828Z ##[debug] } +2024-05-29T06:06:36.3857056Z ##[debug] }, +2024-05-29T06:06:36.3857289Z ##[debug] { +2024-05-29T06:06:36.3857526Z ##[debug] "checkRun": { +2024-05-29T06:06:36.3857826Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:36.3858168Z ##[debug] "name": "dprint", +2024-05-29T06:06:36.3858485Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3859091Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:36.3859728Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3860047Z ##[debug] }, +2024-05-29T06:06:36.3860288Z ##[debug] "checkSuite": { +2024-05-29T06:06:36.3860594Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3860935Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:36.3861271Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.3861597Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:36.3861961Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.3862302Z ##[debug] "workflow": { +2024-05-29T06:06:36.3862618Z ##[debug] "name": "👕", +2024-05-29T06:06:36.3863093Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:36.3863573Z ##[debug] } +2024-05-29T06:06:36.3863814Z ##[debug] }, +2024-05-29T06:06:36.3864067Z ##[debug] "checkRuns": { +2024-05-29T06:06:36.3864381Z ##[debug] "totalCount": 4, +2024-05-29T06:06:36.3864692Z ##[debug] "pageInfo": { +2024-05-29T06:06:36.3865030Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:36.3865457Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:36.3865977Z ##[debug] }, +2024-05-29T06:06:36.3866238Z ##[debug] "nodes": [ +2024-05-29T06:06:36.3866525Z ##[debug] { +2024-05-29T06:06:36.3866819Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:36.3867181Z ##[debug] "name": "typos", +2024-05-29T06:06:36.3867590Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3868520Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:36.3869165Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3869506Z ##[debug] }, +2024-05-29T06:06:36.3869763Z ##[debug] { +2024-05-29T06:06:36.3870044Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:36.3870406Z ##[debug] "name": "dprint", +2024-05-29T06:06:36.3870903Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3871517Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:36.3872153Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3872596Z ##[debug] }, +2024-05-29T06:06:36.3872844Z ##[debug] { +2024-05-29T06:06:36.3873133Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:36.3873500Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:36.3873854Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3874467Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:36.3875092Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3875424Z ##[debug] }, +2024-05-29T06:06:36.3875669Z ##[debug] { +2024-05-29T06:06:36.3876086Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:36.3876448Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:36.3876797Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3877416Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:36.3878056Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3878389Z ##[debug] } +2024-05-29T06:06:36.3878638Z ##[debug] ] +2024-05-29T06:06:36.3878894Z ##[debug] } +2024-05-29T06:06:36.3879126Z ##[debug] }, +2024-05-29T06:06:36.3879382Z ##[debug] "workflow": { +2024-05-29T06:06:36.3879687Z ##[debug] "name": "👕", +2024-05-29T06:06:36.3880132Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:36.3880610Z ##[debug] }, +2024-05-29T06:06:36.3880863Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.3881179Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:36.3881547Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.3881880Z ##[debug] "workflow": { +2024-05-29T06:06:36.3882169Z ##[debug] "name": "👕", +2024-05-29T06:06:36.3882631Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:36.3883117Z ##[debug] } +2024-05-29T06:06:36.3883358Z ##[debug] } +2024-05-29T06:06:36.3883585Z ##[debug] }, +2024-05-29T06:06:36.3883846Z ##[debug] { +2024-05-29T06:06:36.3884083Z ##[debug] "checkRun": { +2024-05-29T06:06:36.3884383Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:36.3884728Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:36.3885058Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3885664Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:36.3886384Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3886706Z ##[debug] }, +2024-05-29T06:06:36.3886954Z ##[debug] "checkSuite": { +2024-05-29T06:06:36.3887258Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3887602Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:36.3887936Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.3888267Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:36.3888636Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.3888970Z ##[debug] "workflow": { +2024-05-29T06:06:36.3889299Z ##[debug] "name": "👕", +2024-05-29T06:06:36.3889768Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:36.3890241Z ##[debug] } +2024-05-29T06:06:36.3890543Z ##[debug] }, +2024-05-29T06:06:36.3890918Z ##[debug] "checkRuns": { +2024-05-29T06:06:36.3891222Z ##[debug] "totalCount": 4, +2024-05-29T06:06:36.3891541Z ##[debug] "pageInfo": { +2024-05-29T06:06:36.3891863Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:36.3892405Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:36.3892809Z ##[debug] }, +2024-05-29T06:06:36.3893065Z ##[debug] "nodes": [ +2024-05-29T06:06:36.3893345Z ##[debug] { +2024-05-29T06:06:36.3893632Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:36.3894105Z ##[debug] "name": "typos", +2024-05-29T06:06:36.3894455Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3895079Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:36.3895714Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3896185Z ##[debug] }, +2024-05-29T06:06:36.3896433Z ##[debug] { +2024-05-29T06:06:36.3896725Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:36.3897088Z ##[debug] "name": "dprint", +2024-05-29T06:06:36.3897433Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3898060Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:36.3898686Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3899022Z ##[debug] }, +2024-05-29T06:06:36.3899279Z ##[debug] { +2024-05-29T06:06:36.3899563Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:36.3899929Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:36.3900282Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3900893Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:36.3901514Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3901839Z ##[debug] }, +2024-05-29T06:06:36.3902098Z ##[debug] { +2024-05-29T06:06:36.3902385Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:36.3902737Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:36.3903091Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3903716Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:36.3904344Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3904680Z ##[debug] } +2024-05-29T06:06:36.3904930Z ##[debug] ] +2024-05-29T06:06:36.3905175Z ##[debug] } +2024-05-29T06:06:36.3905407Z ##[debug] }, +2024-05-29T06:06:36.3905651Z ##[debug] "workflow": { +2024-05-29T06:06:36.3906086Z ##[debug] "name": "👕", +2024-05-29T06:06:36.3906533Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:36.3907009Z ##[debug] }, +2024-05-29T06:06:36.3907258Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.3907572Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:36.3907924Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.3908269Z ##[debug] "workflow": { +2024-05-29T06:06:36.3908556Z ##[debug] "name": "👕", +2024-05-29T06:06:36.3909016Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:36.3909492Z ##[debug] } +2024-05-29T06:06:36.3909733Z ##[debug] } +2024-05-29T06:06:36.3909970Z ##[debug] }, +2024-05-29T06:06:36.3910200Z ##[debug] { +2024-05-29T06:06:36.3910432Z ##[debug] "checkRun": { +2024-05-29T06:06:36.3910737Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:36.3911093Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:36.3911475Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3912355Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:36.3913037Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3913445Z ##[debug] }, +2024-05-29T06:06:36.3913870Z ##[debug] "checkSuite": { +2024-05-29T06:06:36.3914356Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3914818Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:36.3915348Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.3915737Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:36.3916525Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.3917259Z ##[debug] "workflow": { +2024-05-29T06:06:36.3917631Z ##[debug] "name": "👕", +2024-05-29T06:06:36.3918216Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:36.3918856Z ##[debug] } +2024-05-29T06:06:36.3919161Z ##[debug] }, +2024-05-29T06:06:36.3919526Z ##[debug] "checkRuns": { +2024-05-29T06:06:36.3919979Z ##[debug] "totalCount": 4, +2024-05-29T06:06:36.3920359Z ##[debug] "pageInfo": { +2024-05-29T06:06:36.3920792Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:36.3921371Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:36.3921896Z ##[debug] }, +2024-05-29T06:06:36.3922209Z ##[debug] "nodes": [ +2024-05-29T06:06:36.3922636Z ##[debug] { +2024-05-29T06:06:36.3923039Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:36.3923457Z ##[debug] "name": "typos", +2024-05-29T06:06:36.3923964Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3924709Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:36.3925399Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3926022Z ##[debug] }, +2024-05-29T06:06:36.3926405Z ##[debug] { +2024-05-29T06:06:36.3926758Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:36.3927301Z ##[debug] "name": "dprint", +2024-05-29T06:06:36.3927748Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3928472Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:36.3929245Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3929675Z ##[debug] }, +2024-05-29T06:06:36.3930022Z ##[debug] { +2024-05-29T06:06:36.3930452Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:36.3930914Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:36.3931366Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3932117Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:36.3932840Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3933284Z ##[debug] }, +2024-05-29T06:06:36.3933645Z ##[debug] { +2024-05-29T06:06:36.3934022Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:36.3934488Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:36.3934952Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3935670Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:36.3936551Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3937056Z ##[debug] } +2024-05-29T06:06:36.3937367Z ##[debug] ] +2024-05-29T06:06:36.3937721Z ##[debug] } +2024-05-29T06:06:36.3938108Z ##[debug] }, +2024-05-29T06:06:36.3938408Z ##[debug] "workflow": { +2024-05-29T06:06:36.3938806Z ##[debug] "name": "👕", +2024-05-29T06:06:36.3939410Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:36.3939947Z ##[debug] }, +2024-05-29T06:06:36.3940396Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.3940851Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:36.3961847Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.3962404Z ##[debug] "workflow": { +2024-05-29T06:06:36.3962903Z ##[debug] "name": "👕", +2024-05-29T06:06:36.3963885Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:36.3964758Z ##[debug] } +2024-05-29T06:06:36.3965255Z ##[debug] } +2024-05-29T06:06:36.3965643Z ##[debug] }, +2024-05-29T06:06:36.3966571Z ##[debug] { +2024-05-29T06:06:36.3966987Z ##[debug] "checkRun": { +2024-05-29T06:06:36.3967519Z ##[debug] "databaseId": 25536411289, +2024-05-29T06:06:36.3968120Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:36.3968719Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3969835Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", +2024-05-29T06:06:36.3970948Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3971513Z ##[debug] }, +2024-05-29T06:06:36.3971933Z ##[debug] "checkSuite": { +2024-05-29T06:06:36.3972459Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3973027Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:36.3973594Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.3974146Z ##[debug] "databaseId": 9281068678, +2024-05-29T06:06:36.3974776Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.3975344Z ##[debug] "workflow": { +2024-05-29T06:06:36.3976072Z ##[debug] "name": "💧", +2024-05-29T06:06:36.3976914Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:36.3977804Z ##[debug] } +2024-05-29T06:06:36.3978219Z ##[debug] }, +2024-05-29T06:06:36.3978636Z ##[debug] "checkRuns": { +2024-05-29T06:06:36.3979141Z ##[debug] "totalCount": 1, +2024-05-29T06:06:36.3979691Z ##[debug] "pageInfo": { +2024-05-29T06:06:36.3980226Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:36.3980957Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpk=" +2024-05-29T06:06:36.3981653Z ##[debug] }, +2024-05-29T06:06:36.3982081Z ##[debug] "nodes": [ +2024-05-29T06:06:36.3982568Z ##[debug] { +2024-05-29T06:06:36.3983053Z ##[debug] "databaseId": 25536411289, +2024-05-29T06:06:36.3983679Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:36.3984286Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.3985429Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", +2024-05-29T06:06:36.3986781Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.3987351Z ##[debug] } +2024-05-29T06:06:36.3987768Z ##[debug] ] +2024-05-29T06:06:36.3988186Z ##[debug] } +2024-05-29T06:06:36.3988591Z ##[debug] }, +2024-05-29T06:06:36.3988988Z ##[debug] "workflow": { +2024-05-29T06:06:36.3989535Z ##[debug] "name": "💧", +2024-05-29T06:06:36.3990316Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:36.3991004Z ##[debug] }, +2024-05-29T06:06:36.3991260Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.3991577Z ##[debug] "databaseId": 9281068678, +2024-05-29T06:06:36.3991938Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.3992261Z ##[debug] "workflow": { +2024-05-29T06:06:36.3992552Z ##[debug] "name": "💧", +2024-05-29T06:06:36.3993033Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:36.3993515Z ##[debug] } +2024-05-29T06:06:36.3993744Z ##[debug] } +2024-05-29T06:06:36.3993966Z ##[debug] }, +2024-05-29T06:06:36.3994177Z ##[debug] { +2024-05-29T06:06:36.3994407Z ##[debug] "checkRun": { +2024-05-29T06:06:36.3994704Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:36.3995041Z ##[debug] "name": "intermediate", +2024-05-29T06:06:36.3995373Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:36.3996253Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:36.3997083Z ##[debug] "conclusion": null +2024-05-29T06:06:36.3997397Z ##[debug] }, +2024-05-29T06:06:36.3997641Z ##[debug] "checkSuite": { +2024-05-29T06:06:36.3997925Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:36.3998252Z ##[debug] "conclusion": null, +2024-05-29T06:06:36.3998718Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.3999034Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:36.3999392Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.3999724Z ##[debug] "workflow": { +2024-05-29T06:06:36.4000081Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:36.4000669Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:36.4001179Z ##[debug] } +2024-05-29T06:06:36.4001417Z ##[debug] }, +2024-05-29T06:06:36.4001657Z ##[debug] "checkRuns": { +2024-05-29T06:06:36.4001958Z ##[debug] "totalCount": 4, +2024-05-29T06:06:36.4002273Z ##[debug] "pageInfo": { +2024-05-29T06:06:36.4002584Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:36.4003005Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXNaM=" +2024-05-29T06:06:36.4003404Z ##[debug] }, +2024-05-29T06:06:36.4003651Z ##[debug] "nodes": [ +2024-05-29T06:06:36.4003924Z ##[debug] { +2024-05-29T06:06:36.4004211Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:36.4004582Z ##[debug] "name": "intermediate", +2024-05-29T06:06:36.4004952Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:36.4005587Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:36.4006458Z ##[debug] "conclusion": null +2024-05-29T06:06:36.4006779Z ##[debug] }, +2024-05-29T06:06:36.4007034Z ##[debug] { +2024-05-29T06:06:36.4007308Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:36.4007685Z ##[debug] "name": "wait-success", +2024-05-29T06:06:36.4008041Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:36.4008653Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:36.4009251Z ##[debug] "conclusion": null +2024-05-29T06:06:36.4009575Z ##[debug] }, +2024-05-29T06:06:36.4009827Z ##[debug] { +2024-05-29T06:06:36.4010105Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:36.4010499Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:36.4010880Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:36.4011480Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:36.4012093Z ##[debug] "conclusion": null +2024-05-29T06:06:36.4012417Z ##[debug] }, +2024-05-29T06:06:36.4012668Z ##[debug] { +2024-05-29T06:06:36.4012942Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:36.4013297Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:36.4013655Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:36.4014267Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:36.4014892Z ##[debug] "conclusion": null +2024-05-29T06:06:36.4015204Z ##[debug] } +2024-05-29T06:06:36.4015437Z ##[debug] ] +2024-05-29T06:06:36.4015672Z ##[debug] } +2024-05-29T06:06:36.4016065Z ##[debug] }, +2024-05-29T06:06:36.4016298Z ##[debug] "workflow": { +2024-05-29T06:06:36.4016646Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:36.4017262Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:36.4017762Z ##[debug] }, +2024-05-29T06:06:36.4018130Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4018450Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:36.4018788Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4019107Z ##[debug] "workflow": { +2024-05-29T06:06:36.4019454Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:36.4020150Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:36.4020658Z ##[debug] } +2024-05-29T06:06:36.4020880Z ##[debug] } +2024-05-29T06:06:36.4021104Z ##[debug] }, +2024-05-29T06:06:36.4021321Z ##[debug] { +2024-05-29T06:06:36.4021562Z ##[debug] "checkRun": { +2024-05-29T06:06:36.4021859Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:36.4022205Z ##[debug] "name": "wait-success", +2024-05-29T06:06:36.4022534Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:36.4023147Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:36.4023739Z ##[debug] "conclusion": null +2024-05-29T06:06:36.4024024Z ##[debug] }, +2024-05-29T06:06:36.4024258Z ##[debug] "checkSuite": { +2024-05-29T06:06:36.4024543Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:36.4024854Z ##[debug] "conclusion": null, +2024-05-29T06:06:36.4025159Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4025478Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:36.4025986Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4026318Z ##[debug] "workflow": { +2024-05-29T06:06:36.4026671Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:36.4027250Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:36.4027746Z ##[debug] } +2024-05-29T06:06:36.4027981Z ##[debug] }, +2024-05-29T06:06:36.4028218Z ##[debug] "checkRuns": { +2024-05-29T06:06:36.4028512Z ##[debug] "totalCount": 4, +2024-05-29T06:06:36.4028815Z ##[debug] "pageInfo": { +2024-05-29T06:06:36.4029119Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:36.4029523Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXNaM=" +2024-05-29T06:06:36.4029916Z ##[debug] }, +2024-05-29T06:06:36.4030165Z ##[debug] "nodes": [ +2024-05-29T06:06:36.4030425Z ##[debug] { +2024-05-29T06:06:36.4030703Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:36.4031073Z ##[debug] "name": "intermediate", +2024-05-29T06:06:36.4031433Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:36.4032056Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:36.4032662Z ##[debug] "conclusion": null +2024-05-29T06:06:36.4032971Z ##[debug] }, +2024-05-29T06:06:36.4033211Z ##[debug] { +2024-05-29T06:06:36.4033490Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:36.4033852Z ##[debug] "name": "wait-success", +2024-05-29T06:06:36.4034205Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:36.4034808Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:36.4035411Z ##[debug] "conclusion": null +2024-05-29T06:06:36.4035718Z ##[debug] }, +2024-05-29T06:06:36.4036164Z ##[debug] { +2024-05-29T06:06:36.4036443Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:36.4036828Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:36.4037205Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:36.4037825Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:36.4038420Z ##[debug] "conclusion": null +2024-05-29T06:06:36.4038722Z ##[debug] }, +2024-05-29T06:06:36.4039087Z ##[debug] { +2024-05-29T06:06:36.4039370Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:36.4039728Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:36.4040087Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:36.4040829Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:36.4041421Z ##[debug] "conclusion": null +2024-05-29T06:06:36.4041732Z ##[debug] } +2024-05-29T06:06:36.4041968Z ##[debug] ] +2024-05-29T06:06:36.4042194Z ##[debug] } +2024-05-29T06:06:36.4042419Z ##[debug] }, +2024-05-29T06:06:36.4042650Z ##[debug] "workflow": { +2024-05-29T06:06:36.4042980Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:36.4043546Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:36.4044039Z ##[debug] }, +2024-05-29T06:06:36.4044268Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4044564Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:36.4044893Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4045203Z ##[debug] "workflow": { +2024-05-29T06:06:36.4045533Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:36.4046325Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:36.4046822Z ##[debug] } +2024-05-29T06:06:36.4047038Z ##[debug] } +2024-05-29T06:06:36.4047249Z ##[debug] }, +2024-05-29T06:06:36.4047456Z ##[debug] { +2024-05-29T06:06:36.4047680Z ##[debug] "checkRun": { +2024-05-29T06:06:36.4047971Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:36.4048337Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:36.4048687Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:36.4049286Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:36.4049883Z ##[debug] "conclusion": null +2024-05-29T06:06:36.4050168Z ##[debug] }, +2024-05-29T06:06:36.4050411Z ##[debug] "checkSuite": { +2024-05-29T06:06:36.4050692Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:36.4050993Z ##[debug] "conclusion": null, +2024-05-29T06:06:36.4051288Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4051591Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:36.4051926Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4052249Z ##[debug] "workflow": { +2024-05-29T06:06:36.4052591Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:36.4053158Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:36.4053649Z ##[debug] } +2024-05-29T06:06:36.4053878Z ##[debug] }, +2024-05-29T06:06:36.4054115Z ##[debug] "checkRuns": { +2024-05-29T06:06:36.4054405Z ##[debug] "totalCount": 4, +2024-05-29T06:06:36.4054705Z ##[debug] "pageInfo": { +2024-05-29T06:06:36.4055010Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:36.4055413Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXNaM=" +2024-05-29T06:06:36.4055939Z ##[debug] }, +2024-05-29T06:06:36.4056187Z ##[debug] "nodes": [ +2024-05-29T06:06:36.4056443Z ##[debug] { +2024-05-29T06:06:36.4056720Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:36.4057088Z ##[debug] "name": "intermediate", +2024-05-29T06:06:36.4057459Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:36.4058096Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:36.4058716Z ##[debug] "conclusion": null +2024-05-29T06:06:36.4059024Z ##[debug] }, +2024-05-29T06:06:36.4059265Z ##[debug] { +2024-05-29T06:06:36.4059663Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:36.4060038Z ##[debug] "name": "wait-success", +2024-05-29T06:06:36.4060389Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:36.4060994Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:36.4061720Z ##[debug] "conclusion": null +2024-05-29T06:06:36.4062018Z ##[debug] }, +2024-05-29T06:06:36.4062258Z ##[debug] { +2024-05-29T06:06:36.4062536Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:36.4062914Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:36.4063289Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:36.4063888Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:36.4064478Z ##[debug] "conclusion": null +2024-05-29T06:06:36.4064775Z ##[debug] }, +2024-05-29T06:06:36.4065019Z ##[debug] { +2024-05-29T06:06:36.4065288Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:36.4065631Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:36.4066113Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:36.4066724Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:36.4067308Z ##[debug] "conclusion": null +2024-05-29T06:06:36.4067615Z ##[debug] } +2024-05-29T06:06:36.4067852Z ##[debug] ] +2024-05-29T06:06:36.4068078Z ##[debug] } +2024-05-29T06:06:36.4068301Z ##[debug] }, +2024-05-29T06:06:36.4068532Z ##[debug] "workflow": { +2024-05-29T06:06:36.4068859Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:36.4069428Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:36.4069924Z ##[debug] }, +2024-05-29T06:06:36.4070159Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4070462Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:36.4070802Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4071118Z ##[debug] "workflow": { +2024-05-29T06:06:36.4071461Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:36.4072027Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:36.4072526Z ##[debug] } +2024-05-29T06:06:36.4072746Z ##[debug] } +2024-05-29T06:06:36.4072966Z ##[debug] }, +2024-05-29T06:06:36.4073181Z ##[debug] { +2024-05-29T06:06:36.4073401Z ##[debug] "checkRun": { +2024-05-29T06:06:36.4073692Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:36.4074024Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:36.4074337Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:36.4074949Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:36.4075544Z ##[debug] "conclusion": null +2024-05-29T06:06:36.4075949Z ##[debug] }, +2024-05-29T06:06:36.4076185Z ##[debug] "checkSuite": { +2024-05-29T06:06:36.4076473Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:36.4076781Z ##[debug] "conclusion": null, +2024-05-29T06:06:36.4077089Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4077403Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:36.4077745Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4078075Z ##[debug] "workflow": { +2024-05-29T06:06:36.4078428Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:36.4079002Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:36.4079496Z ##[debug] } +2024-05-29T06:06:36.4079728Z ##[debug] }, +2024-05-29T06:06:36.4079969Z ##[debug] "checkRuns": { +2024-05-29T06:06:36.4080371Z ##[debug] "totalCount": 4, +2024-05-29T06:06:36.4080678Z ##[debug] "pageInfo": { +2024-05-29T06:06:36.4080983Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:36.4081383Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXNaM=" +2024-05-29T06:06:36.4081886Z ##[debug] }, +2024-05-29T06:06:36.4082130Z ##[debug] "nodes": [ +2024-05-29T06:06:36.4082387Z ##[debug] { +2024-05-29T06:06:36.4082664Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:36.4083031Z ##[debug] "name": "intermediate", +2024-05-29T06:06:36.4083389Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:36.4084009Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:36.4084611Z ##[debug] "conclusion": null +2024-05-29T06:06:36.4084913Z ##[debug] }, +2024-05-29T06:06:36.4085154Z ##[debug] { +2024-05-29T06:06:36.4085435Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:36.4085892Z ##[debug] "name": "wait-success", +2024-05-29T06:06:36.4086250Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:36.4086861Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:36.4087470Z ##[debug] "conclusion": null +2024-05-29T06:06:36.4087771Z ##[debug] }, +2024-05-29T06:06:36.4088011Z ##[debug] { +2024-05-29T06:06:36.4088281Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:36.4088659Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:36.4089039Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:36.4089669Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:36.4090253Z ##[debug] "conclusion": null +2024-05-29T06:06:36.4090564Z ##[debug] }, +2024-05-29T06:06:36.4090806Z ##[debug] { +2024-05-29T06:06:36.4091070Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:36.4091416Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:36.4091766Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:36.4092371Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:36.4092953Z ##[debug] "conclusion": null +2024-05-29T06:06:36.4093262Z ##[debug] } +2024-05-29T06:06:36.4093496Z ##[debug] ] +2024-05-29T06:06:36.4093723Z ##[debug] } +2024-05-29T06:06:36.4093951Z ##[debug] }, +2024-05-29T06:06:36.4094182Z ##[debug] "workflow": { +2024-05-29T06:06:36.4094509Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:36.4095077Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:36.4095577Z ##[debug] }, +2024-05-29T06:06:36.4095900Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4096206Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:36.4096545Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4096864Z ##[debug] "workflow": { +2024-05-29T06:06:36.4097210Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:36.4097775Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:36.4098272Z ##[debug] } +2024-05-29T06:06:36.4098489Z ##[debug] } +2024-05-29T06:06:36.4098706Z ##[debug] }, +2024-05-29T06:06:36.4098920Z ##[debug] { +2024-05-29T06:06:36.4099139Z ##[debug] "checkRun": { +2024-05-29T06:06:36.4099430Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:36.4099795Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:36.4100133Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4100844Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:36.4101456Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:36.4101755Z ##[debug] }, +2024-05-29T06:06:36.4101985Z ##[debug] "checkSuite": { +2024-05-29T06:06:36.4102378Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4102702Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:36.4103023Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4103337Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:36.4103680Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4104006Z ##[debug] "workflow": { +2024-05-29T06:06:36.4104330Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:36.4104852Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:36.4105359Z ##[debug] } +2024-05-29T06:06:36.4105595Z ##[debug] }, +2024-05-29T06:06:36.4105953Z ##[debug] "checkRuns": { +2024-05-29T06:06:36.4106260Z ##[debug] "totalCount": 4, +2024-05-29T06:06:36.4106563Z ##[debug] "pageInfo": { +2024-05-29T06:06:36.4106866Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:36.4107270Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:36.4107668Z ##[debug] }, +2024-05-29T06:06:36.4107909Z ##[debug] "nodes": [ +2024-05-29T06:06:36.4108171Z ##[debug] { +2024-05-29T06:06:36.4108452Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:36.4108831Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:36.4109205Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4109821Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:36.4110443Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:36.4110764Z ##[debug] }, +2024-05-29T06:06:36.4111008Z ##[debug] { +2024-05-29T06:06:36.4111286Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:36.4111630Z ##[debug] "name": "renovate", +2024-05-29T06:06:36.4111972Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4112572Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:36.4113190Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:36.4113505Z ##[debug] }, +2024-05-29T06:06:36.4113745Z ##[debug] { +2024-05-29T06:06:36.4114013Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:36.4114372Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:36.4114733Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4115342Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:36.4116065Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:36.4116395Z ##[debug] }, +2024-05-29T06:06:36.4116634Z ##[debug] { +2024-05-29T06:06:36.4116899Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:36.4117255Z ##[debug] "name": "dependabot", +2024-05-29T06:06:36.4117612Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4118207Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:36.4118803Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:36.4119122Z ##[debug] } +2024-05-29T06:06:36.4119357Z ##[debug] ] +2024-05-29T06:06:36.4119583Z ##[debug] } +2024-05-29T06:06:36.4119807Z ##[debug] }, +2024-05-29T06:06:36.4120038Z ##[debug] "workflow": { +2024-05-29T06:06:36.4120328Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:36.4120817Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:36.4121433Z ##[debug] }, +2024-05-29T06:06:36.4121672Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4121979Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:36.4122321Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4122635Z ##[debug] "workflow": { +2024-05-29T06:06:36.4123049Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:36.4123553Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:36.4124045Z ##[debug] } +2024-05-29T06:06:36.4124267Z ##[debug] } +2024-05-29T06:06:36.4124484Z ##[debug] }, +2024-05-29T06:06:36.4124695Z ##[debug] { +2024-05-29T06:06:36.4124921Z ##[debug] "checkRun": { +2024-05-29T06:06:36.4125214Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:36.4125538Z ##[debug] "name": "renovate", +2024-05-29T06:06:36.4125953Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4126561Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:36.4127167Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:36.4127478Z ##[debug] }, +2024-05-29T06:06:36.4127714Z ##[debug] "checkSuite": { +2024-05-29T06:06:36.4128008Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4128343Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:36.4128666Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4128982Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:36.4129329Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4129655Z ##[debug] "workflow": { +2024-05-29T06:06:36.4129956Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:36.4130462Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:36.4130968Z ##[debug] } +2024-05-29T06:06:36.4131204Z ##[debug] }, +2024-05-29T06:06:36.4131438Z ##[debug] "checkRuns": { +2024-05-29T06:06:36.4131738Z ##[debug] "totalCount": 4, +2024-05-29T06:06:36.4132049Z ##[debug] "pageInfo": { +2024-05-29T06:06:36.4132351Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:36.4132765Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:36.4133161Z ##[debug] }, +2024-05-29T06:06:36.4133402Z ##[debug] "nodes": [ +2024-05-29T06:06:36.4133668Z ##[debug] { +2024-05-29T06:06:36.4133945Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:36.4134322Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:36.4134690Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4135311Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:36.4136140Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:36.4136464Z ##[debug] }, +2024-05-29T06:06:36.4136711Z ##[debug] { +2024-05-29T06:06:36.4136991Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:36.4137338Z ##[debug] "name": "renovate", +2024-05-29T06:06:36.4137683Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4138287Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:36.4138910Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:36.4139227Z ##[debug] }, +2024-05-29T06:06:36.4139466Z ##[debug] { +2024-05-29T06:06:36.4139738Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:36.4140097Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:36.4140458Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4141050Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:36.4141648Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:36.4142103Z ##[debug] }, +2024-05-29T06:06:36.4142350Z ##[debug] { +2024-05-29T06:06:36.4142614Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:36.4142974Z ##[debug] "name": "dependabot", +2024-05-29T06:06:36.4143326Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4144037Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:36.4144639Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:36.4144956Z ##[debug] } +2024-05-29T06:06:36.4145191Z ##[debug] ] +2024-05-29T06:06:36.4145420Z ##[debug] } +2024-05-29T06:06:36.4145643Z ##[debug] }, +2024-05-29T06:06:36.4145998Z ##[debug] "workflow": { +2024-05-29T06:06:36.4146278Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:36.4146772Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:36.4147272Z ##[debug] }, +2024-05-29T06:06:36.4147509Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4147815Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:36.4148154Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4148474Z ##[debug] "workflow": { +2024-05-29T06:06:36.4148769Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:36.4149271Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:36.4149764Z ##[debug] } +2024-05-29T06:06:36.4149990Z ##[debug] } +2024-05-29T06:06:36.4150211Z ##[debug] }, +2024-05-29T06:06:36.4150425Z ##[debug] { +2024-05-29T06:06:36.4150652Z ##[debug] "checkRun": { +2024-05-29T06:06:36.4150945Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:36.4151283Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:36.4151615Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4152217Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:36.4152819Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:36.4153118Z ##[debug] }, +2024-05-29T06:06:36.4153353Z ##[debug] "checkSuite": { +2024-05-29T06:06:36.4153642Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4153973Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:36.4154294Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4154609Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:36.4154954Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4155282Z ##[debug] "workflow": { +2024-05-29T06:06:36.4155581Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:36.4156203Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:36.4156704Z ##[debug] } +2024-05-29T06:06:36.4156940Z ##[debug] }, +2024-05-29T06:06:36.4157174Z ##[debug] "checkRuns": { +2024-05-29T06:06:36.4157465Z ##[debug] "totalCount": 4, +2024-05-29T06:06:36.4157774Z ##[debug] "pageInfo": { +2024-05-29T06:06:36.4158075Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:36.4158491Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:36.4158883Z ##[debug] }, +2024-05-29T06:06:36.4159130Z ##[debug] "nodes": [ +2024-05-29T06:06:36.4159393Z ##[debug] { +2024-05-29T06:06:36.4159673Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:36.4160048Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:36.4160425Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4161041Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:36.4161656Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:36.4161976Z ##[debug] }, +2024-05-29T06:06:36.4162217Z ##[debug] { +2024-05-29T06:06:36.4162614Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:36.4162965Z ##[debug] "name": "renovate", +2024-05-29T06:06:36.4163306Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4163909Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:36.4164617Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:36.4164940Z ##[debug] }, +2024-05-29T06:06:36.4165179Z ##[debug] { +2024-05-29T06:06:36.4165446Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:36.4165909Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:36.4166272Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4166865Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:36.4167468Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:36.4167795Z ##[debug] }, +2024-05-29T06:06:36.4168044Z ##[debug] { +2024-05-29T06:06:36.4168308Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:36.4168670Z ##[debug] "name": "dependabot", +2024-05-29T06:06:36.4169022Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4169613Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:36.4170214Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:36.4170536Z ##[debug] } +2024-05-29T06:06:36.4170770Z ##[debug] ] +2024-05-29T06:06:36.4171005Z ##[debug] } +2024-05-29T06:06:36.4171230Z ##[debug] }, +2024-05-29T06:06:36.4171456Z ##[debug] "workflow": { +2024-05-29T06:06:36.4171739Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:36.4172246Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:36.4172747Z ##[debug] }, +2024-05-29T06:06:36.4173009Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4173314Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:36.4173652Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4173967Z ##[debug] "workflow": { +2024-05-29T06:06:36.4174253Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:36.4174760Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:36.4175258Z ##[debug] } +2024-05-29T06:06:36.4175481Z ##[debug] } +2024-05-29T06:06:36.4175700Z ##[debug] }, +2024-05-29T06:06:36.4176011Z ##[debug] { +2024-05-29T06:06:36.4176234Z ##[debug] "checkRun": { +2024-05-29T06:06:36.4176529Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:36.4176861Z ##[debug] "name": "dependabot", +2024-05-29T06:06:36.4177186Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4177781Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:36.4178382Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:36.4178691Z ##[debug] }, +2024-05-29T06:06:36.4178924Z ##[debug] "checkSuite": { +2024-05-29T06:06:36.4179206Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4179534Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:36.4179866Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4180177Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:36.4180527Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4180855Z ##[debug] "workflow": { +2024-05-29T06:06:36.4181152Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:36.4181656Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:36.4182158Z ##[debug] } +2024-05-29T06:06:36.4182391Z ##[debug] }, +2024-05-29T06:06:36.4182623Z ##[debug] "checkRuns": { +2024-05-29T06:06:36.4182913Z ##[debug] "totalCount": 4, +2024-05-29T06:06:36.4183334Z ##[debug] "pageInfo": { +2024-05-29T06:06:36.4183640Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:36.4184067Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:36.4184460Z ##[debug] }, +2024-05-29T06:06:36.4184810Z ##[debug] "nodes": [ +2024-05-29T06:06:36.4185079Z ##[debug] { +2024-05-29T06:06:36.4185363Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:36.4185736Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:36.4186238Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4186854Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:36.4187470Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:36.4187796Z ##[debug] }, +2024-05-29T06:06:36.4188038Z ##[debug] { +2024-05-29T06:06:36.4188548Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:36.4188902Z ##[debug] "name": "renovate", +2024-05-29T06:06:36.4189243Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4189872Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:36.4190481Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:36.4190807Z ##[debug] }, +2024-05-29T06:06:36.4191049Z ##[debug] { +2024-05-29T06:06:36.4191325Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:36.4191697Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:36.4192064Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4192653Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:36.4193253Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:36.4193573Z ##[debug] }, +2024-05-29T06:06:36.4193836Z ##[debug] { +2024-05-29T06:06:36.4194105Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:36.4194463Z ##[debug] "name": "dependabot", +2024-05-29T06:06:36.4194815Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4195399Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:36.4196144Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:36.4196489Z ##[debug] } +2024-05-29T06:06:36.4196722Z ##[debug] ] +2024-05-29T06:06:36.4196953Z ##[debug] } +2024-05-29T06:06:36.4197177Z ##[debug] }, +2024-05-29T06:06:36.4197402Z ##[debug] "workflow": { +2024-05-29T06:06:36.4197689Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:36.4198186Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:36.4198680Z ##[debug] }, +2024-05-29T06:06:36.4198915Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4199228Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:36.4199557Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4199880Z ##[debug] "workflow": { +2024-05-29T06:06:36.4200165Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:36.4200672Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:36.4201171Z ##[debug] } +2024-05-29T06:06:36.4201393Z ##[debug] } +2024-05-29T06:06:36.4201611Z ##[debug] }, +2024-05-29T06:06:36.4201823Z ##[debug] { +2024-05-29T06:06:36.4202047Z ##[debug] "checkRun": { +2024-05-29T06:06:36.4202339Z ##[debug] "databaseId": 25536411287, +2024-05-29T06:06:36.4202663Z ##[debug] "name": "echo", +2024-05-29T06:06:36.4202962Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4203557Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", +2024-05-29T06:06:36.4204308Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4204622Z ##[debug] }, +2024-05-29T06:06:36.4204857Z ##[debug] "checkSuite": { +2024-05-29T06:06:36.4205141Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4205471Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:36.4206007Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4206318Z ##[debug] "databaseId": 9281068684, +2024-05-29T06:06:36.4206669Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4206997Z ##[debug] "workflow": { +2024-05-29T06:06:36.4207310Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:36.4207857Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:36.4208361Z ##[debug] } +2024-05-29T06:06:36.4208596Z ##[debug] }, +2024-05-29T06:06:36.4208833Z ##[debug] "checkRuns": { +2024-05-29T06:06:36.4209123Z ##[debug] "totalCount": 1, +2024-05-29T06:06:36.4209433Z ##[debug] "pageInfo": { +2024-05-29T06:06:36.4209735Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:36.4210148Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpc=" +2024-05-29T06:06:36.4210540Z ##[debug] }, +2024-05-29T06:06:36.4210780Z ##[debug] "nodes": [ +2024-05-29T06:06:36.4211052Z ##[debug] { +2024-05-29T06:06:36.4211333Z ##[debug] "databaseId": 25536411287, +2024-05-29T06:06:36.4211676Z ##[debug] "name": "echo", +2024-05-29T06:06:36.4212008Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4212623Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", +2024-05-29T06:06:36.4213238Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4213563Z ##[debug] } +2024-05-29T06:06:36.4213799Z ##[debug] ] +2024-05-29T06:06:36.4214029Z ##[debug] } +2024-05-29T06:06:36.4214253Z ##[debug] }, +2024-05-29T06:06:36.4214490Z ##[debug] "workflow": { +2024-05-29T06:06:36.4214782Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:36.4215315Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:36.4215936Z ##[debug] }, +2024-05-29T06:06:36.4216179Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4216480Z ##[debug] "databaseId": 9281068684, +2024-05-29T06:06:36.4216817Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4217134Z ##[debug] "workflow": { +2024-05-29T06:06:36.4217431Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:36.4217959Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:36.4218460Z ##[debug] } +2024-05-29T06:06:36.4218679Z ##[debug] } +2024-05-29T06:06:36.4218898Z ##[debug] }, +2024-05-29T06:06:36.4219113Z ##[debug] { +2024-05-29T06:06:36.4219331Z ##[debug] "checkRun": { +2024-05-29T06:06:36.4219624Z ##[debug] "databaseId": 25536411604, +2024-05-29T06:06:36.4219952Z ##[debug] "name": "wait", +2024-05-29T06:06:36.4220244Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4220843Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", +2024-05-29T06:06:36.4221448Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4221744Z ##[debug] }, +2024-05-29T06:06:36.4221974Z ##[debug] "checkSuite": { +2024-05-29T06:06:36.4222262Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4222581Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:36.4222902Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4223215Z ##[debug] "databaseId": 9281068685, +2024-05-29T06:06:36.4223554Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4223880Z ##[debug] "workflow": { +2024-05-29T06:06:36.4224186Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:36.4224848Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:36.4225341Z ##[debug] } +2024-05-29T06:06:36.4225571Z ##[debug] }, +2024-05-29T06:06:36.4225966Z ##[debug] "checkRuns": { +2024-05-29T06:06:36.4226256Z ##[debug] "totalCount": 1, +2024-05-29T06:06:36.4226672Z ##[debug] "pageInfo": { +2024-05-29T06:06:36.4226975Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:36.4227377Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWt9Q=" +2024-05-29T06:06:36.4227767Z ##[debug] }, +2024-05-29T06:06:36.4228006Z ##[debug] "nodes": [ +2024-05-29T06:06:36.4228263Z ##[debug] { +2024-05-29T06:06:36.4228543Z ##[debug] "databaseId": 25536411604, +2024-05-29T06:06:36.4228639Z ##[debug] "name": "wait", +2024-05-29T06:06:36.4228765Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4229143Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", +2024-05-29T06:06:36.4229267Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4229350Z ##[debug] } +2024-05-29T06:06:36.4229430Z ##[debug] ] +2024-05-29T06:06:36.4229514Z ##[debug] } +2024-05-29T06:06:36.4229601Z ##[debug] }, +2024-05-29T06:06:36.4229692Z ##[debug] "workflow": { +2024-05-29T06:06:36.4229802Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:36.4230077Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:36.4230157Z ##[debug] }, +2024-05-29T06:06:36.4230256Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4230363Z ##[debug] "databaseId": 9281068685, +2024-05-29T06:06:36.4230470Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4230567Z ##[debug] "workflow": { +2024-05-29T06:06:36.4230675Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:36.4230955Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:36.4231037Z ##[debug] } +2024-05-29T06:06:36.4231118Z ##[debug] } +2024-05-29T06:06:36.4231202Z ##[debug] }, +2024-05-29T06:06:36.4231282Z ##[debug] { +2024-05-29T06:06:36.4231370Z ##[debug] "checkRun": { +2024-05-29T06:06:36.4231488Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:36.4231591Z ##[debug] "name": "default_logic", +2024-05-29T06:06:36.4231693Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4232068Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:36.4232173Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4232252Z ##[debug] }, +2024-05-29T06:06:36.4232349Z ##[debug] "checkSuite": { +2024-05-29T06:06:36.4232449Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4232564Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:36.4232658Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4232773Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:36.4232888Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4232978Z ##[debug] "workflow": { +2024-05-29T06:06:36.4233075Z ##[debug] "name": "Itself", +2024-05-29T06:06:36.4233347Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:36.4233428Z ##[debug] } +2024-05-29T06:06:36.4233509Z ##[debug] }, +2024-05-29T06:06:36.4233606Z ##[debug] "checkRuns": { +2024-05-29T06:06:36.4233700Z ##[debug] "totalCount": 7, +2024-05-29T06:06:36.4233798Z ##[debug] "pageInfo": { +2024-05-29T06:06:36.4233907Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:36.4234084Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:36.4234170Z ##[debug] }, +2024-05-29T06:06:36.4234256Z ##[debug] "nodes": [ +2024-05-29T06:06:36.4234337Z ##[debug] { +2024-05-29T06:06:36.4234580Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:36.4234703Z ##[debug] "name": "default_logic", +2024-05-29T06:06:36.4234821Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4235192Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:36.4235384Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4235470Z ##[debug] }, +2024-05-29T06:06:36.4235552Z ##[debug] { +2024-05-29T06:06:36.4235671Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:36.4235912Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:36.4236030Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4236402Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:36.4236520Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4236608Z ##[debug] }, +2024-05-29T06:06:36.4236689Z ##[debug] { +2024-05-29T06:06:36.4236810Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:36.4236980Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:36.4237104Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4237457Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:36.4237572Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4237659Z ##[debug] }, +2024-05-29T06:06:36.4237738Z ##[debug] { +2024-05-29T06:06:36.4237854Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:36.4237967Z ##[debug] "name": "skip-list", +2024-05-29T06:06:36.4238077Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4238454Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:36.4238571Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4238653Z ##[debug] }, +2024-05-29T06:06:36.4238740Z ##[debug] { +2024-05-29T06:06:36.4238857Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:36.4239060Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:36.4239176Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4239532Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:36.4239779Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4239892Z ##[debug] }, +2024-05-29T06:06:36.4240006Z ##[debug] { +2024-05-29T06:06:36.4240206Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:36.4240443Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:36.4240750Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4241160Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:36.4241309Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4241476Z ##[debug] }, +2024-05-29T06:06:36.4241587Z ##[debug] { +2024-05-29T06:06:36.4241737Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:36.4241982Z ##[debug] "name": "wait-list", +2024-05-29T06:06:36.4242125Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4242571Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:36.4242722Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4242833Z ##[debug] } +2024-05-29T06:06:36.4243041Z ##[debug] ] +2024-05-29T06:06:36.4243152Z ##[debug] } +2024-05-29T06:06:36.4243384Z ##[debug] }, +2024-05-29T06:06:36.4243562Z ##[debug] "workflow": { +2024-05-29T06:06:36.4243689Z ##[debug] "name": "Itself", +2024-05-29T06:06:36.4243980Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:36.4244298Z ##[debug] }, +2024-05-29T06:06:36.4244443Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4244615Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:36.4244753Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4244875Z ##[debug] "workflow": { +2024-05-29T06:06:36.4245034Z ##[debug] "name": "Itself", +2024-05-29T06:06:36.4245381Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:36.4245508Z ##[debug] } +2024-05-29T06:06:36.4245652Z ##[debug] } +2024-05-29T06:06:36.4245762Z ##[debug] }, +2024-05-29T06:06:36.4246131Z ##[debug] { +2024-05-29T06:06:36.4246325Z ##[debug] "checkRun": { +2024-05-29T06:06:36.4246580Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:36.4246728Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:36.4246905Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4247324Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:36.4247506Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4247617Z ##[debug] }, +2024-05-29T06:06:36.4247817Z ##[debug] "checkSuite": { +2024-05-29T06:06:36.4247988Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4248128Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:36.4248258Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4248462Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:36.4248721Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4249033Z ##[debug] "workflow": { +2024-05-29T06:06:36.4249213Z ##[debug] "name": "Itself", +2024-05-29T06:06:36.4249528Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:36.4249673Z ##[debug] } +2024-05-29T06:06:36.4249786Z ##[debug] }, +2024-05-29T06:06:36.4249928Z ##[debug] "checkRuns": { +2024-05-29T06:06:36.4250167Z ##[debug] "totalCount": 7, +2024-05-29T06:06:36.4250298Z ##[debug] "pageInfo": { +2024-05-29T06:06:36.4250444Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:36.4314948Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:36.4315132Z ##[debug] }, +2024-05-29T06:06:36.4315280Z ##[debug] "nodes": [ +2024-05-29T06:06:36.4315413Z ##[debug] { +2024-05-29T06:06:36.4315622Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:36.4316000Z ##[debug] "name": "default_logic", +2024-05-29T06:06:36.4316146Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4316569Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:36.4316698Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4316784Z ##[debug] }, +2024-05-29T06:06:36.4316878Z ##[debug] { +2024-05-29T06:06:36.4317008Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:36.4317139Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:36.4317265Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4317651Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:36.4317777Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4317865Z ##[debug] }, +2024-05-29T06:06:36.4317948Z ##[debug] { +2024-05-29T06:06:36.4318075Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:36.4318249Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:36.4318557Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4318961Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:36.4319089Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4319285Z ##[debug] }, +2024-05-29T06:06:36.4319367Z ##[debug] { +2024-05-29T06:06:36.4319489Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:36.4319608Z ##[debug] "name": "skip-list", +2024-05-29T06:06:36.4319724Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4320098Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:36.4320221Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4320306Z ##[debug] }, +2024-05-29T06:06:36.4320395Z ##[debug] { +2024-05-29T06:06:36.4320517Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:36.4320728Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:36.4320856Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4321219Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:36.4321345Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4321434Z ##[debug] }, +2024-05-29T06:06:36.4321517Z ##[debug] { +2024-05-29T06:06:36.4321633Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:36.4321862Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:36.4321980Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4322356Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:36.4322477Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4322568Z ##[debug] }, +2024-05-29T06:06:36.4322662Z ##[debug] { +2024-05-29T06:06:36.4322785Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:36.4322894Z ##[debug] "name": "wait-list", +2024-05-29T06:06:36.4323016Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4323386Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:36.4323508Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4323591Z ##[debug] } +2024-05-29T06:06:36.4323674Z ##[debug] ] +2024-05-29T06:06:36.4323758Z ##[debug] } +2024-05-29T06:06:36.4323841Z ##[debug] }, +2024-05-29T06:06:36.4323935Z ##[debug] "workflow": { +2024-05-29T06:06:36.4324042Z ##[debug] "name": "Itself", +2024-05-29T06:06:36.4324309Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:36.4324391Z ##[debug] }, +2024-05-29T06:06:36.4324496Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4324604Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:36.4324723Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4324819Z ##[debug] "workflow": { +2024-05-29T06:06:36.4324921Z ##[debug] "name": "Itself", +2024-05-29T06:06:36.4325191Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:36.4325273Z ##[debug] } +2024-05-29T06:06:36.4325355Z ##[debug] } +2024-05-29T06:06:36.4325443Z ##[debug] }, +2024-05-29T06:06:36.4325523Z ##[debug] { +2024-05-29T06:06:36.4325617Z ##[debug] "checkRun": { +2024-05-29T06:06:36.4325735Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:36.4326120Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:36.4326233Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4326751Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:36.4326863Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4326952Z ##[debug] }, +2024-05-29T06:06:36.4327046Z ##[debug] "checkSuite": { +2024-05-29T06:06:36.4327146Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4327367Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:36.4327473Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4327589Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:36.4327706Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4327800Z ##[debug] "workflow": { +2024-05-29T06:06:36.4327898Z ##[debug] "name": "Itself", +2024-05-29T06:06:36.4328191Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:36.4328283Z ##[debug] } +2024-05-29T06:06:36.4328369Z ##[debug] }, +2024-05-29T06:06:36.4328462Z ##[debug] "checkRuns": { +2024-05-29T06:06:36.4328564Z ##[debug] "totalCount": 7, +2024-05-29T06:06:36.4328664Z ##[debug] "pageInfo": { +2024-05-29T06:06:36.4328777Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:36.4328960Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:36.4329048Z ##[debug] }, +2024-05-29T06:06:36.4329146Z ##[debug] "nodes": [ +2024-05-29T06:06:36.4329230Z ##[debug] { +2024-05-29T06:06:36.4329365Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:36.4329490Z ##[debug] "name": "default_logic", +2024-05-29T06:06:36.4329613Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4329990Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:36.4330111Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4330201Z ##[debug] }, +2024-05-29T06:06:36.4330285Z ##[debug] { +2024-05-29T06:06:36.4330411Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:36.4330538Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:36.4330656Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4331019Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:36.4331142Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4331227Z ##[debug] }, +2024-05-29T06:06:36.4331339Z ##[debug] { +2024-05-29T06:06:36.4331458Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:36.4331631Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:36.4331750Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4332103Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:36.4332217Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4332309Z ##[debug] }, +2024-05-29T06:06:36.4332393Z ##[debug] { +2024-05-29T06:06:36.4332514Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:36.4332625Z ##[debug] "name": "skip-list", +2024-05-29T06:06:36.4332737Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4333112Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:36.4333226Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4333308Z ##[debug] }, +2024-05-29T06:06:36.4333397Z ##[debug] { +2024-05-29T06:06:36.4333516Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:36.4333723Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:36.4333834Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4334276Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:36.4334398Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4334479Z ##[debug] }, +2024-05-29T06:06:36.4334560Z ##[debug] { +2024-05-29T06:06:36.4334681Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:36.4334977Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:36.4335096Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4335461Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:36.4335576Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4335662Z ##[debug] }, +2024-05-29T06:06:36.4335743Z ##[debug] { +2024-05-29T06:06:36.4336046Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:36.4336166Z ##[debug] "name": "wait-list", +2024-05-29T06:06:36.4336282Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4336646Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:36.4336763Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4336845Z ##[debug] } +2024-05-29T06:06:36.4336942Z ##[debug] ] +2024-05-29T06:06:36.4337022Z ##[debug] } +2024-05-29T06:06:36.4337103Z ##[debug] }, +2024-05-29T06:06:36.4337205Z ##[debug] "workflow": { +2024-05-29T06:06:36.4337299Z ##[debug] "name": "Itself", +2024-05-29T06:06:36.4337572Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:36.4337663Z ##[debug] }, +2024-05-29T06:06:36.4337762Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4337874Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:36.4337992Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4338085Z ##[debug] "workflow": { +2024-05-29T06:06:36.4338196Z ##[debug] "name": "Itself", +2024-05-29T06:06:36.4338457Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:36.4338541Z ##[debug] } +2024-05-29T06:06:36.4338629Z ##[debug] } +2024-05-29T06:06:36.4338711Z ##[debug] }, +2024-05-29T06:06:36.4338800Z ##[debug] { +2024-05-29T06:06:36.4338900Z ##[debug] "checkRun": { +2024-05-29T06:06:36.4339010Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:36.4339113Z ##[debug] "name": "skip-list", +2024-05-29T06:06:36.4339221Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4339596Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:36.4339703Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4339794Z ##[debug] }, +2024-05-29T06:06:36.4339896Z ##[debug] "checkSuite": { +2024-05-29T06:06:36.4340002Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4340115Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:36.4340211Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4340330Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:36.4340444Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4340544Z ##[debug] "workflow": { +2024-05-29T06:06:36.4340648Z ##[debug] "name": "Itself", +2024-05-29T06:06:36.4340905Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:36.4340987Z ##[debug] } +2024-05-29T06:06:36.4341072Z ##[debug] }, +2024-05-29T06:06:36.4341166Z ##[debug] "checkRuns": { +2024-05-29T06:06:36.4341267Z ##[debug] "totalCount": 7, +2024-05-29T06:06:36.4341362Z ##[debug] "pageInfo": { +2024-05-29T06:06:36.4341473Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:36.4341660Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:36.4341744Z ##[debug] }, +2024-05-29T06:06:36.4341956Z ##[debug] "nodes": [ +2024-05-29T06:06:36.4342050Z ##[debug] { +2024-05-29T06:06:36.4342171Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:36.4342291Z ##[debug] "name": "default_logic", +2024-05-29T06:06:36.4342410Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4342912Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:36.4343042Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4343126Z ##[debug] }, +2024-05-29T06:06:36.4343209Z ##[debug] { +2024-05-29T06:06:36.4343339Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:36.4343462Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:36.4343577Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4343953Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:36.4344071Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4344154Z ##[debug] }, +2024-05-29T06:06:36.4344242Z ##[debug] { +2024-05-29T06:06:36.4344361Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:36.4344543Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:36.4344658Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4345022Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:36.4345150Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4345236Z ##[debug] }, +2024-05-29T06:06:36.4345317Z ##[debug] { +2024-05-29T06:06:36.4345443Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:36.4345554Z ##[debug] "name": "skip-list", +2024-05-29T06:06:36.4345675Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4346227Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:36.4346348Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4346436Z ##[debug] }, +2024-05-29T06:06:36.4346522Z ##[debug] { +2024-05-29T06:06:36.4346641Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:36.4346849Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:36.4346961Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4347323Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:36.4347440Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4347522Z ##[debug] }, +2024-05-29T06:06:36.4347610Z ##[debug] { +2024-05-29T06:06:36.4347731Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:36.4347963Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:36.4348086Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4348444Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:36.4348569Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4348653Z ##[debug] }, +2024-05-29T06:06:36.4348736Z ##[debug] { +2024-05-29T06:06:36.4348858Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:36.4348965Z ##[debug] "name": "wait-list", +2024-05-29T06:06:36.4349079Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4349443Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:36.4349558Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4349640Z ##[debug] } +2024-05-29T06:06:36.4349848Z ##[debug] ] +2024-05-29T06:06:36.4349935Z ##[debug] } +2024-05-29T06:06:36.4350023Z ##[debug] }, +2024-05-29T06:06:36.4350116Z ##[debug] "workflow": { +2024-05-29T06:06:36.4350215Z ##[debug] "name": "Itself", +2024-05-29T06:06:36.4350482Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:36.4350665Z ##[debug] }, +2024-05-29T06:06:36.4350762Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4350901Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:36.4351008Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4351101Z ##[debug] "workflow": { +2024-05-29T06:06:36.4351198Z ##[debug] "name": "Itself", +2024-05-29T06:06:36.4351466Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:36.4351548Z ##[debug] } +2024-05-29T06:06:36.4351628Z ##[debug] } +2024-05-29T06:06:36.4351711Z ##[debug] }, +2024-05-29T06:06:36.4351796Z ##[debug] { +2024-05-29T06:06:36.4351891Z ##[debug] "checkRun": { +2024-05-29T06:06:36.4352010Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:36.4352207Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:36.4352317Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4352690Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:36.4352796Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4352882Z ##[debug] }, +2024-05-29T06:06:36.4352974Z ##[debug] "checkSuite": { +2024-05-29T06:06:36.4353074Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4353184Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:36.4353281Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4353398Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:36.4353517Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4353613Z ##[debug] "workflow": { +2024-05-29T06:06:36.4353709Z ##[debug] "name": "Itself", +2024-05-29T06:06:36.4353974Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:36.4354056Z ##[debug] } +2024-05-29T06:06:36.4354142Z ##[debug] }, +2024-05-29T06:06:36.4354239Z ##[debug] "checkRuns": { +2024-05-29T06:06:36.4354334Z ##[debug] "totalCount": 7, +2024-05-29T06:06:36.4354428Z ##[debug] "pageInfo": { +2024-05-29T06:06:36.4354539Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:36.4354717Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:36.4354806Z ##[debug] }, +2024-05-29T06:06:36.4354894Z ##[debug] "nodes": [ +2024-05-29T06:06:36.4354976Z ##[debug] { +2024-05-29T06:06:36.4355101Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:36.4355223Z ##[debug] "name": "default_logic", +2024-05-29T06:06:36.4355340Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4355714Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:36.4355978Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4356077Z ##[debug] }, +2024-05-29T06:06:36.4356159Z ##[debug] { +2024-05-29T06:06:36.4356281Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:36.4356406Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:36.4356522Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4356888Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:36.4357010Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4357092Z ##[debug] }, +2024-05-29T06:06:36.4357182Z ##[debug] { +2024-05-29T06:06:36.4357299Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:36.4357587Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:36.4357708Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4358062Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:36.4358279Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4358368Z ##[debug] }, +2024-05-29T06:06:36.4358451Z ##[debug] { +2024-05-29T06:06:36.4358570Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:36.4358682Z ##[debug] "name": "skip-list", +2024-05-29T06:06:36.4358797Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4359165Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:36.4359281Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4359364Z ##[debug] }, +2024-05-29T06:06:36.4359455Z ##[debug] { +2024-05-29T06:06:36.4359574Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:36.4359773Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:36.4359889Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4360245Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:36.4360367Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4360450Z ##[debug] }, +2024-05-29T06:06:36.4360532Z ##[debug] { +2024-05-29T06:06:36.4360651Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:36.4360873Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:36.4360986Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4361348Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:36.4361462Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4361554Z ##[debug] }, +2024-05-29T06:06:36.4361636Z ##[debug] { +2024-05-29T06:06:36.4361751Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:36.4361865Z ##[debug] "name": "wait-list", +2024-05-29T06:06:36.4361976Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4362332Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:36.4362452Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4362532Z ##[debug] } +2024-05-29T06:06:36.4362613Z ##[debug] ] +2024-05-29T06:06:36.4362697Z ##[debug] } +2024-05-29T06:06:36.4362777Z ##[debug] }, +2024-05-29T06:06:36.4362873Z ##[debug] "workflow": { +2024-05-29T06:06:36.4362969Z ##[debug] "name": "Itself", +2024-05-29T06:06:36.4363232Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:36.4363320Z ##[debug] }, +2024-05-29T06:06:36.4363415Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4363521Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:36.4363635Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4363728Z ##[debug] "workflow": { +2024-05-29T06:06:36.4363822Z ##[debug] "name": "Itself", +2024-05-29T06:06:36.4364085Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:36.4364167Z ##[debug] } +2024-05-29T06:06:36.4364252Z ##[debug] } +2024-05-29T06:06:36.4364333Z ##[debug] }, +2024-05-29T06:06:36.4364411Z ##[debug] { +2024-05-29T06:06:36.4364508Z ##[debug] "checkRun": { +2024-05-29T06:06:36.4364616Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:36.4364832Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:36.4365074Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4365448Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:36.4365554Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4365711Z ##[debug] }, +2024-05-29T06:06:36.4365948Z ##[debug] "checkSuite": { +2024-05-29T06:06:36.4366101Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4366215Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:36.4366312Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4366430Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:36.4366540Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4366631Z ##[debug] "workflow": { +2024-05-29T06:06:36.4366731Z ##[debug] "name": "Itself", +2024-05-29T06:06:36.4366993Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:36.4367074Z ##[debug] } +2024-05-29T06:06:36.4367166Z ##[debug] }, +2024-05-29T06:06:36.4367259Z ##[debug] "checkRuns": { +2024-05-29T06:06:36.4367352Z ##[debug] "totalCount": 7, +2024-05-29T06:06:36.4367450Z ##[debug] "pageInfo": { +2024-05-29T06:06:36.4367559Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:36.4367749Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:36.4367831Z ##[debug] }, +2024-05-29T06:06:36.4367920Z ##[debug] "nodes": [ +2024-05-29T06:06:36.4368008Z ##[debug] { +2024-05-29T06:06:36.4368127Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:36.4368244Z ##[debug] "name": "default_logic", +2024-05-29T06:06:36.4368360Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4368724Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:36.4368839Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4368929Z ##[debug] }, +2024-05-29T06:06:36.4369011Z ##[debug] { +2024-05-29T06:06:36.4369130Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:36.4369249Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:36.4369366Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4369725Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:36.4369840Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4369920Z ##[debug] }, +2024-05-29T06:06:36.4370003Z ##[debug] { +2024-05-29T06:06:36.4370117Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:36.4370289Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:36.4370400Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4370751Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:36.4370870Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4370951Z ##[debug] }, +2024-05-29T06:06:36.4371031Z ##[debug] { +2024-05-29T06:06:36.4371150Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:36.4371261Z ##[debug] "name": "skip-list", +2024-05-29T06:06:36.4371373Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4371734Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:36.4371849Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4371935Z ##[debug] }, +2024-05-29T06:06:36.4372015Z ##[debug] { +2024-05-29T06:06:36.4372132Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:36.4372332Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:36.4372582Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4372944Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:36.4373063Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4373243Z ##[debug] }, +2024-05-29T06:06:36.4373329Z ##[debug] { +2024-05-29T06:06:36.4373444Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:36.4373674Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:36.4373792Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4374152Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:36.4374265Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4374350Z ##[debug] }, +2024-05-29T06:06:36.4374431Z ##[debug] { +2024-05-29T06:06:36.4374554Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:36.4374661Z ##[debug] "name": "wait-list", +2024-05-29T06:06:36.4374773Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4375137Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:36.4375258Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4375338Z ##[debug] } +2024-05-29T06:06:36.4375421Z ##[debug] ] +2024-05-29T06:06:36.4375501Z ##[debug] } +2024-05-29T06:06:36.4375582Z ##[debug] }, +2024-05-29T06:06:36.4375674Z ##[debug] "workflow": { +2024-05-29T06:06:36.4375768Z ##[debug] "name": "Itself", +2024-05-29T06:06:36.4376224Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:36.4376306Z ##[debug] }, +2024-05-29T06:06:36.4376400Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4376510Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:36.4376621Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4376710Z ##[debug] "workflow": { +2024-05-29T06:06:36.4376806Z ##[debug] "name": "Itself", +2024-05-29T06:06:36.4377061Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:36.4377147Z ##[debug] } +2024-05-29T06:06:36.4377232Z ##[debug] } +2024-05-29T06:06:36.4377313Z ##[debug] }, +2024-05-29T06:06:36.4377392Z ##[debug] { +2024-05-29T06:06:36.4377486Z ##[debug] "checkRun": { +2024-05-29T06:06:36.4377594Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:36.4377698Z ##[debug] "name": "wait-list", +2024-05-29T06:06:36.4377797Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4378165Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:36.4378275Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4378355Z ##[debug] }, +2024-05-29T06:06:36.4378451Z ##[debug] "checkSuite": { +2024-05-29T06:06:36.4378557Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4378662Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:36.4378758Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4378881Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:36.4378994Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4379092Z ##[debug] "workflow": { +2024-05-29T06:06:36.4379190Z ##[debug] "name": "Itself", +2024-05-29T06:06:36.4379456Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:36.4379545Z ##[debug] } +2024-05-29T06:06:36.4379626Z ##[debug] }, +2024-05-29T06:06:36.4379719Z ##[debug] "checkRuns": { +2024-05-29T06:06:36.4379821Z ##[debug] "totalCount": 7, +2024-05-29T06:06:36.4379913Z ##[debug] "pageInfo": { +2024-05-29T06:06:36.4380022Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:36.4380334Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:36.4380422Z ##[debug] }, +2024-05-29T06:06:36.4380509Z ##[debug] "nodes": [ +2024-05-29T06:06:36.4380594Z ##[debug] { +2024-05-29T06:06:36.4380715Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:36.4380942Z ##[debug] "name": "default_logic", +2024-05-29T06:06:36.4381059Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4381432Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:36.4381553Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4381635Z ##[debug] }, +2024-05-29T06:06:36.4381716Z ##[debug] { +2024-05-29T06:06:36.4381836Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:36.4381955Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:36.4382072Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4382441Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:36.4382557Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4382646Z ##[debug] }, +2024-05-29T06:06:36.4382734Z ##[debug] { +2024-05-29T06:06:36.4382850Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:36.4383025Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:36.4383136Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4383494Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:36.4383605Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4383688Z ##[debug] }, +2024-05-29T06:06:36.4383772Z ##[debug] { +2024-05-29T06:06:36.4383887Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:36.4383998Z ##[debug] "name": "skip-list", +2024-05-29T06:06:36.4384117Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4384476Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:36.4384605Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4384687Z ##[debug] }, +2024-05-29T06:06:36.4384769Z ##[debug] { +2024-05-29T06:06:36.4384889Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:36.4385089Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:36.4385200Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4385555Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:36.4385669Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4385750Z ##[debug] }, +2024-05-29T06:06:36.4385950Z ##[debug] { +2024-05-29T06:06:36.4386069Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:36.4386296Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:36.4386409Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4386776Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:36.4386891Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4386973Z ##[debug] }, +2024-05-29T06:06:36.4387054Z ##[debug] { +2024-05-29T06:06:36.4387177Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:36.4387286Z ##[debug] "name": "wait-list", +2024-05-29T06:06:36.4387401Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4387758Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:36.4387991Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4388082Z ##[debug] } +2024-05-29T06:06:36.4388166Z ##[debug] ] +2024-05-29T06:06:36.4388249Z ##[debug] } +2024-05-29T06:06:36.4388332Z ##[debug] }, +2024-05-29T06:06:36.4388524Z ##[debug] "workflow": { +2024-05-29T06:06:36.4388620Z ##[debug] "name": "Itself", +2024-05-29T06:06:36.4388885Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:36.4388966Z ##[debug] }, +2024-05-29T06:06:36.4389066Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4389176Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:36.4389284Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4389410Z ##[debug] "workflow": { +2024-05-29T06:06:36.4389506Z ##[debug] "name": "Itself", +2024-05-29T06:06:36.4389762Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:36.4389856Z ##[debug] } +2024-05-29T06:06:36.4389936Z ##[debug] } +2024-05-29T06:06:36.4390017Z ##[debug] }, +2024-05-29T06:06:36.4390104Z ##[debug] { +2024-05-29T06:06:36.4390197Z ##[debug] "checkRun": { +2024-05-29T06:06:36.4390305Z ##[debug] "databaseId": 25536411358, +2024-05-29T06:06:36.4390439Z ##[debug] "name": "dependency-review", +2024-05-29T06:06:36.4390540Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4390905Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", +2024-05-29T06:06:36.4391009Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4391088Z ##[debug] }, +2024-05-29T06:06:36.4391186Z ##[debug] "checkSuite": { +2024-05-29T06:06:36.4391286Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4391390Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:36.4391490Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4391609Z ##[debug] "databaseId": 9281068690, +2024-05-29T06:06:36.4391717Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4391810Z ##[debug] "workflow": { +2024-05-29T06:06:36.4391921Z ##[debug] "name": "💂➕", +2024-05-29T06:06:36.4392248Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:36.4392341Z ##[debug] } +2024-05-29T06:06:36.4392423Z ##[debug] }, +2024-05-29T06:06:36.4392521Z ##[debug] "checkRuns": { +2024-05-29T06:06:36.4392617Z ##[debug] "totalCount": 1, +2024-05-29T06:06:36.4392711Z ##[debug] "pageInfo": { +2024-05-29T06:06:36.4392827Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:36.4393006Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtt4=" +2024-05-29T06:06:36.4393089Z ##[debug] }, +2024-05-29T06:06:36.4393183Z ##[debug] "nodes": [ +2024-05-29T06:06:36.4393264Z ##[debug] { +2024-05-29T06:06:36.4393394Z ##[debug] "databaseId": 25536411358, +2024-05-29T06:06:36.4393531Z ##[debug] "name": "dependency-review", +2024-05-29T06:06:36.4393647Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:36.4394025Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", +2024-05-29T06:06:36.4394147Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:36.4394233Z ##[debug] } +2024-05-29T06:06:36.4394317Z ##[debug] ] +2024-05-29T06:06:36.4394397Z ##[debug] } +2024-05-29T06:06:36.4394476Z ##[debug] }, +2024-05-29T06:06:36.4394570Z ##[debug] "workflow": { +2024-05-29T06:06:36.4394663Z ##[debug] "name": "💂➕", +2024-05-29T06:06:36.4394974Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:36.4395059Z ##[debug] }, +2024-05-29T06:06:36.4395153Z ##[debug] "workflowRun": { +2024-05-29T06:06:36.4395264Z ##[debug] "databaseId": 9281068690, +2024-05-29T06:06:36.4395461Z ##[debug] "event": "pull_request", +2024-05-29T06:06:36.4395555Z ##[debug] "workflow": { +2024-05-29T06:06:36.4395654Z ##[debug] "name": "💂➕", +2024-05-29T06:06:36.4396069Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:36.4396266Z ##[debug] } +2024-05-29T06:06:36.4396351Z ##[debug] } +2024-05-29T06:06:36.4396431Z ##[debug] } +2024-05-29T06:06:36.4396510Z ##[debug] ], +2024-05-29T06:06:36.4396629Z ##[debug] "elapsedMsec": 498.0921849999577 +2024-05-29T06:06:36.4396706Z ##[debug]} +2024-05-29T06:06:36.4398086Z GH-820-graceperiod.yml(quickstarter-success): [suiteStatus: QUEUED][suiteConclusion: (null)][runStatus: QUEUED][runConclusion: (null)][eventName: pull_request][runURL: https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631] +2024-05-29T06:06:36.4398751Z ##[debug]{ +2024-05-29T06:06:36.4398850Z ##[debug] "label": "filtered", +2024-05-29T06:06:36.4398950Z ##[debug] "report": { +2024-05-29T06:06:36.4399060Z ##[debug] "progress": "in_progress", +2024-05-29T06:06:36.4399170Z ##[debug] "conclusion": "acceptable", +2024-05-29T06:06:36.4399263Z ##[debug] "summaries": [ +2024-05-29T06:06:36.4399344Z ##[debug] { +2024-05-29T06:06:36.4399451Z ##[debug] "acceptable": false, +2024-05-29T06:06:36.4399607Z ##[debug] "workflowPath": "GH-820-graceperiod.yml", +2024-05-29T06:06:36.4399719Z ##[debug] "isSameWorkflow": true, +2024-05-29T06:06:36.4399842Z ##[debug] "eventName": "pull_request", +2024-05-29T06:06:36.4399973Z ##[debug] "checkSuiteStatus": "QUEUED", +2024-05-29T06:06:36.4400098Z ##[debug] "checkSuiteConclusion": null, +2024-05-29T06:06:36.4400215Z ##[debug] "runDatabaseId": 25536443631, +2024-05-29T06:06:36.4400353Z ##[debug] "jobName": "quickstarter-success", +2024-05-29T06:06:36.4400744Z ##[debug] "checkRunUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:36.4400852Z ##[debug] "runStatus": "QUEUED", +2024-05-29T06:06:36.4400955Z ##[debug] "runConclusion": null +2024-05-29T06:06:36.4401036Z ##[debug] } +2024-05-29T06:06:36.4401125Z ##[debug] ] +2024-05-29T06:06:36.4401205Z ##[debug] } +2024-05-29T06:06:36.4401286Z ##[debug]} +2024-05-29T06:06:36.4401396Z some jobs still in progress +2024-05-29T06:06:36.4401669Z ::endgroup:: +2024-05-29T06:06:36.4401767Z ##[endgroup] +2024-05-29T06:06:36.4401974Z Wait about 5 seconds before next polling to reduce API calls. +2024-05-29T06:06:41.3696785Z ::group::Polling 2: 2024-05-29T06:06:41.369Z +2024-05-29T06:06:41.3697406Z ##[group]Polling 2: 2024-05-29T06:06:41.369Z +2024-05-29T06:06:41.8510304Z ##[debug]{ +2024-05-29T06:06:41.8510591Z ##[debug] "label": "rawdata", +2024-05-29T06:06:41.8510895Z ##[debug] "checks": [ +2024-05-29T06:06:41.8511146Z ##[debug] { +2024-05-29T06:06:41.8511374Z ##[debug] "checkRun": { +2024-05-29T06:06:41.8511683Z ##[debug] "databaseId": 25536410411, +2024-05-29T06:06:41.8512046Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:41.8512366Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8512989Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", +2024-05-29T06:06:41.8513625Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8513940Z ##[debug] }, +2024-05-29T06:06:41.8514184Z ##[debug] "checkSuite": { +2024-05-29T06:06:41.8514481Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8514810Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:41.8515136Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8515457Z ##[debug] "databaseId": 9281068413, +2024-05-29T06:06:41.8515952Z ##[debug] "event": "push", +2024-05-29T06:06:41.8516319Z ##[debug] "workflow": { +2024-05-29T06:06:41.8516635Z ##[debug] "name": "💧", +2024-05-29T06:06:41.8517414Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:41.8517909Z ##[debug] } +2024-05-29T06:06:41.8518150Z ##[debug] }, +2024-05-29T06:06:41.8518396Z ##[debug] "checkRuns": { +2024-05-29T06:06:41.8518698Z ##[debug] "totalCount": 1, +2024-05-29T06:06:41.8519393Z ##[debug] "pageInfo": { +2024-05-29T06:06:41.8519717Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:41.8520135Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWsys=" +2024-05-29T06:06:41.8520541Z ##[debug] }, +2024-05-29T06:06:41.8520794Z ##[debug] "nodes": [ +2024-05-29T06:06:41.8521058Z ##[debug] { +2024-05-29T06:06:41.8521347Z ##[debug] "databaseId": 25536410411, +2024-05-29T06:06:41.8521711Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:41.8522053Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8522681Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", +2024-05-29T06:06:41.8523323Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8523649Z ##[debug] } +2024-05-29T06:06:41.8523897Z ##[debug] ] +2024-05-29T06:06:41.8524137Z ##[debug] } +2024-05-29T06:06:41.8524358Z ##[debug] }, +2024-05-29T06:06:41.8524599Z ##[debug] "workflow": { +2024-05-29T06:06:41.8524880Z ##[debug] "name": "💧", +2024-05-29T06:06:41.8525341Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:41.8525946Z ##[debug] }, +2024-05-29T06:06:41.8526196Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8526513Z ##[debug] "databaseId": 9281068413, +2024-05-29T06:06:41.8526837Z ##[debug] "event": "push", +2024-05-29T06:06:41.8527135Z ##[debug] "workflow": { +2024-05-29T06:06:41.8527422Z ##[debug] "name": "💧", +2024-05-29T06:06:41.8527891Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:41.8528396Z ##[debug] } +2024-05-29T06:06:41.8528628Z ##[debug] } +2024-05-29T06:06:41.8528853Z ##[debug] }, +2024-05-29T06:06:41.8529194Z ##[debug] { +2024-05-29T06:06:41.8529429Z ##[debug] "checkRun": { +2024-05-29T06:06:41.8529719Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:41.8530064Z ##[debug] "name": "build", +2024-05-29T06:06:41.8530374Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8530966Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:41.8531574Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8531888Z ##[debug] }, +2024-05-29T06:06:41.8532121Z ##[debug] "checkSuite": { +2024-05-29T06:06:41.8532417Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8532752Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:41.8533074Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8533390Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:41.8533746Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8534073Z ##[debug] "workflow": { +2024-05-29T06:06:41.8534377Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:41.8534855Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:41.8535320Z ##[debug] } +2024-05-29T06:06:41.8535554Z ##[debug] }, +2024-05-29T06:06:41.8535892Z ##[debug] "checkRuns": { +2024-05-29T06:06:41.8536190Z ##[debug] "totalCount": 3, +2024-05-29T06:06:41.8536499Z ##[debug] "pageInfo": { +2024-05-29T06:06:41.8536818Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:41.8537235Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:41.8537627Z ##[debug] }, +2024-05-29T06:06:41.8537876Z ##[debug] "nodes": [ +2024-05-29T06:06:41.8538145Z ##[debug] { +2024-05-29T06:06:41.8538426Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:41.8538921Z ##[debug] "name": "build", +2024-05-29T06:06:41.8539264Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8539876Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:41.8540629Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8540962Z ##[debug] }, +2024-05-29T06:06:41.8541202Z ##[debug] { +2024-05-29T06:06:41.8541480Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:41.8541824Z ##[debug] "name": "test", +2024-05-29T06:06:41.8542158Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8542748Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:41.8543365Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8543691Z ##[debug] }, +2024-05-29T06:06:41.8543926Z ##[debug] { +2024-05-29T06:06:41.8544205Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:41.8544557Z ##[debug] "name": "typecheck", +2024-05-29T06:06:41.8544898Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8545492Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:41.8546358Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8546678Z ##[debug] } +2024-05-29T06:06:41.8546913Z ##[debug] ] +2024-05-29T06:06:41.8547148Z ##[debug] } +2024-05-29T06:06:41.8547367Z ##[debug] }, +2024-05-29T06:06:41.8547600Z ##[debug] "workflow": { +2024-05-29T06:06:41.8547889Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:41.8548352Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:41.8548809Z ##[debug] }, +2024-05-29T06:06:41.8549050Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8549363Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:41.8549699Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8550034Z ##[debug] "workflow": { +2024-05-29T06:06:41.8550326Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:41.8550784Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:41.8551252Z ##[debug] } +2024-05-29T06:06:41.8551481Z ##[debug] } +2024-05-29T06:06:41.8551697Z ##[debug] }, +2024-05-29T06:06:41.8551915Z ##[debug] { +2024-05-29T06:06:41.8552144Z ##[debug] "checkRun": { +2024-05-29T06:06:41.8552434Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:41.8552765Z ##[debug] "name": "test", +2024-05-29T06:06:41.8553061Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8553649Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:41.8554248Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8554560Z ##[debug] }, +2024-05-29T06:06:41.8554791Z ##[debug] "checkSuite": { +2024-05-29T06:06:41.8555083Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8555414Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:41.8555732Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8556155Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:41.8556501Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8556826Z ##[debug] "workflow": { +2024-05-29T06:06:41.8557123Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:41.8557595Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:41.8558050Z ##[debug] } +2024-05-29T06:06:41.8558280Z ##[debug] }, +2024-05-29T06:06:41.8558526Z ##[debug] "checkRuns": { +2024-05-29T06:06:41.8558820Z ##[debug] "totalCount": 3, +2024-05-29T06:06:41.8559117Z ##[debug] "pageInfo": { +2024-05-29T06:06:41.8559552Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:41.8559971Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:41.8560357Z ##[debug] }, +2024-05-29T06:06:41.8560602Z ##[debug] "nodes": [ +2024-05-29T06:06:41.8560874Z ##[debug] { +2024-05-29T06:06:41.8561264Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:41.8561609Z ##[debug] "name": "build", +2024-05-29T06:06:41.8561946Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8562552Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:41.8563170Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8563504Z ##[debug] }, +2024-05-29T06:06:41.8563752Z ##[debug] { +2024-05-29T06:06:41.8564021Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:41.8564367Z ##[debug] "name": "test", +2024-05-29T06:06:41.8564704Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8565297Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:41.8566040Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8566376Z ##[debug] }, +2024-05-29T06:06:41.8566609Z ##[debug] { +2024-05-29T06:06:41.8566883Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:41.8567233Z ##[debug] "name": "typecheck", +2024-05-29T06:06:41.8567573Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8568171Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:41.8568778Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8569096Z ##[debug] } +2024-05-29T06:06:41.8569328Z ##[debug] ] +2024-05-29T06:06:41.8569564Z ##[debug] } +2024-05-29T06:06:41.8569800Z ##[debug] }, +2024-05-29T06:06:41.8570030Z ##[debug] "workflow": { +2024-05-29T06:06:41.8570317Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:41.8570798Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:41.8571271Z ##[debug] }, +2024-05-29T06:06:41.8571512Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8571819Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:41.8572156Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8572477Z ##[debug] "workflow": { +2024-05-29T06:06:41.8572775Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:41.8573233Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:41.8573693Z ##[debug] } +2024-05-29T06:06:41.8573923Z ##[debug] } +2024-05-29T06:06:41.8574141Z ##[debug] }, +2024-05-29T06:06:41.8574363Z ##[debug] { +2024-05-29T06:06:41.8574590Z ##[debug] "checkRun": { +2024-05-29T06:06:41.8574888Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:41.8575232Z ##[debug] "name": "typecheck", +2024-05-29T06:06:41.8575561Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8576242Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:41.8576851Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8577160Z ##[debug] }, +2024-05-29T06:06:41.8577387Z ##[debug] "checkSuite": { +2024-05-29T06:06:41.8577677Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8578008Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:41.8578331Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8578642Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:41.8578992Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8579317Z ##[debug] "workflow": { +2024-05-29T06:06:41.8579619Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:41.8580235Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:41.8580697Z ##[debug] } +2024-05-29T06:06:41.8580925Z ##[debug] }, +2024-05-29T06:06:41.8581168Z ##[debug] "checkRuns": { +2024-05-29T06:06:41.8581462Z ##[debug] "totalCount": 3, +2024-05-29T06:06:41.8581862Z ##[debug] "pageInfo": { +2024-05-29T06:06:41.8582169Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:41.8582569Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:41.8582954Z ##[debug] }, +2024-05-29T06:06:41.8583203Z ##[debug] "nodes": [ +2024-05-29T06:06:41.8583469Z ##[debug] { +2024-05-29T06:06:41.8583744Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:41.8584088Z ##[debug] "name": "build", +2024-05-29T06:06:41.8584423Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8585031Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:41.8585645Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8586076Z ##[debug] }, +2024-05-29T06:06:41.8586320Z ##[debug] { +2024-05-29T06:06:41.8586592Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:41.8586941Z ##[debug] "name": "test", +2024-05-29T06:06:41.8587272Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8587863Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:41.8588470Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8588795Z ##[debug] }, +2024-05-29T06:06:41.8589029Z ##[debug] { +2024-05-29T06:06:41.8589303Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:41.8589654Z ##[debug] "name": "typecheck", +2024-05-29T06:06:41.8589995Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8590589Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:41.8591192Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8591516Z ##[debug] } +2024-05-29T06:06:41.8591749Z ##[debug] ] +2024-05-29T06:06:41.8591984Z ##[debug] } +2024-05-29T06:06:41.8592216Z ##[debug] }, +2024-05-29T06:06:41.8592455Z ##[debug] "workflow": { +2024-05-29T06:06:41.8592746Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:41.8593212Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:41.8593657Z ##[debug] }, +2024-05-29T06:06:41.8593895Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8594202Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:41.8594534Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8594855Z ##[debug] "workflow": { +2024-05-29T06:06:41.8595150Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:41.8595605Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:41.8596163Z ##[debug] } +2024-05-29T06:06:41.8596388Z ##[debug] } +2024-05-29T06:06:41.8596605Z ##[debug] }, +2024-05-29T06:06:41.8596830Z ##[debug] { +2024-05-29T06:06:41.8597054Z ##[debug] "checkRun": { +2024-05-29T06:06:41.8597342Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:41.8597673Z ##[debug] "name": "typos", +2024-05-29T06:06:41.8597974Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8598566Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:41.8599169Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8599472Z ##[debug] }, +2024-05-29T06:06:41.8599708Z ##[debug] "checkSuite": { +2024-05-29T06:06:41.8599993Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8600321Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:41.8600759Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8601075Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:41.8601458Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8601790Z ##[debug] "workflow": { +2024-05-29T06:06:41.8602187Z ##[debug] "name": "👕", +2024-05-29T06:06:41.8602642Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:41.8603111Z ##[debug] } +2024-05-29T06:06:41.8603340Z ##[debug] }, +2024-05-29T06:06:41.8603578Z ##[debug] "checkRuns": { +2024-05-29T06:06:41.8603873Z ##[debug] "totalCount": 4, +2024-05-29T06:06:41.8604171Z ##[debug] "pageInfo": { +2024-05-29T06:06:41.8604476Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:41.8604882Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:41.8605265Z ##[debug] }, +2024-05-29T06:06:41.8605513Z ##[debug] "nodes": [ +2024-05-29T06:06:41.8605887Z ##[debug] { +2024-05-29T06:06:41.8606164Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:41.8606509Z ##[debug] "name": "typos", +2024-05-29T06:06:41.8606842Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8607459Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:41.8608064Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8608390Z ##[debug] }, +2024-05-29T06:06:41.8608634Z ##[debug] { +2024-05-29T06:06:41.8608905Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:41.8609248Z ##[debug] "name": "dprint", +2024-05-29T06:06:41.8609588Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8610177Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:41.8610793Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8611117Z ##[debug] }, +2024-05-29T06:06:41.8611353Z ##[debug] { +2024-05-29T06:06:41.8611626Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:41.8611975Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:41.8612319Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8612910Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:41.8613511Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8613828Z ##[debug] }, +2024-05-29T06:06:41.8614062Z ##[debug] { +2024-05-29T06:06:41.8614330Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:41.8614671Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:41.8615001Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8615614Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:41.8616331Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8616656Z ##[debug] } +2024-05-29T06:06:41.8616891Z ##[debug] ] +2024-05-29T06:06:41.8617122Z ##[debug] } +2024-05-29T06:06:41.8617348Z ##[debug] }, +2024-05-29T06:06:41.8617580Z ##[debug] "workflow": { +2024-05-29T06:06:41.8617853Z ##[debug] "name": "👕", +2024-05-29T06:06:41.8618284Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:41.8618744Z ##[debug] }, +2024-05-29T06:06:41.8618986Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8619285Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:41.8619660Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8620096Z ##[debug] "workflow": { +2024-05-29T06:06:41.8620384Z ##[debug] "name": "👕", +2024-05-29T06:06:41.8620956Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:41.8621423Z ##[debug] } +2024-05-29T06:06:41.8621647Z ##[debug] } +2024-05-29T06:06:41.8621861Z ##[debug] }, +2024-05-29T06:06:41.8622078Z ##[debug] { +2024-05-29T06:06:41.8622303Z ##[debug] "checkRun": { +2024-05-29T06:06:41.8622746Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:41.8623079Z ##[debug] "name": "dprint", +2024-05-29T06:06:41.8623383Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8623968Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:41.8624564Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8624867Z ##[debug] }, +2024-05-29T06:06:41.8625095Z ##[debug] "checkSuite": { +2024-05-29T06:06:41.8625384Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8625710Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:41.8626138Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8626458Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:41.8626802Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8627120Z ##[debug] "workflow": { +2024-05-29T06:06:41.8627408Z ##[debug] "name": "👕", +2024-05-29T06:06:41.8627867Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:41.8628340Z ##[debug] } +2024-05-29T06:06:41.8628575Z ##[debug] }, +2024-05-29T06:06:41.8628815Z ##[debug] "checkRuns": { +2024-05-29T06:06:41.8629108Z ##[debug] "totalCount": 4, +2024-05-29T06:06:41.8629401Z ##[debug] "pageInfo": { +2024-05-29T06:06:41.8629703Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:41.8630111Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:41.8630493Z ##[debug] }, +2024-05-29T06:06:41.8630738Z ##[debug] "nodes": [ +2024-05-29T06:06:41.8631010Z ##[debug] { +2024-05-29T06:06:41.8631288Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:41.8631631Z ##[debug] "name": "typos", +2024-05-29T06:06:41.8631963Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8632566Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:41.8633184Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8633511Z ##[debug] }, +2024-05-29T06:06:41.8633749Z ##[debug] { +2024-05-29T06:06:41.8634028Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:41.8634373Z ##[debug] "name": "dprint", +2024-05-29T06:06:41.8634704Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8635305Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:41.8636002Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8636326Z ##[debug] }, +2024-05-29T06:06:41.8636568Z ##[debug] { +2024-05-29T06:06:41.8636843Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:41.8637194Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:41.8637533Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8638134Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:41.8638731Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8639048Z ##[debug] }, +2024-05-29T06:06:41.8639290Z ##[debug] { +2024-05-29T06:06:41.8639567Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:41.8639903Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:41.8640239Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8640850Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:41.8641578Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8641903Z ##[debug] } +2024-05-29T06:06:41.8642140Z ##[debug] ] +2024-05-29T06:06:41.8642373Z ##[debug] } +2024-05-29T06:06:41.8642592Z ##[debug] }, +2024-05-29T06:06:41.8642826Z ##[debug] "workflow": { +2024-05-29T06:06:41.8659146Z ##[debug] "name": "👕", +2024-05-29T06:06:41.8659625Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:41.8660103Z ##[debug] }, +2024-05-29T06:06:41.8660347Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8660661Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:41.8660999Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8661326Z ##[debug] "workflow": { +2024-05-29T06:06:41.8661609Z ##[debug] "name": "👕", +2024-05-29T06:06:41.8662052Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:41.8662522Z ##[debug] } +2024-05-29T06:06:41.8662815Z ##[debug] } +2024-05-29T06:06:41.8663049Z ##[debug] }, +2024-05-29T06:06:41.8663276Z ##[debug] { +2024-05-29T06:06:41.8663503Z ##[debug] "checkRun": { +2024-05-29T06:06:41.8663790Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:41.8664139Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:41.8664464Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8665070Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:41.8665667Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8666086Z ##[debug] }, +2024-05-29T06:06:41.8666325Z ##[debug] "checkSuite": { +2024-05-29T06:06:41.8666614Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8666958Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:41.8667284Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8667594Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:41.8667951Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8668276Z ##[debug] "workflow": { +2024-05-29T06:06:41.8668560Z ##[debug] "name": "👕", +2024-05-29T06:06:41.8669017Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:41.8669498Z ##[debug] } +2024-05-29T06:06:41.8669732Z ##[debug] }, +2024-05-29T06:06:41.8669981Z ##[debug] "checkRuns": { +2024-05-29T06:06:41.8670274Z ##[debug] "totalCount": 4, +2024-05-29T06:06:41.8670575Z ##[debug] "pageInfo": { +2024-05-29T06:06:41.8670895Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:41.8671316Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:41.8671711Z ##[debug] }, +2024-05-29T06:06:41.8671951Z ##[debug] "nodes": [ +2024-05-29T06:06:41.8672222Z ##[debug] { +2024-05-29T06:06:41.8672503Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:41.8672861Z ##[debug] "name": "typos", +2024-05-29T06:06:41.8673203Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8673825Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:41.8674438Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8674770Z ##[debug] }, +2024-05-29T06:06:41.8675011Z ##[debug] { +2024-05-29T06:06:41.8675281Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:41.8675632Z ##[debug] "name": "dprint", +2024-05-29T06:06:41.8676069Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8676660Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:41.8677264Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8677583Z ##[debug] }, +2024-05-29T06:06:41.8677820Z ##[debug] { +2024-05-29T06:06:41.8678249Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:41.8678605Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:41.8678951Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8679531Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:41.8680253Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8680575Z ##[debug] }, +2024-05-29T06:06:41.8680808Z ##[debug] { +2024-05-29T06:06:41.8681084Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:41.8681428Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:41.8681756Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8682363Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:41.8682974Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8683295Z ##[debug] } +2024-05-29T06:06:41.8683531Z ##[debug] ] +2024-05-29T06:06:41.8683761Z ##[debug] } +2024-05-29T06:06:41.8683985Z ##[debug] }, +2024-05-29T06:06:41.8684211Z ##[debug] "workflow": { +2024-05-29T06:06:41.8684490Z ##[debug] "name": "👕", +2024-05-29T06:06:41.8684930Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:41.8685385Z ##[debug] }, +2024-05-29T06:06:41.8685620Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8686025Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:41.8686356Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8686673Z ##[debug] "workflow": { +2024-05-29T06:06:41.8686954Z ##[debug] "name": "👕", +2024-05-29T06:06:41.8687391Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:41.8687853Z ##[debug] } +2024-05-29T06:06:41.8688079Z ##[debug] } +2024-05-29T06:06:41.8688291Z ##[debug] }, +2024-05-29T06:06:41.8688515Z ##[debug] { +2024-05-29T06:06:41.8688739Z ##[debug] "checkRun": { +2024-05-29T06:06:41.8689022Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:41.8689355Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:41.8689666Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8690257Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:41.8690853Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8691156Z ##[debug] }, +2024-05-29T06:06:41.8691384Z ##[debug] "checkSuite": { +2024-05-29T06:06:41.8691676Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8692003Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:41.8692325Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8692633Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:41.8692981Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8693305Z ##[debug] "workflow": { +2024-05-29T06:06:41.8693593Z ##[debug] "name": "👕", +2024-05-29T06:06:41.8694045Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:41.8694508Z ##[debug] } +2024-05-29T06:06:41.8694735Z ##[debug] }, +2024-05-29T06:06:41.8694986Z ##[debug] "checkRuns": { +2024-05-29T06:06:41.8695270Z ##[debug] "totalCount": 4, +2024-05-29T06:06:41.8695571Z ##[debug] "pageInfo": { +2024-05-29T06:06:41.8695969Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:41.8696374Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:41.8696767Z ##[debug] }, +2024-05-29T06:06:41.8697008Z ##[debug] "nodes": [ +2024-05-29T06:06:41.8697268Z ##[debug] { +2024-05-29T06:06:41.8697548Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:41.8697887Z ##[debug] "name": "typos", +2024-05-29T06:06:41.8698210Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8698947Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:41.8699574Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8699895Z ##[debug] }, +2024-05-29T06:06:41.8700236Z ##[debug] { +2024-05-29T06:06:41.8700506Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:41.8700846Z ##[debug] "name": "dprint", +2024-05-29T06:06:41.8701172Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8701791Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:41.8702388Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8702698Z ##[debug] }, +2024-05-29T06:06:41.8702937Z ##[debug] { +2024-05-29T06:06:41.8703206Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:41.8703555Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:41.8703895Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8704492Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:41.8705089Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8705396Z ##[debug] }, +2024-05-29T06:06:41.8705638Z ##[debug] { +2024-05-29T06:06:41.8706001Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:41.8706350Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:41.8706683Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8707278Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:41.8707875Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8708194Z ##[debug] } +2024-05-29T06:06:41.8708427Z ##[debug] ] +2024-05-29T06:06:41.8708659Z ##[debug] } +2024-05-29T06:06:41.8708889Z ##[debug] }, +2024-05-29T06:06:41.8709117Z ##[debug] "workflow": { +2024-05-29T06:06:41.8709385Z ##[debug] "name": "👕", +2024-05-29T06:06:41.8709813Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:41.8710283Z ##[debug] }, +2024-05-29T06:06:41.8710508Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8710810Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:41.8711144Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8711451Z ##[debug] "workflow": { +2024-05-29T06:06:41.8711729Z ##[debug] "name": "👕", +2024-05-29T06:06:41.8712179Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:41.8712640Z ##[debug] } +2024-05-29T06:06:41.8712857Z ##[debug] } +2024-05-29T06:06:41.8713074Z ##[debug] }, +2024-05-29T06:06:41.8713288Z ##[debug] { +2024-05-29T06:06:41.8713503Z ##[debug] "checkRun": { +2024-05-29T06:06:41.8713800Z ##[debug] "databaseId": 25536411289, +2024-05-29T06:06:41.8714128Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:41.8714433Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8715022Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", +2024-05-29T06:06:41.8715622Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8716019Z ##[debug] }, +2024-05-29T06:06:41.8716256Z ##[debug] "checkSuite": { +2024-05-29T06:06:41.8716542Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8716862Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:41.8717182Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8717495Z ##[debug] "databaseId": 9281068678, +2024-05-29T06:06:41.8717830Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8718149Z ##[debug] "workflow": { +2024-05-29T06:06:41.8718438Z ##[debug] "name": "💧", +2024-05-29T06:06:41.8719026Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:41.8719515Z ##[debug] } +2024-05-29T06:06:41.8719747Z ##[debug] }, +2024-05-29T06:06:41.8719976Z ##[debug] "checkRuns": { +2024-05-29T06:06:41.8720370Z ##[debug] "totalCount": 1, +2024-05-29T06:06:41.8720668Z ##[debug] "pageInfo": { +2024-05-29T06:06:41.8720969Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:41.8721367Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpk=" +2024-05-29T06:06:41.8721751Z ##[debug] }, +2024-05-29T06:06:41.8721989Z ##[debug] "nodes": [ +2024-05-29T06:06:41.8722253Z ##[debug] { +2024-05-29T06:06:41.8722527Z ##[debug] "databaseId": 25536411289, +2024-05-29T06:06:41.8722883Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:41.8723215Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8723823Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", +2024-05-29T06:06:41.8724426Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8724747Z ##[debug] } +2024-05-29T06:06:41.8724981Z ##[debug] ] +2024-05-29T06:06:41.8725216Z ##[debug] } +2024-05-29T06:06:41.8725432Z ##[debug] }, +2024-05-29T06:06:41.8725660Z ##[debug] "workflow": { +2024-05-29T06:06:41.8726030Z ##[debug] "name": "💧", +2024-05-29T06:06:41.8726471Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:41.8726944Z ##[debug] }, +2024-05-29T06:06:41.8727174Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8727484Z ##[debug] "databaseId": 9281068678, +2024-05-29T06:06:41.8727813Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8728132Z ##[debug] "workflow": { +2024-05-29T06:06:41.8728402Z ##[debug] "name": "💧", +2024-05-29T06:06:41.8728861Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:41.8729338Z ##[debug] } +2024-05-29T06:06:41.8729563Z ##[debug] } +2024-05-29T06:06:41.8729775Z ##[debug] }, +2024-05-29T06:06:41.8729991Z ##[debug] { +2024-05-29T06:06:41.8730213Z ##[debug] "checkRun": { +2024-05-29T06:06:41.8730505Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:41.8730845Z ##[debug] "name": "intermediate", +2024-05-29T06:06:41.8731176Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:41.8731763Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:41.8732343Z ##[debug] "conclusion": null +2024-05-29T06:06:41.8732634Z ##[debug] }, +2024-05-29T06:06:41.8732857Z ##[debug] "checkSuite": { +2024-05-29T06:06:41.8733151Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:41.8733471Z ##[debug] "conclusion": null, +2024-05-29T06:06:41.8733770Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8734089Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:41.8734436Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8734755Z ##[debug] "workflow": { +2024-05-29T06:06:41.8735103Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:41.8735687Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:41.8736278Z ##[debug] } +2024-05-29T06:06:41.8736503Z ##[debug] }, +2024-05-29T06:06:41.8736739Z ##[debug] "checkRuns": { +2024-05-29T06:06:41.8737029Z ##[debug] "totalCount": 4, +2024-05-29T06:06:41.8737324Z ##[debug] "pageInfo": { +2024-05-29T06:06:41.8737628Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:41.8738036Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXNaM=" +2024-05-29T06:06:41.8738418Z ##[debug] }, +2024-05-29T06:06:41.8738658Z ##[debug] "nodes": [ +2024-05-29T06:06:41.8739035Z ##[debug] { +2024-05-29T06:06:41.8739310Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:41.8739674Z ##[debug] "name": "intermediate", +2024-05-29T06:06:41.8740032Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:41.8740758Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:41.8741353Z ##[debug] "conclusion": null +2024-05-29T06:06:41.8741660Z ##[debug] }, +2024-05-29T06:06:41.8741896Z ##[debug] { +2024-05-29T06:06:41.8742170Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:41.8742527Z ##[debug] "name": "wait-success", +2024-05-29T06:06:41.8742877Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:41.8743469Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:41.8744059Z ##[debug] "conclusion": null +2024-05-29T06:06:41.8744359Z ##[debug] }, +2024-05-29T06:06:41.8744592Z ##[debug] { +2024-05-29T06:06:41.8744858Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:41.8745233Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:41.8745615Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8746463Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:41.8747305Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8747625Z ##[debug] }, +2024-05-29T06:06:41.8747862Z ##[debug] { +2024-05-29T06:06:41.8748133Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:41.8748481Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:41.8748821Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:41.8749446Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:41.8750030Z ##[debug] "conclusion": null +2024-05-29T06:06:41.8750328Z ##[debug] } +2024-05-29T06:06:41.8750565Z ##[debug] ] +2024-05-29T06:06:41.8750797Z ##[debug] } +2024-05-29T06:06:41.8751019Z ##[debug] }, +2024-05-29T06:06:41.8751251Z ##[debug] "workflow": { +2024-05-29T06:06:41.8751580Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:41.8752139Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:41.8752635Z ##[debug] }, +2024-05-29T06:06:41.8752867Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8753164Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:41.8753502Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8753819Z ##[debug] "workflow": { +2024-05-29T06:06:41.8754152Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:41.8754716Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:41.8755211Z ##[debug] } +2024-05-29T06:06:41.8755432Z ##[debug] } +2024-05-29T06:06:41.8755644Z ##[debug] }, +2024-05-29T06:06:41.8755980Z ##[debug] { +2024-05-29T06:06:41.8756211Z ##[debug] "checkRun": { +2024-05-29T06:06:41.8756492Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:41.8756828Z ##[debug] "name": "wait-success", +2024-05-29T06:06:41.8757155Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:41.8757743Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:41.8758330Z ##[debug] "conclusion": null +2024-05-29T06:06:41.8758617Z ##[debug] }, +2024-05-29T06:06:41.8758842Z ##[debug] "checkSuite": { +2024-05-29T06:06:41.8759130Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:41.8759458Z ##[debug] "conclusion": null, +2024-05-29T06:06:41.8759900Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8760215Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:41.8760549Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8760866Z ##[debug] "workflow": { +2024-05-29T06:06:41.8761317Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:41.8761889Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:41.8762383Z ##[debug] } +2024-05-29T06:06:41.8762608Z ##[debug] }, +2024-05-29T06:06:41.8762843Z ##[debug] "checkRuns": { +2024-05-29T06:06:41.8763131Z ##[debug] "totalCount": 4, +2024-05-29T06:06:41.8763421Z ##[debug] "pageInfo": { +2024-05-29T06:06:41.8763720Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:41.8764124Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXNaM=" +2024-05-29T06:06:41.8764503Z ##[debug] }, +2024-05-29T06:06:41.8764736Z ##[debug] "nodes": [ +2024-05-29T06:06:41.8764994Z ##[debug] { +2024-05-29T06:06:41.8765263Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:41.8765623Z ##[debug] "name": "intermediate", +2024-05-29T06:06:41.8766088Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:41.8766705Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:41.8767298Z ##[debug] "conclusion": null +2024-05-29T06:06:41.8767600Z ##[debug] }, +2024-05-29T06:06:41.8767829Z ##[debug] { +2024-05-29T06:06:41.8768095Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:41.8768452Z ##[debug] "name": "wait-success", +2024-05-29T06:06:41.8768796Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:41.8769387Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:41.8769973Z ##[debug] "conclusion": null +2024-05-29T06:06:41.8770277Z ##[debug] }, +2024-05-29T06:06:41.8770507Z ##[debug] { +2024-05-29T06:06:41.8770777Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:41.8771152Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:41.8771532Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8772128Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:41.8772732Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8773049Z ##[debug] }, +2024-05-29T06:06:41.8773289Z ##[debug] { +2024-05-29T06:06:41.8773557Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:41.8773893Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:41.8774241Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:41.8774845Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:41.8775425Z ##[debug] "conclusion": null +2024-05-29T06:06:41.8775719Z ##[debug] } +2024-05-29T06:06:41.8776048Z ##[debug] ] +2024-05-29T06:06:41.8776282Z ##[debug] } +2024-05-29T06:06:41.8776497Z ##[debug] }, +2024-05-29T06:06:41.8776721Z ##[debug] "workflow": { +2024-05-29T06:06:41.8777051Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:41.8777606Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:41.8778098Z ##[debug] }, +2024-05-29T06:06:41.8778327Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8778617Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:41.8778955Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8779277Z ##[debug] "workflow": { +2024-05-29T06:06:41.8779612Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:41.8780285Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:41.8780783Z ##[debug] } +2024-05-29T06:06:41.8780996Z ##[debug] } +2024-05-29T06:06:41.8781203Z ##[debug] }, +2024-05-29T06:06:41.8781513Z ##[debug] { +2024-05-29T06:06:41.8781723Z ##[debug] "checkRun": { +2024-05-29T06:06:41.8782002Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:41.8782359Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:41.8782705Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8783277Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:41.8783859Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8784151Z ##[debug] }, +2024-05-29T06:06:41.8784372Z ##[debug] "checkSuite": { +2024-05-29T06:06:41.8784667Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:41.8784993Z ##[debug] "conclusion": null, +2024-05-29T06:06:41.8785295Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8785607Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:41.8786052Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8786369Z ##[debug] "workflow": { +2024-05-29T06:06:41.8786721Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:41.8787290Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:41.8787779Z ##[debug] } +2024-05-29T06:06:41.8788009Z ##[debug] }, +2024-05-29T06:06:41.8788243Z ##[debug] "checkRuns": { +2024-05-29T06:06:41.8788521Z ##[debug] "totalCount": 4, +2024-05-29T06:06:41.8788811Z ##[debug] "pageInfo": { +2024-05-29T06:06:41.8789102Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:41.8789497Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXNaM=" +2024-05-29T06:06:41.8789870Z ##[debug] }, +2024-05-29T06:06:41.8790108Z ##[debug] "nodes": [ +2024-05-29T06:06:41.8790361Z ##[debug] { +2024-05-29T06:06:41.8790626Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:41.8790979Z ##[debug] "name": "intermediate", +2024-05-29T06:06:41.8791338Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:41.8791934Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:41.8792518Z ##[debug] "conclusion": null +2024-05-29T06:06:41.8792822Z ##[debug] }, +2024-05-29T06:06:41.8793053Z ##[debug] { +2024-05-29T06:06:41.8793323Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:41.8793676Z ##[debug] "name": "wait-success", +2024-05-29T06:06:41.8794018Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:41.8794615Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:41.8795196Z ##[debug] "conclusion": null +2024-05-29T06:06:41.8795496Z ##[debug] }, +2024-05-29T06:06:41.8795726Z ##[debug] { +2024-05-29T06:06:41.8796085Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:41.8796466Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:41.8796837Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8797433Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:41.8798036Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8798353Z ##[debug] }, +2024-05-29T06:06:41.8798589Z ##[debug] { +2024-05-29T06:06:41.8798856Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:41.8799200Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:41.8799545Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:41.8800263Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:41.8800845Z ##[debug] "conclusion": null +2024-05-29T06:06:41.8801138Z ##[debug] } +2024-05-29T06:06:41.8801504Z ##[debug] ] +2024-05-29T06:06:41.8801729Z ##[debug] } +2024-05-29T06:06:41.8801943Z ##[debug] }, +2024-05-29T06:06:41.8802170Z ##[debug] "workflow": { +2024-05-29T06:06:41.8802495Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:41.8803044Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:41.8803530Z ##[debug] }, +2024-05-29T06:06:41.8803762Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8804059Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:41.8804391Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8804702Z ##[debug] "workflow": { +2024-05-29T06:06:41.8805035Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:41.8805593Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:41.8806181Z ##[debug] } +2024-05-29T06:06:41.8806395Z ##[debug] } +2024-05-29T06:06:41.8806620Z ##[debug] }, +2024-05-29T06:06:41.8806832Z ##[debug] { +2024-05-29T06:06:41.8807047Z ##[debug] "checkRun": { +2024-05-29T06:06:41.8807334Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:41.8807664Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:41.8807980Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:41.8808568Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:41.8809147Z ##[debug] "conclusion": null +2024-05-29T06:06:41.8809433Z ##[debug] }, +2024-05-29T06:06:41.8809656Z ##[debug] "checkSuite": { +2024-05-29T06:06:41.8809942Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:41.8810263Z ##[debug] "conclusion": null, +2024-05-29T06:06:41.8810561Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8810873Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:41.8811212Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8811533Z ##[debug] "workflow": { +2024-05-29T06:06:41.8811875Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:41.8812444Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:41.8812932Z ##[debug] } +2024-05-29T06:06:41.8813162Z ##[debug] }, +2024-05-29T06:06:41.8813396Z ##[debug] "checkRuns": { +2024-05-29T06:06:41.8813676Z ##[debug] "totalCount": 4, +2024-05-29T06:06:41.8813971Z ##[debug] "pageInfo": { +2024-05-29T06:06:41.8814270Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:41.8814670Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXNaM=" +2024-05-29T06:06:41.8815051Z ##[debug] }, +2024-05-29T06:06:41.8815289Z ##[debug] "nodes": [ +2024-05-29T06:06:41.8815544Z ##[debug] { +2024-05-29T06:06:41.8815907Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:41.8816268Z ##[debug] "name": "intermediate", +2024-05-29T06:06:41.8816629Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:41.8817225Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:41.8817809Z ##[debug] "conclusion": null +2024-05-29T06:06:41.8818113Z ##[debug] }, +2024-05-29T06:06:41.8818349Z ##[debug] { +2024-05-29T06:06:41.8818619Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:41.8818976Z ##[debug] "name": "wait-success", +2024-05-29T06:06:41.8819339Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:41.8820086Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:41.8820674Z ##[debug] "conclusion": null +2024-05-29T06:06:41.8820972Z ##[debug] }, +2024-05-29T06:06:41.8821201Z ##[debug] { +2024-05-29T06:06:41.8821466Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:41.8821950Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:41.8822326Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8822922Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:41.8823526Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8823840Z ##[debug] }, +2024-05-29T06:06:41.8824077Z ##[debug] { +2024-05-29T06:06:41.8824343Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:41.8824678Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:41.8825017Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:41.8825615Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:41.8826291Z ##[debug] "conclusion": null +2024-05-29T06:06:41.8826586Z ##[debug] } +2024-05-29T06:06:41.8826821Z ##[debug] ] +2024-05-29T06:06:41.8827049Z ##[debug] } +2024-05-29T06:06:41.8827261Z ##[debug] }, +2024-05-29T06:06:41.8827486Z ##[debug] "workflow": { +2024-05-29T06:06:41.8827809Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:41.8828357Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:41.8828845Z ##[debug] }, +2024-05-29T06:06:41.8829078Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8829373Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:41.8829704Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8830020Z ##[debug] "workflow": { +2024-05-29T06:06:41.8830360Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:41.8830916Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:41.8831404Z ##[debug] } +2024-05-29T06:06:41.8831627Z ##[debug] } +2024-05-29T06:06:41.8831842Z ##[debug] }, +2024-05-29T06:06:41.8832053Z ##[debug] { +2024-05-29T06:06:41.8832267Z ##[debug] "checkRun": { +2024-05-29T06:06:41.8832553Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:41.8832904Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:41.8833239Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8833823Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:41.8834421Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:41.8834724Z ##[debug] }, +2024-05-29T06:06:41.8834948Z ##[debug] "checkSuite": { +2024-05-29T06:06:41.8835239Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8835563Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:41.8835969Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8836278Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:41.8836620Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8836942Z ##[debug] "workflow": { +2024-05-29T06:06:41.8837247Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:41.8837770Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:41.8838267Z ##[debug] } +2024-05-29T06:06:41.8838498Z ##[debug] }, +2024-05-29T06:06:41.8838735Z ##[debug] "checkRuns": { +2024-05-29T06:06:41.8839020Z ##[debug] "totalCount": 4, +2024-05-29T06:06:41.8839321Z ##[debug] "pageInfo": { +2024-05-29T06:06:41.8839623Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:41.8840023Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:41.8840548Z ##[debug] }, +2024-05-29T06:06:41.8840798Z ##[debug] "nodes": [ +2024-05-29T06:06:41.8841054Z ##[debug] { +2024-05-29T06:06:41.8841326Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:41.8841693Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:41.8842173Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8842775Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:41.8843379Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:41.8843700Z ##[debug] }, +2024-05-29T06:06:41.8843937Z ##[debug] { +2024-05-29T06:06:41.8844208Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:41.8844552Z ##[debug] "name": "renovate", +2024-05-29T06:06:41.8844883Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8845480Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:41.8846175Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:41.8846490Z ##[debug] }, +2024-05-29T06:06:41.8846719Z ##[debug] { +2024-05-29T06:06:41.8846989Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:41.8847346Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:41.8847692Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8848275Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:41.8848867Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:41.8849174Z ##[debug] }, +2024-05-29T06:06:41.8849411Z ##[debug] { +2024-05-29T06:06:41.8849689Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:41.8850041Z ##[debug] "name": "dependabot", +2024-05-29T06:06:41.8850394Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8851000Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:41.8851608Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:41.8851923Z ##[debug] } +2024-05-29T06:06:41.8852158Z ##[debug] ] +2024-05-29T06:06:41.8852390Z ##[debug] } +2024-05-29T06:06:41.8852607Z ##[debug] }, +2024-05-29T06:06:41.8852834Z ##[debug] "workflow": { +2024-05-29T06:06:41.8853112Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:41.8853592Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:41.8854082Z ##[debug] }, +2024-05-29T06:06:41.8854314Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8854609Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:41.8854948Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8855262Z ##[debug] "workflow": { +2024-05-29T06:06:41.8855544Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:41.8856135Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:41.8856627Z ##[debug] } +2024-05-29T06:06:41.8856841Z ##[debug] } +2024-05-29T06:06:41.8857067Z ##[debug] }, +2024-05-29T06:06:41.8857281Z ##[debug] { +2024-05-29T06:06:41.8857494Z ##[debug] "checkRun": { +2024-05-29T06:06:41.8857780Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:41.8858106Z ##[debug] "name": "renovate", +2024-05-29T06:06:41.8858409Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8859000Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:41.8859602Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:41.8859902Z ##[debug] }, +2024-05-29T06:06:41.8860125Z ##[debug] "checkSuite": { +2024-05-29T06:06:41.8860407Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8860847Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:41.8861166Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8861477Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:41.8861819Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8862273Z ##[debug] "workflow": { +2024-05-29T06:06:41.8862563Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:41.8863064Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:41.8863552Z ##[debug] } +2024-05-29T06:06:41.8863780Z ##[debug] }, +2024-05-29T06:06:41.8864015Z ##[debug] "checkRuns": { +2024-05-29T06:06:41.8864295Z ##[debug] "totalCount": 4, +2024-05-29T06:06:41.8864592Z ##[debug] "pageInfo": { +2024-05-29T06:06:41.8865060Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:41.8865464Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:41.8865961Z ##[debug] }, +2024-05-29T06:06:41.8866204Z ##[debug] "nodes": [ +2024-05-29T06:06:41.8866459Z ##[debug] { +2024-05-29T06:06:41.8866731Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:41.8867102Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:41.8867477Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8868083Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:41.8868691Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:41.8869009Z ##[debug] }, +2024-05-29T06:06:41.8869248Z ##[debug] { +2024-05-29T06:06:41.8869514Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:41.8869856Z ##[debug] "name": "renovate", +2024-05-29T06:06:41.8870188Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8870779Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:41.8871377Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:41.8871689Z ##[debug] }, +2024-05-29T06:06:41.8871923Z ##[debug] { +2024-05-29T06:06:41.8872194Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:41.8872549Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:41.8872904Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8873489Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:41.8874080Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:41.8874389Z ##[debug] }, +2024-05-29T06:06:41.8874624Z ##[debug] { +2024-05-29T06:06:41.8874886Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:41.8875242Z ##[debug] "name": "dependabot", +2024-05-29T06:06:41.8875781Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8876630Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:41.8877359Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:41.8877683Z ##[debug] } +2024-05-29T06:06:41.8877929Z ##[debug] ] +2024-05-29T06:06:41.8878157Z ##[debug] } +2024-05-29T06:06:41.8878378Z ##[debug] }, +2024-05-29T06:06:41.8878631Z ##[debug] "workflow": { +2024-05-29T06:06:41.8878923Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:41.8879428Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:41.8879919Z ##[debug] }, +2024-05-29T06:06:41.8880154Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8880478Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:41.8880948Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8881359Z ##[debug] "workflow": { +2024-05-29T06:06:41.8881806Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:41.8882318Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:41.8882811Z ##[debug] } +2024-05-29T06:06:41.8883029Z ##[debug] } +2024-05-29T06:06:41.8883267Z ##[debug] }, +2024-05-29T06:06:41.8883706Z ##[debug] { +2024-05-29T06:06:41.8883932Z ##[debug] "checkRun": { +2024-05-29T06:06:41.8884348Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:41.8884825Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:41.8885263Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8886042Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:41.8886642Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:41.8886941Z ##[debug] }, +2024-05-29T06:06:41.8887167Z ##[debug] "checkSuite": { +2024-05-29T06:06:41.8887452Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8887782Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:41.8888092Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8888404Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:41.8888752Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8889066Z ##[debug] "workflow": { +2024-05-29T06:06:41.8889373Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:41.8889884Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:41.8890377Z ##[debug] } +2024-05-29T06:06:41.8890606Z ##[debug] }, +2024-05-29T06:06:41.8890843Z ##[debug] "checkRuns": { +2024-05-29T06:06:41.8891125Z ##[debug] "totalCount": 4, +2024-05-29T06:06:41.8891428Z ##[debug] "pageInfo": { +2024-05-29T06:06:41.8891731Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:41.8892127Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:41.8892518Z ##[debug] }, +2024-05-29T06:06:41.8892764Z ##[debug] "nodes": [ +2024-05-29T06:06:41.8893021Z ##[debug] { +2024-05-29T06:06:41.8893302Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:41.8893680Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:41.8894062Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8894668Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:41.8895279Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:41.8895602Z ##[debug] }, +2024-05-29T06:06:41.8895933Z ##[debug] { +2024-05-29T06:06:41.8896205Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:41.8896549Z ##[debug] "name": "renovate", +2024-05-29T06:06:41.8896883Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8897590Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:41.8898191Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:41.8898500Z ##[debug] }, +2024-05-29T06:06:41.8898737Z ##[debug] { +2024-05-29T06:06:41.8899003Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:41.8899367Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:41.8899718Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8900309Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:41.8900904Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:41.8901213Z ##[debug] }, +2024-05-29T06:06:41.8901481Z ##[debug] { +2024-05-29T06:06:41.8901750Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:41.8902093Z ##[debug] "name": "dependabot", +2024-05-29T06:06:41.8902438Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8903206Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:41.8903806Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:41.8904118Z ##[debug] } +2024-05-29T06:06:41.8904352Z ##[debug] ] +2024-05-29T06:06:41.8904686Z ##[debug] } +2024-05-29T06:06:41.8904910Z ##[debug] }, +2024-05-29T06:06:41.8905137Z ##[debug] "workflow": { +2024-05-29T06:06:41.8905411Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:41.8906001Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:41.8906492Z ##[debug] }, +2024-05-29T06:06:41.8906721Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8907017Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:41.8907352Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8907665Z ##[debug] "workflow": { +2024-05-29T06:06:41.8907940Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:41.8908447Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:41.8908940Z ##[debug] } +2024-05-29T06:06:41.8909155Z ##[debug] } +2024-05-29T06:06:41.8909370Z ##[debug] }, +2024-05-29T06:06:41.8909588Z ##[debug] { +2024-05-29T06:06:41.8909803Z ##[debug] "checkRun": { +2024-05-29T06:06:41.8910246Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:41.8910661Z ##[debug] "name": "dependabot", +2024-05-29T06:06:41.8910982Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8911576Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:41.8912169Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:41.8912467Z ##[debug] }, +2024-05-29T06:06:41.8912697Z ##[debug] "checkSuite": { +2024-05-29T06:06:41.8912986Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8913314Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:41.8913646Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8913956Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:41.8914296Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8914614Z ##[debug] "workflow": { +2024-05-29T06:06:41.8914909Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:41.8915409Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:41.8916001Z ##[debug] } +2024-05-29T06:06:41.8916231Z ##[debug] }, +2024-05-29T06:06:41.8916466Z ##[debug] "checkRuns": { +2024-05-29T06:06:41.8916748Z ##[debug] "totalCount": 4, +2024-05-29T06:06:41.8917046Z ##[debug] "pageInfo": { +2024-05-29T06:06:41.8917343Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:41.8917746Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:41.8918135Z ##[debug] }, +2024-05-29T06:06:41.8918381Z ##[debug] "nodes": [ +2024-05-29T06:06:41.8918639Z ##[debug] { +2024-05-29T06:06:41.8918915Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:41.8919290Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:41.8919655Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8920268Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:41.8920881Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:41.8921201Z ##[debug] }, +2024-05-29T06:06:41.8921435Z ##[debug] { +2024-05-29T06:06:41.8921706Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:41.8922055Z ##[debug] "name": "renovate", +2024-05-29T06:06:41.8922466Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8923297Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:41.8924152Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:41.8924574Z ##[debug] }, +2024-05-29T06:06:41.8924949Z ##[debug] { +2024-05-29T06:06:41.8925332Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:41.8925946Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:41.8926737Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8927465Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:41.8928175Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:41.8928670Z ##[debug] }, +2024-05-29T06:06:41.8928972Z ##[debug] { +2024-05-29T06:06:41.8929355Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:41.8929872Z ##[debug] "name": "dependabot", +2024-05-29T06:06:41.8930283Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8931006Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:41.8931760Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:41.8932136Z ##[debug] } +2024-05-29T06:06:41.8932487Z ##[debug] ] +2024-05-29T06:06:41.8932898Z ##[debug] } +2024-05-29T06:06:41.8933177Z ##[debug] }, +2024-05-29T06:06:41.8933514Z ##[debug] "workflow": { +2024-05-29T06:06:41.8940899Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:41.8941440Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:41.8941947Z ##[debug] }, +2024-05-29T06:06:41.8942189Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8942495Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:41.8942831Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8943148Z ##[debug] "workflow": { +2024-05-29T06:06:41.8943429Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:41.8943951Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:41.8944460Z ##[debug] } +2024-05-29T06:06:41.8944687Z ##[debug] } +2024-05-29T06:06:41.8944901Z ##[debug] }, +2024-05-29T06:06:41.8945112Z ##[debug] { +2024-05-29T06:06:41.8945341Z ##[debug] "checkRun": { +2024-05-29T06:06:41.8945626Z ##[debug] "databaseId": 25536411287, +2024-05-29T06:06:41.8946169Z ##[debug] "name": "echo", +2024-05-29T06:06:41.8946475Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8947068Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", +2024-05-29T06:06:41.8947667Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8947969Z ##[debug] }, +2024-05-29T06:06:41.8948195Z ##[debug] "checkSuite": { +2024-05-29T06:06:41.8948484Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8948817Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:41.8949139Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8949456Z ##[debug] "databaseId": 9281068684, +2024-05-29T06:06:41.8949803Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8950128Z ##[debug] "workflow": { +2024-05-29T06:06:41.8950446Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:41.8951006Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:41.8951510Z ##[debug] } +2024-05-29T06:06:41.8951736Z ##[debug] }, +2024-05-29T06:06:41.8951977Z ##[debug] "checkRuns": { +2024-05-29T06:06:41.8952266Z ##[debug] "totalCount": 1, +2024-05-29T06:06:41.8952562Z ##[debug] "pageInfo": { +2024-05-29T06:06:41.8952863Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:41.8953266Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpc=" +2024-05-29T06:06:41.8953647Z ##[debug] }, +2024-05-29T06:06:41.8953888Z ##[debug] "nodes": [ +2024-05-29T06:06:41.8954324Z ##[debug] { +2024-05-29T06:06:41.8954606Z ##[debug] "databaseId": 25536411287, +2024-05-29T06:06:41.8954951Z ##[debug] "name": "echo", +2024-05-29T06:06:41.8955280Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8956141Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", +2024-05-29T06:06:41.8956757Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8957075Z ##[debug] } +2024-05-29T06:06:41.8957311Z ##[debug] ] +2024-05-29T06:06:41.8957535Z ##[debug] } +2024-05-29T06:06:41.8957760Z ##[debug] }, +2024-05-29T06:06:41.8957986Z ##[debug] "workflow": { +2024-05-29T06:06:41.8958278Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:41.8958804Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:41.8959306Z ##[debug] }, +2024-05-29T06:06:41.8959537Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8959842Z ##[debug] "databaseId": 9281068684, +2024-05-29T06:06:41.8960176Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8960485Z ##[debug] "workflow": { +2024-05-29T06:06:41.8960788Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:41.8961325Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:41.8961814Z ##[debug] } +2024-05-29T06:06:41.8962032Z ##[debug] } +2024-05-29T06:06:41.8962250Z ##[debug] }, +2024-05-29T06:06:41.8962458Z ##[debug] { +2024-05-29T06:06:41.8962680Z ##[debug] "checkRun": { +2024-05-29T06:06:41.8962971Z ##[debug] "databaseId": 25536411604, +2024-05-29T06:06:41.8963288Z ##[debug] "name": "wait", +2024-05-29T06:06:41.8963579Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8964165Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", +2024-05-29T06:06:41.8964781Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8965105Z ##[debug] }, +2024-05-29T06:06:41.8965334Z ##[debug] "checkSuite": { +2024-05-29T06:06:41.8965620Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8966198Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:41.8966544Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8966862Z ##[debug] "databaseId": 9281068685, +2024-05-29T06:06:41.8967204Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8967537Z ##[debug] "workflow": { +2024-05-29T06:06:41.8967846Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:41.8968355Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:41.8968841Z ##[debug] } +2024-05-29T06:06:41.8969074Z ##[debug] }, +2024-05-29T06:06:41.8969304Z ##[debug] "checkRuns": { +2024-05-29T06:06:41.8969590Z ##[debug] "totalCount": 1, +2024-05-29T06:06:41.8969899Z ##[debug] "pageInfo": { +2024-05-29T06:06:41.8970195Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:41.8970600Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWt9Q=" +2024-05-29T06:06:41.8970986Z ##[debug] }, +2024-05-29T06:06:41.8971225Z ##[debug] "nodes": [ +2024-05-29T06:06:41.8971487Z ##[debug] { +2024-05-29T06:06:41.8971762Z ##[debug] "databaseId": 25536411604, +2024-05-29T06:06:41.8972099Z ##[debug] "name": "wait", +2024-05-29T06:06:41.8972429Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8973045Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", +2024-05-29T06:06:41.8973654Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8973967Z ##[debug] } +2024-05-29T06:06:41.8974195Z ##[debug] ] +2024-05-29T06:06:41.8974427Z ##[debug] } +2024-05-29T06:06:41.8974644Z ##[debug] }, +2024-05-29T06:06:41.8975052Z ##[debug] "workflow": { +2024-05-29T06:06:41.8975418Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:41.8976062Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:41.8976656Z ##[debug] }, +2024-05-29T06:06:41.8976884Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8977184Z ##[debug] "databaseId": 9281068685, +2024-05-29T06:06:41.8977509Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8977820Z ##[debug] "workflow": { +2024-05-29T06:06:41.8978116Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:41.8978612Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:41.8979098Z ##[debug] } +2024-05-29T06:06:41.8979332Z ##[debug] } +2024-05-29T06:06:41.8979548Z ##[debug] }, +2024-05-29T06:06:41.8979752Z ##[debug] { +2024-05-29T06:06:41.8979969Z ##[debug] "checkRun": { +2024-05-29T06:06:41.8980274Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:41.8980605Z ##[debug] "name": "default_logic", +2024-05-29T06:06:41.8980932Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8981523Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:41.8982117Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8982421Z ##[debug] }, +2024-05-29T06:06:41.8982651Z ##[debug] "checkSuite": { +2024-05-29T06:06:41.8982930Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8983251Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:41.8983564Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.8983872Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:41.8984214Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.8984541Z ##[debug] "workflow": { +2024-05-29T06:06:41.8984823Z ##[debug] "name": "Itself", +2024-05-29T06:06:41.8985297Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:41.8985769Z ##[debug] } +2024-05-29T06:06:41.8986101Z ##[debug] }, +2024-05-29T06:06:41.8986331Z ##[debug] "checkRuns": { +2024-05-29T06:06:41.8986624Z ##[debug] "totalCount": 7, +2024-05-29T06:06:41.8986920Z ##[debug] "pageInfo": { +2024-05-29T06:06:41.8987213Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:41.8987621Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:41.8988006Z ##[debug] }, +2024-05-29T06:06:41.8988241Z ##[debug] "nodes": [ +2024-05-29T06:06:41.8988501Z ##[debug] { +2024-05-29T06:06:41.8988776Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:41.8989133Z ##[debug] "name": "default_logic", +2024-05-29T06:06:41.8989487Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8990094Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:41.8990697Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8991017Z ##[debug] }, +2024-05-29T06:06:41.8991254Z ##[debug] { +2024-05-29T06:06:41.8991524Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:41.8991883Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:41.8992242Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8992841Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:41.8993436Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8993754Z ##[debug] }, +2024-05-29T06:06:41.8993989Z ##[debug] { +2024-05-29T06:06:41.8994253Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:41.8994663Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:41.8995215Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8995906Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:41.8996511Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8996945Z ##[debug] }, +2024-05-29T06:06:41.8997178Z ##[debug] { +2024-05-29T06:06:41.8997450Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:41.8997808Z ##[debug] "name": "skip-list", +2024-05-29T06:06:41.8998148Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.8998732Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:41.8999338Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.8999650Z ##[debug] }, +2024-05-29T06:06:41.8999886Z ##[debug] { +2024-05-29T06:06:41.9000159Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:41.9000600Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:41.9001038Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9001660Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:41.9002263Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9002576Z ##[debug] }, +2024-05-29T06:06:41.9002805Z ##[debug] { +2024-05-29T06:06:41.9003069Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:41.9003526Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:41.9003986Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9004584Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:41.9005190Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9005507Z ##[debug] }, +2024-05-29T06:06:41.9005746Z ##[debug] { +2024-05-29T06:06:41.9006261Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:41.9006608Z ##[debug] "name": "wait-list", +2024-05-29T06:06:41.9006952Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9007548Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:41.9008152Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9008460Z ##[debug] } +2024-05-29T06:06:41.9008697Z ##[debug] ] +2024-05-29T06:06:41.9008924Z ##[debug] } +2024-05-29T06:06:41.9009141Z ##[debug] }, +2024-05-29T06:06:41.9009368Z ##[debug] "workflow": { +2024-05-29T06:06:41.9009648Z ##[debug] "name": "Itself", +2024-05-29T06:06:41.9010103Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:41.9010570Z ##[debug] }, +2024-05-29T06:06:41.9010806Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.9011242Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:41.9011576Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.9011891Z ##[debug] "workflow": { +2024-05-29T06:06:41.9012170Z ##[debug] "name": "Itself", +2024-05-29T06:06:41.9012635Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:41.9013095Z ##[debug] } +2024-05-29T06:06:41.9013312Z ##[debug] } +2024-05-29T06:06:41.9013525Z ##[debug] }, +2024-05-29T06:06:41.9013734Z ##[debug] { +2024-05-29T06:06:41.9013949Z ##[debug] "checkRun": { +2024-05-29T06:06:41.9014235Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:41.9014575Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:41.9014900Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9015620Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:41.9016380Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9016680Z ##[debug] }, +2024-05-29T06:06:41.9016907Z ##[debug] "checkSuite": { +2024-05-29T06:06:41.9017196Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9017636Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:41.9017955Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.9018265Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:41.9018656Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.9018972Z ##[debug] "workflow": { +2024-05-29T06:06:41.9019264Z ##[debug] "name": "Itself", +2024-05-29T06:06:41.9019737Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:41.9020203Z ##[debug] } +2024-05-29T06:06:41.9020433Z ##[debug] }, +2024-05-29T06:06:41.9020668Z ##[debug] "checkRuns": { +2024-05-29T06:06:41.9020960Z ##[debug] "totalCount": 7, +2024-05-29T06:06:41.9021263Z ##[debug] "pageInfo": { +2024-05-29T06:06:41.9021563Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:41.9021962Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:41.9022349Z ##[debug] }, +2024-05-29T06:06:41.9022599Z ##[debug] "nodes": [ +2024-05-29T06:06:41.9022858Z ##[debug] { +2024-05-29T06:06:41.9023127Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:41.9023486Z ##[debug] "name": "default_logic", +2024-05-29T06:06:41.9023842Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9024442Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:41.9025052Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9025371Z ##[debug] }, +2024-05-29T06:06:41.9025604Z ##[debug] { +2024-05-29T06:06:41.9026008Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:41.9026367Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:41.9026705Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9027304Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:41.9027915Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9028229Z ##[debug] }, +2024-05-29T06:06:41.9028465Z ##[debug] { +2024-05-29T06:06:41.9028736Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:41.9029142Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:41.9029555Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9030142Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:41.9030740Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9031055Z ##[debug] }, +2024-05-29T06:06:41.9031293Z ##[debug] { +2024-05-29T06:06:41.9031560Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:41.9031902Z ##[debug] "name": "skip-list", +2024-05-29T06:06:41.9032243Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9032838Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:41.9033426Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9033734Z ##[debug] }, +2024-05-29T06:06:41.9033970Z ##[debug] { +2024-05-29T06:06:41.9034235Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:41.9034661Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:41.9035111Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9035921Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:41.9036535Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9036857Z ##[debug] }, +2024-05-29T06:06:41.9037092Z ##[debug] { +2024-05-29T06:06:41.9037355Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:41.9038021Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:41.9038491Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9039087Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:41.9039701Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9040020Z ##[debug] }, +2024-05-29T06:06:41.9040256Z ##[debug] { +2024-05-29T06:06:41.9040518Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:41.9040866Z ##[debug] "name": "wait-list", +2024-05-29T06:06:41.9041207Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9041805Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:41.9042412Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9042727Z ##[debug] } +2024-05-29T06:06:41.9042959Z ##[debug] ] +2024-05-29T06:06:41.9043182Z ##[debug] } +2024-05-29T06:06:41.9043400Z ##[debug] }, +2024-05-29T06:06:41.9043621Z ##[debug] "workflow": { +2024-05-29T06:06:41.9043896Z ##[debug] "name": "Itself", +2024-05-29T06:06:41.9044349Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:41.9044818Z ##[debug] }, +2024-05-29T06:06:41.9045044Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.9045343Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:41.9045676Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.9046083Z ##[debug] "workflow": { +2024-05-29T06:06:41.9046365Z ##[debug] "name": "Itself", +2024-05-29T06:06:41.9046824Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:41.9047280Z ##[debug] } +2024-05-29T06:06:41.9047494Z ##[debug] } +2024-05-29T06:06:41.9047705Z ##[debug] }, +2024-05-29T06:06:41.9047921Z ##[debug] { +2024-05-29T06:06:41.9048140Z ##[debug] "checkRun": { +2024-05-29T06:06:41.9048426Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:41.9048807Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:41.9049198Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9049781Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:41.9050364Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9050663Z ##[debug] }, +2024-05-29T06:06:41.9050890Z ##[debug] "checkSuite": { +2024-05-29T06:06:41.9051169Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9051500Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:41.9051816Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.9052117Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:41.9052458Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.9052779Z ##[debug] "workflow": { +2024-05-29T06:06:41.9053065Z ##[debug] "name": "Itself", +2024-05-29T06:06:41.9053527Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:41.9053997Z ##[debug] } +2024-05-29T06:06:41.9054226Z ##[debug] }, +2024-05-29T06:06:41.9054460Z ##[debug] "checkRuns": { +2024-05-29T06:06:41.9054747Z ##[debug] "totalCount": 7, +2024-05-29T06:06:41.9055038Z ##[debug] "pageInfo": { +2024-05-29T06:06:41.9055330Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:41.9055740Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:41.9056222Z ##[debug] }, +2024-05-29T06:06:41.9056595Z ##[debug] "nodes": [ +2024-05-29T06:06:41.9056863Z ##[debug] { +2024-05-29T06:06:41.9057136Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:41.9057493Z ##[debug] "name": "default_logic", +2024-05-29T06:06:41.9057977Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9058579Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:41.9059181Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9059502Z ##[debug] }, +2024-05-29T06:06:41.9059740Z ##[debug] { +2024-05-29T06:06:41.9060002Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:41.9060354Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:41.9060713Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9061322Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:41.9061922Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9062235Z ##[debug] }, +2024-05-29T06:06:41.9062472Z ##[debug] { +2024-05-29T06:06:41.9062732Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:41.9063144Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:41.9063554Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9064138Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:41.9064727Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9065037Z ##[debug] }, +2024-05-29T06:06:41.9065266Z ##[debug] { +2024-05-29T06:06:41.9065526Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:41.9065966Z ##[debug] "name": "skip-list", +2024-05-29T06:06:41.9066301Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9066884Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:41.9067487Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9067796Z ##[debug] }, +2024-05-29T06:06:41.9068030Z ##[debug] { +2024-05-29T06:06:41.9068297Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:41.9068728Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:41.9069164Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9069745Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:41.9070335Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9070653Z ##[debug] }, +2024-05-29T06:06:41.9070879Z ##[debug] { +2024-05-29T06:06:41.9071143Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:41.9071593Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:41.9072050Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9072641Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:41.9073240Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9073550Z ##[debug] }, +2024-05-29T06:06:41.9073781Z ##[debug] { +2024-05-29T06:06:41.9074043Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:41.9074387Z ##[debug] "name": "wait-list", +2024-05-29T06:06:41.9074721Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9075301Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:41.9075986Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9076293Z ##[debug] } +2024-05-29T06:06:41.9076660Z ##[debug] ] +2024-05-29T06:06:41.9076889Z ##[debug] } +2024-05-29T06:06:41.9077104Z ##[debug] }, +2024-05-29T06:06:41.9077331Z ##[debug] "workflow": { +2024-05-29T06:06:41.9077604Z ##[debug] "name": "Itself", +2024-05-29T06:06:41.9078158Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:41.9078621Z ##[debug] }, +2024-05-29T06:06:41.9078851Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.9079143Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:41.9079473Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.9079790Z ##[debug] "workflow": { +2024-05-29T06:06:41.9080064Z ##[debug] "name": "Itself", +2024-05-29T06:06:41.9080523Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:41.9080980Z ##[debug] } +2024-05-29T06:06:41.9081197Z ##[debug] } +2024-05-29T06:06:41.9081412Z ##[debug] }, +2024-05-29T06:06:41.9081633Z ##[debug] { +2024-05-29T06:06:41.9081849Z ##[debug] "checkRun": { +2024-05-29T06:06:41.9082133Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:41.9082460Z ##[debug] "name": "skip-list", +2024-05-29T06:06:41.9082770Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9083353Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:41.9083940Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9084240Z ##[debug] }, +2024-05-29T06:06:41.9084465Z ##[debug] "checkSuite": { +2024-05-29T06:06:41.9084747Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9085065Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:41.9085376Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.9085682Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:41.9086126Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.9086447Z ##[debug] "workflow": { +2024-05-29T06:06:41.9086731Z ##[debug] "name": "Itself", +2024-05-29T06:06:41.9087201Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:41.9087666Z ##[debug] } +2024-05-29T06:06:41.9087898Z ##[debug] }, +2024-05-29T06:06:41.9088131Z ##[debug] "checkRuns": { +2024-05-29T06:06:41.9088412Z ##[debug] "totalCount": 7, +2024-05-29T06:06:41.9088707Z ##[debug] "pageInfo": { +2024-05-29T06:06:41.9089002Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:41.9089397Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:41.9089778Z ##[debug] }, +2024-05-29T06:06:41.9089869Z ##[debug] "nodes": [ +2024-05-29T06:06:41.9089954Z ##[debug] { +2024-05-29T06:06:41.9090074Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:41.9090202Z ##[debug] "name": "default_logic", +2024-05-29T06:06:41.9090321Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9090689Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:41.9090810Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9090896Z ##[debug] }, +2024-05-29T06:06:41.9090978Z ##[debug] { +2024-05-29T06:06:41.9091101Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:41.9091219Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:41.9091331Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9091695Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:41.9091811Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9091900Z ##[debug] }, +2024-05-29T06:06:41.9091981Z ##[debug] { +2024-05-29T06:06:41.9092095Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:41.9092384Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:41.9092501Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9092857Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:41.9093072Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9093154Z ##[debug] }, +2024-05-29T06:06:41.9093239Z ##[debug] { +2024-05-29T06:06:41.9093353Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:41.9093460Z ##[debug] "name": "skip-list", +2024-05-29T06:06:41.9093577Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9093936Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:41.9094056Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9094137Z ##[debug] }, +2024-05-29T06:06:41.9094221Z ##[debug] { +2024-05-29T06:06:41.9094339Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:41.9094533Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:41.9094642Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9094999Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:41.9095109Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9095190Z ##[debug] }, +2024-05-29T06:06:41.9095276Z ##[debug] { +2024-05-29T06:06:41.9095390Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:41.9095614Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:41.9095727Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9096183Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:41.9096301Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9096384Z ##[debug] }, +2024-05-29T06:06:41.9096463Z ##[debug] { +2024-05-29T06:06:41.9096584Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:41.9096695Z ##[debug] "name": "wait-list", +2024-05-29T06:06:41.9096812Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9097156Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:41.9097270Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9097353Z ##[debug] } +2024-05-29T06:06:41.9097434Z ##[debug] ] +2024-05-29T06:06:41.9097515Z ##[debug] } +2024-05-29T06:06:41.9097600Z ##[debug] }, +2024-05-29T06:06:41.9097690Z ##[debug] "workflow": { +2024-05-29T06:06:41.9097784Z ##[debug] "name": "Itself", +2024-05-29T06:06:41.9098040Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:41.9098120Z ##[debug] }, +2024-05-29T06:06:41.9098215Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.9098319Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:41.9098427Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.9098525Z ##[debug] "workflow": { +2024-05-29T06:06:41.9098622Z ##[debug] "name": "Itself", +2024-05-29T06:06:41.9098876Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:41.9098961Z ##[debug] } +2024-05-29T06:06:41.9099041Z ##[debug] } +2024-05-29T06:06:41.9099121Z ##[debug] }, +2024-05-29T06:06:41.9099205Z ##[debug] { +2024-05-29T06:06:41.9099298Z ##[debug] "checkRun": { +2024-05-29T06:06:41.9099406Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:41.9099602Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:41.9099818Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9100199Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:41.9100303Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9100383Z ##[debug] }, +2024-05-29T06:06:41.9100579Z ##[debug] "checkSuite": { +2024-05-29T06:06:41.9100676Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9100780Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:41.9100878Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.9100991Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:41.9101101Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.9101198Z ##[debug] "workflow": { +2024-05-29T06:06:41.9101293Z ##[debug] "name": "Itself", +2024-05-29T06:06:41.9101589Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:41.9101672Z ##[debug] } +2024-05-29T06:06:41.9101757Z ##[debug] }, +2024-05-29T06:06:41.9101851Z ##[debug] "checkRuns": { +2024-05-29T06:06:41.9101947Z ##[debug] "totalCount": 7, +2024-05-29T06:06:41.9102039Z ##[debug] "pageInfo": { +2024-05-29T06:06:41.9102149Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:41.9102330Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:41.9102412Z ##[debug] }, +2024-05-29T06:06:41.9102503Z ##[debug] "nodes": [ +2024-05-29T06:06:41.9102585Z ##[debug] { +2024-05-29T06:06:41.9102708Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:41.9102826Z ##[debug] "name": "default_logic", +2024-05-29T06:06:41.9102942Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9103316Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:41.9103433Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9103520Z ##[debug] }, +2024-05-29T06:06:41.9103606Z ##[debug] { +2024-05-29T06:06:41.9103723Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:41.9103840Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:41.9103954Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9104314Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:41.9104432Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9104514Z ##[debug] }, +2024-05-29T06:06:41.9104593Z ##[debug] { +2024-05-29T06:06:41.9104709Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:41.9104875Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:41.9104987Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9105341Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:41.9105454Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9105539Z ##[debug] }, +2024-05-29T06:06:41.9105619Z ##[debug] { +2024-05-29T06:06:41.9105731Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:41.9105968Z ##[debug] "name": "skip-list", +2024-05-29T06:06:41.9106083Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9106444Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:41.9106565Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9106645Z ##[debug] }, +2024-05-29T06:06:41.9106731Z ##[debug] { +2024-05-29T06:06:41.9106845Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:41.9107038Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:41.9107152Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9107626Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:41.9107742Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9107826Z ##[debug] }, +2024-05-29T06:06:41.9108025Z ##[debug] { +2024-05-29T06:06:41.9108139Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:41.9108361Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:41.9108473Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9108828Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:41.9108940Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9109021Z ##[debug] }, +2024-05-29T06:06:41.9109104Z ##[debug] { +2024-05-29T06:06:41.9109216Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:41.9109325Z ##[debug] "name": "wait-list", +2024-05-29T06:06:41.9109439Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9109802Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:41.9109926Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9110007Z ##[debug] } +2024-05-29T06:06:41.9110088Z ##[debug] ] +2024-05-29T06:06:41.9110172Z ##[debug] } +2024-05-29T06:06:41.9110253Z ##[debug] }, +2024-05-29T06:06:41.9110344Z ##[debug] "workflow": { +2024-05-29T06:06:41.9110442Z ##[debug] "name": "Itself", +2024-05-29T06:06:41.9110693Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:41.9110775Z ##[debug] }, +2024-05-29T06:06:41.9110873Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.9110979Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:41.9111093Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.9111183Z ##[debug] "workflow": { +2024-05-29T06:06:41.9111278Z ##[debug] "name": "Itself", +2024-05-29T06:06:41.9111534Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:41.9111620Z ##[debug] } +2024-05-29T06:06:41.9111700Z ##[debug] } +2024-05-29T06:06:41.9111785Z ##[debug] }, +2024-05-29T06:06:41.9111864Z ##[debug] { +2024-05-29T06:06:41.9111954Z ##[debug] "checkRun": { +2024-05-29T06:06:41.9112065Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:41.9112278Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:41.9112379Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9112746Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:41.9112851Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9112934Z ##[debug] }, +2024-05-29T06:06:41.9113030Z ##[debug] "checkSuite": { +2024-05-29T06:06:41.9113133Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9113244Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:41.9113340Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.9113459Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:41.9113572Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.9113662Z ##[debug] "workflow": { +2024-05-29T06:06:41.9113761Z ##[debug] "name": "Itself", +2024-05-29T06:06:41.9114021Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:41.9114102Z ##[debug] } +2024-05-29T06:06:41.9114186Z ##[debug] }, +2024-05-29T06:06:41.9114278Z ##[debug] "checkRuns": { +2024-05-29T06:06:41.9114372Z ##[debug] "totalCount": 7, +2024-05-29T06:06:41.9114469Z ##[debug] "pageInfo": { +2024-05-29T06:06:41.9114577Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:41.9114841Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:41.9114932Z ##[debug] }, +2024-05-29T06:06:41.9115019Z ##[debug] "nodes": [ +2024-05-29T06:06:41.9115099Z ##[debug] { +2024-05-29T06:06:41.9115297Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:41.9115413Z ##[debug] "name": "default_logic", +2024-05-29T06:06:41.9115528Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9115990Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:41.9116107Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9116197Z ##[debug] }, +2024-05-29T06:06:41.9116277Z ##[debug] { +2024-05-29T06:06:41.9116393Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:41.9116512Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:41.9116631Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9116985Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:41.9117100Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9117189Z ##[debug] }, +2024-05-29T06:06:41.9117273Z ##[debug] { +2024-05-29T06:06:41.9117389Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:41.9117554Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:41.9117671Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9118019Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:41.9118131Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9118220Z ##[debug] }, +2024-05-29T06:06:41.9118300Z ##[debug] { +2024-05-29T06:06:41.9118417Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:41.9118528Z ##[debug] "name": "skip-list", +2024-05-29T06:06:41.9118641Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9119002Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:41.9119120Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9119202Z ##[debug] }, +2024-05-29T06:06:41.9119287Z ##[debug] { +2024-05-29T06:06:41.9119404Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:41.9119604Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:41.9119716Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9120061Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:41.9120179Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9120261Z ##[debug] }, +2024-05-29T06:06:41.9120347Z ##[debug] { +2024-05-29T06:06:41.9120465Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:41.9120683Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:41.9120802Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9121170Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:41.9121282Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9121368Z ##[debug] }, +2024-05-29T06:06:41.9121450Z ##[debug] { +2024-05-29T06:06:41.9121565Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:41.9121674Z ##[debug] "name": "wait-list", +2024-05-29T06:06:41.9121783Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9122260Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:41.9122379Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9122458Z ##[debug] } +2024-05-29T06:06:41.9122541Z ##[debug] ] +2024-05-29T06:06:41.9122621Z ##[debug] } +2024-05-29T06:06:41.9122701Z ##[debug] }, +2024-05-29T06:06:41.9122899Z ##[debug] "workflow": { +2024-05-29T06:06:41.9122993Z ##[debug] "name": "Itself", +2024-05-29T06:06:41.9123245Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:41.9123330Z ##[debug] }, +2024-05-29T06:06:41.9123424Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.9123531Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:41.9123641Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.9123733Z ##[debug] "workflow": { +2024-05-29T06:06:41.9123830Z ##[debug] "name": "Itself", +2024-05-29T06:06:41.9124083Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:41.9124169Z ##[debug] } +2024-05-29T06:06:41.9124255Z ##[debug] } +2024-05-29T06:06:41.9124335Z ##[debug] }, +2024-05-29T06:06:41.9124414Z ##[debug] { +2024-05-29T06:06:41.9124507Z ##[debug] "checkRun": { +2024-05-29T06:06:41.9124614Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:41.9124723Z ##[debug] "name": "wait-list", +2024-05-29T06:06:41.9124827Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9125187Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:41.9125297Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9125378Z ##[debug] }, +2024-05-29T06:06:41.9125470Z ##[debug] "checkSuite": { +2024-05-29T06:06:41.9125574Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9125678Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:41.9125772Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.9125992Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:41.9126100Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.9126192Z ##[debug] "workflow": { +2024-05-29T06:06:41.9126293Z ##[debug] "name": "Itself", +2024-05-29T06:06:41.9126548Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:41.9126636Z ##[debug] } +2024-05-29T06:06:41.9126721Z ##[debug] }, +2024-05-29T06:06:41.9126814Z ##[debug] "checkRuns": { +2024-05-29T06:06:41.9126915Z ##[debug] "totalCount": 7, +2024-05-29T06:06:41.9127008Z ##[debug] "pageInfo": { +2024-05-29T06:06:41.9127117Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:41.9127296Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:41.9127380Z ##[debug] }, +2024-05-29T06:06:41.9127468Z ##[debug] "nodes": [ +2024-05-29T06:06:41.9127554Z ##[debug] { +2024-05-29T06:06:41.9127675Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:41.9127791Z ##[debug] "name": "default_logic", +2024-05-29T06:06:41.9127907Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9128266Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:41.9128386Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9128468Z ##[debug] }, +2024-05-29T06:06:41.9128548Z ##[debug] { +2024-05-29T06:06:41.9128667Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:41.9128786Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:41.9128898Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9129249Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:41.9129365Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9129445Z ##[debug] }, +2024-05-29T06:06:41.9129647Z ##[debug] { +2024-05-29T06:06:41.9129765Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:41.9129935Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:41.9130045Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9130490Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:41.9130606Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9130686Z ##[debug] }, +2024-05-29T06:06:41.9130768Z ##[debug] { +2024-05-29T06:06:41.9130898Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:41.9131013Z ##[debug] "name": "skip-list", +2024-05-29T06:06:41.9131128Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9131480Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:41.9131598Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9131684Z ##[debug] }, +2024-05-29T06:06:41.9131764Z ##[debug] { +2024-05-29T06:06:41.9131878Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:41.9132085Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:41.9132196Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9132557Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:41.9132678Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9132758Z ##[debug] }, +2024-05-29T06:06:41.9132841Z ##[debug] { +2024-05-29T06:06:41.9132954Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:41.9133170Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:41.9133291Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9133641Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:41.9133757Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9133839Z ##[debug] }, +2024-05-29T06:06:41.9133925Z ##[debug] { +2024-05-29T06:06:41.9134046Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:41.9134152Z ##[debug] "name": "wait-list", +2024-05-29T06:06:41.9134264Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9134624Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:41.9134737Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9134819Z ##[debug] } +2024-05-29T06:06:41.9134904Z ##[debug] ] +2024-05-29T06:06:41.9134984Z ##[debug] } +2024-05-29T06:06:41.9135069Z ##[debug] }, +2024-05-29T06:06:41.9135163Z ##[debug] "workflow": { +2024-05-29T06:06:41.9135257Z ##[debug] "name": "Itself", +2024-05-29T06:06:41.9135518Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:41.9135599Z ##[debug] }, +2024-05-29T06:06:41.9135697Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.9135902Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:41.9136010Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.9136102Z ##[debug] "workflow": { +2024-05-29T06:06:41.9136200Z ##[debug] "name": "Itself", +2024-05-29T06:06:41.9136455Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:41.9136539Z ##[debug] } +2024-05-29T06:06:41.9136619Z ##[debug] } +2024-05-29T06:06:41.9136698Z ##[debug] }, +2024-05-29T06:06:41.9136782Z ##[debug] { +2024-05-29T06:06:41.9136871Z ##[debug] "checkRun": { +2024-05-29T06:06:41.9136976Z ##[debug] "databaseId": 25536411358, +2024-05-29T06:06:41.9137217Z ##[debug] "name": "dependency-review", +2024-05-29T06:06:41.9137321Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9137682Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", +2024-05-29T06:06:41.9137908Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9137988Z ##[debug] }, +2024-05-29T06:06:41.9138078Z ##[debug] "checkSuite": { +2024-05-29T06:06:41.9138181Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9138282Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:41.9138380Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.9138491Z ##[debug] "databaseId": 9281068690, +2024-05-29T06:06:41.9138596Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.9138689Z ##[debug] "workflow": { +2024-05-29T06:06:41.9138787Z ##[debug] "name": "💂➕", +2024-05-29T06:06:41.9139111Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:41.9139197Z ##[debug] } +2024-05-29T06:06:41.9139277Z ##[debug] }, +2024-05-29T06:06:41.9139369Z ##[debug] "checkRuns": { +2024-05-29T06:06:41.9139467Z ##[debug] "totalCount": 1, +2024-05-29T06:06:41.9139564Z ##[debug] "pageInfo": { +2024-05-29T06:06:41.9139672Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:41.9139848Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtt4=" +2024-05-29T06:06:41.9139929Z ##[debug] }, +2024-05-29T06:06:41.9140019Z ##[debug] "nodes": [ +2024-05-29T06:06:41.9140101Z ##[debug] { +2024-05-29T06:06:41.9140221Z ##[debug] "databaseId": 25536411358, +2024-05-29T06:06:41.9140355Z ##[debug] "name": "dependency-review", +2024-05-29T06:06:41.9140471Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:41.9140837Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", +2024-05-29T06:06:41.9140956Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:41.9141036Z ##[debug] } +2024-05-29T06:06:41.9141119Z ##[debug] ] +2024-05-29T06:06:41.9141197Z ##[debug] } +2024-05-29T06:06:41.9141280Z ##[debug] }, +2024-05-29T06:06:41.9141372Z ##[debug] "workflow": { +2024-05-29T06:06:41.9141463Z ##[debug] "name": "💂➕", +2024-05-29T06:06:41.9141769Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:41.9141853Z ##[debug] }, +2024-05-29T06:06:41.9141945Z ##[debug] "workflowRun": { +2024-05-29T06:06:41.9142051Z ##[debug] "databaseId": 9281068690, +2024-05-29T06:06:41.9142159Z ##[debug] "event": "pull_request", +2024-05-29T06:06:41.9142249Z ##[debug] "workflow": { +2024-05-29T06:06:41.9142341Z ##[debug] "name": "💂➕", +2024-05-29T06:06:41.9142659Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:41.9142741Z ##[debug] } +2024-05-29T06:06:41.9142824Z ##[debug] } +2024-05-29T06:06:41.9142903Z ##[debug] } +2024-05-29T06:06:41.9142982Z ##[debug] ], +2024-05-29T06:06:41.9143094Z ##[debug] "elapsedMsec": 5994.498936000047 +2024-05-29T06:06:41.9143178Z ##[debug]} +2024-05-29T06:06:41.9144448Z GH-820-graceperiod.yml(quickstarter-success): [suiteStatus: IN_PROGRESS][suiteConclusion: (null)][runStatus: COMPLETED][runConclusion: SUCCESS][eventName: pull_request][runURL: https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631] +2024-05-29T06:06:41.9145060Z ##[debug]{ +2024-05-29T06:06:41.9145154Z ##[debug] "label": "filtered", +2024-05-29T06:06:41.9145240Z ##[debug] "report": { +2024-05-29T06:06:41.9145346Z ##[debug] "progress": "in_progress", +2024-05-29T06:06:41.9145453Z ##[debug] "conclusion": "acceptable", +2024-05-29T06:06:41.9145540Z ##[debug] "summaries": [ +2024-05-29T06:06:41.9145624Z ##[debug] { +2024-05-29T06:06:41.9145925Z ##[debug] "acceptable": true, +2024-05-29T06:06:41.9146081Z ##[debug] "workflowPath": "GH-820-graceperiod.yml", +2024-05-29T06:06:41.9146195Z ##[debug] "isSameWorkflow": true, +2024-05-29T06:06:41.9146313Z ##[debug] "eventName": "pull_request", +2024-05-29T06:06:41.9146580Z ##[debug] "checkSuiteStatus": "IN_PROGRESS", +2024-05-29T06:06:41.9146706Z ##[debug] "checkSuiteConclusion": null, +2024-05-29T06:06:41.9146820Z ##[debug] "runDatabaseId": 25536443631, +2024-05-29T06:06:41.9146955Z ##[debug] "jobName": "quickstarter-success", +2024-05-29T06:06:41.9147325Z ##[debug] "checkRunUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:41.9147435Z ##[debug] "runStatus": "COMPLETED", +2024-05-29T06:06:41.9147549Z ##[debug] "runConclusion": "SUCCESS" +2024-05-29T06:06:41.9147629Z ##[debug] } +2024-05-29T06:06:41.9147713Z ##[debug] ] +2024-05-29T06:06:41.9147792Z ##[debug] } +2024-05-29T06:06:41.9147872Z ##[debug]} +2024-05-29T06:06:41.9147983Z some jobs still in progress +2024-05-29T06:06:41.9148268Z ::endgroup:: +2024-05-29T06:06:41.9148368Z ##[endgroup] +2024-05-29T06:06:41.9148569Z Wait about 5 seconds before next polling to reduce API calls. +2024-05-29T06:06:46.8489847Z ::group::Polling 3: 2024-05-29T06:06:46.848Z +2024-05-29T06:06:46.8490699Z ##[group]Polling 3: 2024-05-29T06:06:46.848Z +2024-05-29T06:06:47.2637809Z ##[debug]{ +2024-05-29T06:06:47.2638058Z ##[debug] "label": "rawdata", +2024-05-29T06:06:47.2638348Z ##[debug] "checks": [ +2024-05-29T06:06:47.2638593Z ##[debug] { +2024-05-29T06:06:47.2638821Z ##[debug] "checkRun": { +2024-05-29T06:06:47.2639117Z ##[debug] "databaseId": 25536410411, +2024-05-29T06:06:47.2639456Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:47.2639769Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2640392Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", +2024-05-29T06:06:47.2641026Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2641329Z ##[debug] }, +2024-05-29T06:06:47.2641568Z ##[debug] "checkSuite": { +2024-05-29T06:06:47.2641861Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2642197Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:47.2642526Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2642843Z ##[debug] "databaseId": 9281068413, +2024-05-29T06:06:47.2643177Z ##[debug] "event": "push", +2024-05-29T06:06:47.2643484Z ##[debug] "workflow": { +2024-05-29T06:06:47.2643800Z ##[debug] "name": "💧", +2024-05-29T06:06:47.2644303Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:47.2644797Z ##[debug] } +2024-05-29T06:06:47.2645035Z ##[debug] }, +2024-05-29T06:06:47.2645276Z ##[debug] "checkRuns": { +2024-05-29T06:06:47.2645561Z ##[debug] "totalCount": 1, +2024-05-29T06:06:47.2646057Z ##[debug] "pageInfo": { +2024-05-29T06:06:47.2646378Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:47.2646784Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWsys=" +2024-05-29T06:06:47.2647173Z ##[debug] }, +2024-05-29T06:06:47.2647425Z ##[debug] "nodes": [ +2024-05-29T06:06:47.2647682Z ##[debug] { +2024-05-29T06:06:47.2647960Z ##[debug] "databaseId": 25536410411, +2024-05-29T06:06:47.2648314Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:47.2648648Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2649264Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", +2024-05-29T06:06:47.2649894Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2650212Z ##[debug] } +2024-05-29T06:06:47.2650458Z ##[debug] ] +2024-05-29T06:06:47.2650695Z ##[debug] } +2024-05-29T06:06:47.2650916Z ##[debug] }, +2024-05-29T06:06:47.2651417Z ##[debug] "workflow": { +2024-05-29T06:06:47.2651705Z ##[debug] "name": "💧", +2024-05-29T06:06:47.2652155Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:47.2652639Z ##[debug] }, +2024-05-29T06:06:47.2653018Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2653325Z ##[debug] "databaseId": 9281068413, +2024-05-29T06:06:47.2653644Z ##[debug] "event": "push", +2024-05-29T06:06:47.2653932Z ##[debug] "workflow": { +2024-05-29T06:06:47.2654216Z ##[debug] "name": "💧", +2024-05-29T06:06:47.2654668Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:47.2655146Z ##[debug] } +2024-05-29T06:06:47.2655369Z ##[debug] } +2024-05-29T06:06:47.2655582Z ##[debug] }, +2024-05-29T06:06:47.2655989Z ##[debug] { +2024-05-29T06:06:47.2656227Z ##[debug] "checkRun": { +2024-05-29T06:06:47.2656513Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:47.2656848Z ##[debug] "name": "build", +2024-05-29T06:06:47.2657149Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2657736Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:47.2658347Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2658651Z ##[debug] }, +2024-05-29T06:06:47.2658879Z ##[debug] "checkSuite": { +2024-05-29T06:06:47.2659176Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2659516Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:47.2659834Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2660152Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:47.2660500Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.2660819Z ##[debug] "workflow": { +2024-05-29T06:06:47.2661126Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:47.2661606Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:47.2662066Z ##[debug] } +2024-05-29T06:06:47.2662298Z ##[debug] }, +2024-05-29T06:06:47.2662537Z ##[debug] "checkRuns": { +2024-05-29T06:06:47.2662823Z ##[debug] "totalCount": 3, +2024-05-29T06:06:47.2663123Z ##[debug] "pageInfo": { +2024-05-29T06:06:47.2663422Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:47.2663821Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:47.2664204Z ##[debug] }, +2024-05-29T06:06:47.2664444Z ##[debug] "nodes": [ +2024-05-29T06:06:47.2664706Z ##[debug] { +2024-05-29T06:06:47.2664980Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:47.2665324Z ##[debug] "name": "build", +2024-05-29T06:06:47.2665656Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2666450Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:47.2667064Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2667385Z ##[debug] }, +2024-05-29T06:06:47.2667620Z ##[debug] { +2024-05-29T06:06:47.2667894Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:47.2668386Z ##[debug] "name": "test", +2024-05-29T06:06:47.2668843Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2669546Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:47.2670284Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2670718Z ##[debug] }, +2024-05-29T06:06:47.2671052Z ##[debug] { +2024-05-29T06:06:47.2671447Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:47.2680358Z ##[debug] "name": "typecheck", +2024-05-29T06:06:47.2680772Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2681623Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:47.2682264Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2682595Z ##[debug] } +2024-05-29T06:06:47.2682848Z ##[debug] ] +2024-05-29T06:06:47.2683196Z ##[debug] } +2024-05-29T06:06:47.2683419Z ##[debug] }, +2024-05-29T06:06:47.2683655Z ##[debug] "workflow": { +2024-05-29T06:06:47.2683950Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:47.2684414Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:47.2684872Z ##[debug] }, +2024-05-29T06:06:47.2685113Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2685417Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:47.2685762Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.2686237Z ##[debug] "workflow": { +2024-05-29T06:06:47.2686534Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:47.2687012Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:47.2687501Z ##[debug] } +2024-05-29T06:06:47.2687908Z ##[debug] } +2024-05-29T06:06:47.2688234Z ##[debug] }, +2024-05-29T06:06:47.2688458Z ##[debug] { +2024-05-29T06:06:47.2688689Z ##[debug] "checkRun": { +2024-05-29T06:06:47.2688988Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:47.2689315Z ##[debug] "name": "test", +2024-05-29T06:06:47.2689608Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2690213Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:47.2690819Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2691136Z ##[debug] }, +2024-05-29T06:06:47.2691369Z ##[debug] "checkSuite": { +2024-05-29T06:06:47.2691664Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2691994Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:47.2692315Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2692632Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:47.2692982Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.2693302Z ##[debug] "workflow": { +2024-05-29T06:06:47.2693609Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:47.2694092Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:47.2694546Z ##[debug] } +2024-05-29T06:06:47.2694781Z ##[debug] }, +2024-05-29T06:06:47.2695027Z ##[debug] "checkRuns": { +2024-05-29T06:06:47.2695317Z ##[debug] "totalCount": 3, +2024-05-29T06:06:47.2695623Z ##[debug] "pageInfo": { +2024-05-29T06:06:47.2696048Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:47.2696455Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:47.2696849Z ##[debug] }, +2024-05-29T06:06:47.2697106Z ##[debug] "nodes": [ +2024-05-29T06:06:47.2697375Z ##[debug] { +2024-05-29T06:06:47.2697659Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:47.2698010Z ##[debug] "name": "build", +2024-05-29T06:06:47.2698343Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2698962Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:47.2699585Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2699908Z ##[debug] }, +2024-05-29T06:06:47.2700145Z ##[debug] { +2024-05-29T06:06:47.2700419Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:47.2700757Z ##[debug] "name": "test", +2024-05-29T06:06:47.2701083Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2701687Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:47.2702310Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2702772Z ##[debug] }, +2024-05-29T06:06:47.2703025Z ##[debug] { +2024-05-29T06:06:47.2703303Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:47.2703652Z ##[debug] "name": "typecheck", +2024-05-29T06:06:47.2704108Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2704722Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:47.2705322Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2705635Z ##[debug] } +2024-05-29T06:06:47.2706000Z ##[debug] ] +2024-05-29T06:06:47.2706236Z ##[debug] } +2024-05-29T06:06:47.2706457Z ##[debug] }, +2024-05-29T06:06:47.2706687Z ##[debug] "workflow": { +2024-05-29T06:06:47.2706974Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:47.2707431Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:47.2707895Z ##[debug] }, +2024-05-29T06:06:47.2708133Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2708435Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:47.2708774Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.2709095Z ##[debug] "workflow": { +2024-05-29T06:06:47.2709390Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:47.2709861Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:47.2710325Z ##[debug] } +2024-05-29T06:06:47.2710549Z ##[debug] } +2024-05-29T06:06:47.2710775Z ##[debug] }, +2024-05-29T06:06:47.2710995Z ##[debug] { +2024-05-29T06:06:47.2711218Z ##[debug] "checkRun": { +2024-05-29T06:06:47.2711518Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:47.2711872Z ##[debug] "name": "typecheck", +2024-05-29T06:06:47.2712183Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2712791Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:47.2713390Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2713697Z ##[debug] }, +2024-05-29T06:06:47.2713964Z ##[debug] "checkSuite": { +2024-05-29T06:06:47.2714253Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2714616Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:47.2714941Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2715258Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:47.2715598Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.2716019Z ##[debug] "workflow": { +2024-05-29T06:06:47.2716324Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:47.2716791Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:47.2717251Z ##[debug] } +2024-05-29T06:06:47.2717484Z ##[debug] }, +2024-05-29T06:06:47.2717717Z ##[debug] "checkRuns": { +2024-05-29T06:06:47.2718011Z ##[debug] "totalCount": 3, +2024-05-29T06:06:47.2718315Z ##[debug] "pageInfo": { +2024-05-29T06:06:47.2718610Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:47.2719019Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:47.2719412Z ##[debug] }, +2024-05-29T06:06:47.2719650Z ##[debug] "nodes": [ +2024-05-29T06:06:47.2719918Z ##[debug] { +2024-05-29T06:06:47.2720198Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:47.2720536Z ##[debug] "name": "build", +2024-05-29T06:06:47.2720871Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2721480Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:47.2722089Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2722408Z ##[debug] }, +2024-05-29T06:06:47.2722651Z ##[debug] { +2024-05-29T06:06:47.2723046Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:47.2723384Z ##[debug] "name": "test", +2024-05-29T06:06:47.2723712Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2724311Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:47.2725011Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2725334Z ##[debug] }, +2024-05-29T06:06:47.2725571Z ##[debug] { +2024-05-29T06:06:47.2725926Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:47.2726283Z ##[debug] "name": "typecheck", +2024-05-29T06:06:47.2726626Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2727212Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:47.2727800Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2728123Z ##[debug] } +2024-05-29T06:06:47.2728364Z ##[debug] ] +2024-05-29T06:06:47.2728594Z ##[debug] } +2024-05-29T06:06:47.2728824Z ##[debug] }, +2024-05-29T06:06:47.2729052Z ##[debug] "workflow": { +2024-05-29T06:06:47.2729335Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:47.2729802Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:47.2730262Z ##[debug] }, +2024-05-29T06:06:47.2730495Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2730797Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:47.2731134Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.2731450Z ##[debug] "workflow": { +2024-05-29T06:06:47.2731743Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:47.2732202Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:47.2732649Z ##[debug] } +2024-05-29T06:06:47.2732873Z ##[debug] } +2024-05-29T06:06:47.2733094Z ##[debug] }, +2024-05-29T06:06:47.2733309Z ##[debug] { +2024-05-29T06:06:47.2733532Z ##[debug] "checkRun": { +2024-05-29T06:06:47.2733825Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:47.2734149Z ##[debug] "name": "typos", +2024-05-29T06:06:47.2734446Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2735038Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:47.2735628Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2736027Z ##[debug] }, +2024-05-29T06:06:47.2736270Z ##[debug] "checkSuite": { +2024-05-29T06:06:47.2736564Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2736887Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:47.2737216Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2737545Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:47.2737889Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.2738218Z ##[debug] "workflow": { +2024-05-29T06:06:47.2738521Z ##[debug] "name": "👕", +2024-05-29T06:06:47.2738985Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:47.2739456Z ##[debug] } +2024-05-29T06:06:47.2739689Z ##[debug] }, +2024-05-29T06:06:47.2739929Z ##[debug] "checkRuns": { +2024-05-29T06:06:47.2740222Z ##[debug] "totalCount": 4, +2024-05-29T06:06:47.2740526Z ##[debug] "pageInfo": { +2024-05-29T06:06:47.2740824Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:47.2741234Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:47.2741628Z ##[debug] }, +2024-05-29T06:06:47.2741867Z ##[debug] "nodes": [ +2024-05-29T06:06:47.2742132Z ##[debug] { +2024-05-29T06:06:47.2742412Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:47.2742749Z ##[debug] "name": "typos", +2024-05-29T06:06:47.2743084Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2743822Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:47.2744438Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2744760Z ##[debug] }, +2024-05-29T06:06:47.2745136Z ##[debug] { +2024-05-29T06:06:47.2745408Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:47.2745745Z ##[debug] "name": "dprint", +2024-05-29T06:06:47.2746206Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2746804Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:47.2747398Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2747723Z ##[debug] }, +2024-05-29T06:06:47.2747965Z ##[debug] { +2024-05-29T06:06:47.2748227Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:47.2748586Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:47.2748928Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2749513Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:47.2750100Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2750425Z ##[debug] }, +2024-05-29T06:06:47.2750663Z ##[debug] { +2024-05-29T06:06:47.2750929Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:47.2751272Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:47.2751612Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2752203Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:47.2752811Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2753132Z ##[debug] } +2024-05-29T06:06:47.2753361Z ##[debug] ] +2024-05-29T06:06:47.2753592Z ##[debug] } +2024-05-29T06:06:47.2753820Z ##[debug] }, +2024-05-29T06:06:47.2754049Z ##[debug] "workflow": { +2024-05-29T06:06:47.2754331Z ##[debug] "name": "👕", +2024-05-29T06:06:47.2754767Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:47.2755232Z ##[debug] }, +2024-05-29T06:06:47.2755468Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2755770Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:47.2756199Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.2756509Z ##[debug] "workflow": { +2024-05-29T06:06:47.2756789Z ##[debug] "name": "👕", +2024-05-29T06:06:47.2757231Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:47.2757687Z ##[debug] } +2024-05-29T06:06:47.2757918Z ##[debug] } +2024-05-29T06:06:47.2758141Z ##[debug] }, +2024-05-29T06:06:47.2758354Z ##[debug] { +2024-05-29T06:06:47.2758578Z ##[debug] "checkRun": { +2024-05-29T06:06:47.2758883Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:47.2759209Z ##[debug] "name": "dprint", +2024-05-29T06:06:47.2759514Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2760109Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:47.2760706Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2761010Z ##[debug] }, +2024-05-29T06:06:47.2761243Z ##[debug] "checkSuite": { +2024-05-29T06:06:47.2761526Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2761855Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:47.2762175Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2762483Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:47.2762828Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.2763154Z ##[debug] "workflow": { +2024-05-29T06:06:47.2763437Z ##[debug] "name": "👕", +2024-05-29T06:06:47.2764032Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:47.2764505Z ##[debug] } +2024-05-29T06:06:47.2764738Z ##[debug] }, +2024-05-29T06:06:47.2764974Z ##[debug] "checkRuns": { +2024-05-29T06:06:47.2765370Z ##[debug] "totalCount": 4, +2024-05-29T06:06:47.2765672Z ##[debug] "pageInfo": { +2024-05-29T06:06:47.2766069Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:47.2766479Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:47.2766872Z ##[debug] }, +2024-05-29T06:06:47.2767114Z ##[debug] "nodes": [ +2024-05-29T06:06:47.2767383Z ##[debug] { +2024-05-29T06:06:47.2767662Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:47.2768000Z ##[debug] "name": "typos", +2024-05-29T06:06:47.2768350Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2768962Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:47.2769564Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2769896Z ##[debug] }, +2024-05-29T06:06:47.2770137Z ##[debug] { +2024-05-29T06:06:47.2770405Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:47.2770755Z ##[debug] "name": "dprint", +2024-05-29T06:06:47.2771091Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2771686Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:47.2772276Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2772596Z ##[debug] }, +2024-05-29T06:06:47.2772835Z ##[debug] { +2024-05-29T06:06:47.2773101Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:47.2773456Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:47.2773796Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2774381Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:47.2774993Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2775313Z ##[debug] }, +2024-05-29T06:06:47.2775550Z ##[debug] { +2024-05-29T06:06:47.2775919Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:47.2776266Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:47.2776600Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2777196Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:47.2777806Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2778126Z ##[debug] } +2024-05-29T06:06:47.2778356Z ##[debug] ] +2024-05-29T06:06:47.2778587Z ##[debug] } +2024-05-29T06:06:47.2778810Z ##[debug] }, +2024-05-29T06:06:47.2779040Z ##[debug] "workflow": { +2024-05-29T06:06:47.2779314Z ##[debug] "name": "👕", +2024-05-29T06:06:47.2779746Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:47.2780210Z ##[debug] }, +2024-05-29T06:06:47.2780446Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2780759Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:47.2781088Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.2781416Z ##[debug] "workflow": { +2024-05-29T06:06:47.2781702Z ##[debug] "name": "👕", +2024-05-29T06:06:47.2782145Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:47.2782616Z ##[debug] } +2024-05-29T06:06:47.2782839Z ##[debug] } +2024-05-29T06:06:47.2783057Z ##[debug] }, +2024-05-29T06:06:47.2783278Z ##[debug] { +2024-05-29T06:06:47.2783501Z ##[debug] "checkRun": { +2024-05-29T06:06:47.2783786Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:47.2784242Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:47.2784570Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2785186Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:47.2785992Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2786299Z ##[debug] }, +2024-05-29T06:06:47.2786531Z ##[debug] "checkSuite": { +2024-05-29T06:06:47.2786823Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2787151Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:47.2787471Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2787783Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:47.2788134Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.2788460Z ##[debug] "workflow": { +2024-05-29T06:06:47.2788746Z ##[debug] "name": "👕", +2024-05-29T06:06:47.2789208Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:47.2789679Z ##[debug] } +2024-05-29T06:06:47.2789906Z ##[debug] }, +2024-05-29T06:06:47.2790142Z ##[debug] "checkRuns": { +2024-05-29T06:06:47.2790438Z ##[debug] "totalCount": 4, +2024-05-29T06:06:47.2790734Z ##[debug] "pageInfo": { +2024-05-29T06:06:47.2791045Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:47.2791449Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:47.2791836Z ##[debug] }, +2024-05-29T06:06:47.2792078Z ##[debug] "nodes": [ +2024-05-29T06:06:47.2792344Z ##[debug] { +2024-05-29T06:06:47.2792618Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:47.2792964Z ##[debug] "name": "typos", +2024-05-29T06:06:47.2793296Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2793902Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:47.2794512Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2794838Z ##[debug] }, +2024-05-29T06:06:47.2795077Z ##[debug] { +2024-05-29T06:06:47.2795344Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:47.2795695Z ##[debug] "name": "dprint", +2024-05-29T06:06:47.2796126Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2796721Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:47.2797334Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2797661Z ##[debug] }, +2024-05-29T06:06:47.2797900Z ##[debug] { +2024-05-29T06:06:47.2798178Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:47.2798533Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:47.2798884Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2799478Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:47.2800085Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2800409Z ##[debug] }, +2024-05-29T06:06:47.2800644Z ##[debug] { +2024-05-29T06:06:47.2800920Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:47.2801273Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:47.2801609Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2802215Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:47.2802826Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2803143Z ##[debug] } +2024-05-29T06:06:47.2803382Z ##[debug] ] +2024-05-29T06:06:47.2803615Z ##[debug] } +2024-05-29T06:06:47.2803836Z ##[debug] }, +2024-05-29T06:06:47.2804068Z ##[debug] "workflow": { +2024-05-29T06:06:47.2804346Z ##[debug] "name": "👕", +2024-05-29T06:06:47.2804903Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:47.2805365Z ##[debug] }, +2024-05-29T06:06:47.2805599Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2806000Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:47.2806444Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.2806760Z ##[debug] "workflow": { +2024-05-29T06:06:47.2807038Z ##[debug] "name": "👕", +2024-05-29T06:06:47.2807479Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:47.2807944Z ##[debug] } +2024-05-29T06:06:47.2808168Z ##[debug] } +2024-05-29T06:06:47.2808386Z ##[debug] }, +2024-05-29T06:06:47.2808603Z ##[debug] { +2024-05-29T06:06:47.2808825Z ##[debug] "checkRun": { +2024-05-29T06:06:47.2809113Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:47.2809440Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:47.2809755Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2810340Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:47.2810940Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2811246Z ##[debug] }, +2024-05-29T06:06:47.2811484Z ##[debug] "checkSuite": { +2024-05-29T06:06:47.2811775Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2812102Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:47.2812421Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2812739Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:47.2813087Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.2813408Z ##[debug] "workflow": { +2024-05-29T06:06:47.2813702Z ##[debug] "name": "👕", +2024-05-29T06:06:47.2814186Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:47.2814656Z ##[debug] } +2024-05-29T06:06:47.2814891Z ##[debug] }, +2024-05-29T06:06:47.2815130Z ##[debug] "checkRuns": { +2024-05-29T06:06:47.2815422Z ##[debug] "totalCount": 4, +2024-05-29T06:06:47.2815718Z ##[debug] "pageInfo": { +2024-05-29T06:06:47.2816117Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:47.2816529Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:47.2816911Z ##[debug] }, +2024-05-29T06:06:47.2817156Z ##[debug] "nodes": [ +2024-05-29T06:06:47.2817420Z ##[debug] { +2024-05-29T06:06:47.2817692Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:47.2818039Z ##[debug] "name": "typos", +2024-05-29T06:06:47.2818375Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2818978Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:47.2819587Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2819917Z ##[debug] }, +2024-05-29T06:06:47.2820159Z ##[debug] { +2024-05-29T06:06:47.2820436Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:47.2820786Z ##[debug] "name": "dprint", +2024-05-29T06:06:47.2821120Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2821716Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:47.2822327Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2822651Z ##[debug] }, +2024-05-29T06:06:47.2822885Z ##[debug] { +2024-05-29T06:06:47.2823161Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:47.2823515Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:47.2823858Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2824456Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:47.2825178Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2825502Z ##[debug] }, +2024-05-29T06:06:47.2825740Z ##[debug] { +2024-05-29T06:06:47.2826109Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:47.2826456Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:47.2826921Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2827527Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:47.2828136Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2828453Z ##[debug] } +2024-05-29T06:06:47.2828688Z ##[debug] ] +2024-05-29T06:06:47.2828920Z ##[debug] } +2024-05-29T06:06:47.2829140Z ##[debug] }, +2024-05-29T06:06:47.2829375Z ##[debug] "workflow": { +2024-05-29T06:06:47.2829654Z ##[debug] "name": "👕", +2024-05-29T06:06:47.2830091Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:47.2830560Z ##[debug] }, +2024-05-29T06:06:47.2830798Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2831097Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:47.2831433Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.2831759Z ##[debug] "workflow": { +2024-05-29T06:06:47.2832033Z ##[debug] "name": "👕", +2024-05-29T06:06:47.2832476Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:47.2832937Z ##[debug] } +2024-05-29T06:06:47.2833158Z ##[debug] } +2024-05-29T06:06:47.2833381Z ##[debug] }, +2024-05-29T06:06:47.2833598Z ##[debug] { +2024-05-29T06:06:47.2833818Z ##[debug] "checkRun": { +2024-05-29T06:06:47.2834109Z ##[debug] "databaseId": 25536411289, +2024-05-29T06:06:47.2834436Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:47.2834741Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2835334Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", +2024-05-29T06:06:47.2836034Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2836340Z ##[debug] }, +2024-05-29T06:06:47.2836572Z ##[debug] "checkSuite": { +2024-05-29T06:06:47.2836872Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2837195Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:47.2837511Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2837824Z ##[debug] "databaseId": 9281068678, +2024-05-29T06:06:47.2838172Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.2838494Z ##[debug] "workflow": { +2024-05-29T06:06:47.2838786Z ##[debug] "name": "💧", +2024-05-29T06:06:47.2839259Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:47.2839737Z ##[debug] } +2024-05-29T06:06:47.2839972Z ##[debug] }, +2024-05-29T06:06:47.2840212Z ##[debug] "checkRuns": { +2024-05-29T06:06:47.2840504Z ##[debug] "totalCount": 1, +2024-05-29T06:06:47.2840809Z ##[debug] "pageInfo": { +2024-05-29T06:06:47.2841113Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:47.2841519Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpk=" +2024-05-29T06:06:47.2841918Z ##[debug] }, +2024-05-29T06:06:47.2842165Z ##[debug] "nodes": [ +2024-05-29T06:06:47.2842429Z ##[debug] { +2024-05-29T06:06:47.2842707Z ##[debug] "databaseId": 25536411289, +2024-05-29T06:06:47.2843063Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:47.2843403Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2844001Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", +2024-05-29T06:06:47.2844611Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2844934Z ##[debug] } +2024-05-29T06:06:47.2845170Z ##[debug] ] +2024-05-29T06:06:47.2845527Z ##[debug] } +2024-05-29T06:06:47.2845758Z ##[debug] }, +2024-05-29T06:06:47.2846084Z ##[debug] "workflow": { +2024-05-29T06:06:47.2846358Z ##[debug] "name": "💧", +2024-05-29T06:06:47.2846823Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:47.2847420Z ##[debug] }, +2024-05-29T06:06:47.2847662Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2847969Z ##[debug] "databaseId": 9281068678, +2024-05-29T06:06:47.2848295Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.2848619Z ##[debug] "workflow": { +2024-05-29T06:06:47.2848900Z ##[debug] "name": "💧", +2024-05-29T06:06:47.2849358Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:47.2849835Z ##[debug] } +2024-05-29T06:06:47.2850062Z ##[debug] } +2024-05-29T06:06:47.2850281Z ##[debug] }, +2024-05-29T06:06:47.2850499Z ##[debug] { +2024-05-29T06:06:47.2850737Z ##[debug] "checkRun": { +2024-05-29T06:06:47.2851024Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:47.2851364Z ##[debug] "name": "intermediate", +2024-05-29T06:06:47.2851697Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:47.2852292Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:47.2852885Z ##[debug] "conclusion": null +2024-05-29T06:06:47.2853179Z ##[debug] }, +2024-05-29T06:06:47.2853417Z ##[debug] "checkSuite": { +2024-05-29T06:06:47.2853711Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:47.2854039Z ##[debug] "conclusion": null, +2024-05-29T06:06:47.2854359Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2854670Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:47.2855023Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.2855356Z ##[debug] "workflow": { +2024-05-29T06:06:47.2855711Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:47.2856399Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:47.2856904Z ##[debug] } +2024-05-29T06:06:47.2857134Z ##[debug] }, +2024-05-29T06:06:47.2857381Z ##[debug] "checkRuns": { +2024-05-29T06:06:47.2857677Z ##[debug] "totalCount": 4, +2024-05-29T06:06:47.2857975Z ##[debug] "pageInfo": { +2024-05-29T06:06:47.2858283Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:47.2858698Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXNaM=" +2024-05-29T06:06:47.2859094Z ##[debug] }, +2024-05-29T06:06:47.2859332Z ##[debug] "nodes": [ +2024-05-29T06:06:47.2859603Z ##[debug] { +2024-05-29T06:06:47.2859886Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:47.2860250Z ##[debug] "name": "intermediate", +2024-05-29T06:06:47.2860618Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:47.2861269Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:47.2861875Z ##[debug] "conclusion": null +2024-05-29T06:06:47.2862192Z ##[debug] }, +2024-05-29T06:06:47.2862438Z ##[debug] { +2024-05-29T06:06:47.2862709Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:47.2863076Z ##[debug] "name": "wait-success", +2024-05-29T06:06:47.2863436Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:47.2864040Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:47.2864639Z ##[debug] "conclusion": null +2024-05-29T06:06:47.2864952Z ##[debug] }, +2024-05-29T06:06:47.2865195Z ##[debug] { +2024-05-29T06:06:47.2865463Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:47.2865942Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:47.2866452Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2867054Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:47.2867676Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2868104Z ##[debug] }, +2024-05-29T06:06:47.2868341Z ##[debug] { +2024-05-29T06:06:47.2868615Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:47.2868968Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:47.2869312Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:47.2869918Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:47.2870517Z ##[debug] "conclusion": null +2024-05-29T06:06:47.2870821Z ##[debug] } +2024-05-29T06:06:47.2871053Z ##[debug] ] +2024-05-29T06:06:47.2871315Z ##[debug] } +2024-05-29T06:06:47.2871548Z ##[debug] }, +2024-05-29T06:06:47.2871777Z ##[debug] "workflow": { +2024-05-29T06:06:47.2872110Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:47.2872678Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:47.2873180Z ##[debug] }, +2024-05-29T06:06:47.2873417Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2873723Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:47.2874060Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.2874379Z ##[debug] "workflow": { +2024-05-29T06:06:47.2874723Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:47.2875288Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:47.2875891Z ##[debug] } +2024-05-29T06:06:47.2876119Z ##[debug] } +2024-05-29T06:06:47.2876335Z ##[debug] }, +2024-05-29T06:06:47.2876556Z ##[debug] { +2024-05-29T06:06:47.2876791Z ##[debug] "checkRun": { +2024-05-29T06:06:47.2877079Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:47.2877418Z ##[debug] "name": "wait-success", +2024-05-29T06:06:47.2877749Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:47.2878350Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:47.2878937Z ##[debug] "conclusion": null +2024-05-29T06:06:47.2879232Z ##[debug] }, +2024-05-29T06:06:47.2879469Z ##[debug] "checkSuite": { +2024-05-29T06:06:47.2879757Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:47.2880087Z ##[debug] "conclusion": null, +2024-05-29T06:06:47.2880399Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2880712Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:47.2881063Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.2881393Z ##[debug] "workflow": { +2024-05-29T06:06:47.2881749Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:47.2882362Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:47.2882866Z ##[debug] } +2024-05-29T06:06:47.2883098Z ##[debug] }, +2024-05-29T06:06:47.2883345Z ##[debug] "checkRuns": { +2024-05-29T06:06:47.2883638Z ##[debug] "totalCount": 4, +2024-05-29T06:06:47.2883938Z ##[debug] "pageInfo": { +2024-05-29T06:06:47.2884244Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:47.2884654Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXNaM=" +2024-05-29T06:06:47.2885069Z ##[debug] }, +2024-05-29T06:06:47.2885312Z ##[debug] "nodes": [ +2024-05-29T06:06:47.2885579Z ##[debug] { +2024-05-29T06:06:47.2885947Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:47.2886311Z ##[debug] "name": "intermediate", +2024-05-29T06:06:47.2886796Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:47.2887423Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:47.2888019Z ##[debug] "conclusion": null +2024-05-29T06:06:47.2888328Z ##[debug] }, +2024-05-29T06:06:47.2888679Z ##[debug] { +2024-05-29T06:06:47.2888949Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:47.2889313Z ##[debug] "name": "wait-success", +2024-05-29T06:06:47.2889670Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:47.2890276Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:47.2890867Z ##[debug] "conclusion": null +2024-05-29T06:06:47.2891172Z ##[debug] }, +2024-05-29T06:06:47.2891413Z ##[debug] { +2024-05-29T06:06:47.2891678Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:47.2892065Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:47.2892452Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2893051Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:47.2893673Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2893997Z ##[debug] }, +2024-05-29T06:06:47.2894232Z ##[debug] { +2024-05-29T06:06:47.2894511Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:47.2894866Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:47.2895214Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:47.2895924Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:47.2896533Z ##[debug] "conclusion": null +2024-05-29T06:06:47.2896839Z ##[debug] } +2024-05-29T06:06:47.2897074Z ##[debug] ] +2024-05-29T06:06:47.2897311Z ##[debug] } +2024-05-29T06:06:47.2897536Z ##[debug] }, +2024-05-29T06:06:47.2897766Z ##[debug] "workflow": { +2024-05-29T06:06:47.2898099Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:47.2898663Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:47.2899165Z ##[debug] }, +2024-05-29T06:06:47.2899405Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2899714Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:47.2900049Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.2900368Z ##[debug] "workflow": { +2024-05-29T06:06:47.2900710Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:47.2901269Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:47.2901767Z ##[debug] } +2024-05-29T06:06:47.2901993Z ##[debug] } +2024-05-29T06:06:47.2902210Z ##[debug] }, +2024-05-29T06:06:47.2902431Z ##[debug] { +2024-05-29T06:06:47.2902658Z ##[debug] "checkRun": { +2024-05-29T06:06:47.2902943Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:47.2903311Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:47.2903673Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2904270Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:47.2904860Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2905166Z ##[debug] }, +2024-05-29T06:06:47.2905404Z ##[debug] "checkSuite": { +2024-05-29T06:06:47.2905696Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:47.2906114Z ##[debug] "conclusion": null, +2024-05-29T06:06:47.2906425Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2906737Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:47.2907086Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.2907535Z ##[debug] "workflow": { +2024-05-29T06:06:47.2907892Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:47.2908466Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:47.2908965Z ##[debug] } +2024-05-29T06:06:47.2909316Z ##[debug] }, +2024-05-29T06:06:47.2909559Z ##[debug] "checkRuns": { +2024-05-29T06:06:47.2909853Z ##[debug] "totalCount": 4, +2024-05-29T06:06:47.2910149Z ##[debug] "pageInfo": { +2024-05-29T06:06:47.2910459Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:47.2910866Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXNaM=" +2024-05-29T06:06:47.2911255Z ##[debug] }, +2024-05-29T06:06:47.2911498Z ##[debug] "nodes": [ +2024-05-29T06:06:47.2911767Z ##[debug] { +2024-05-29T06:06:47.2912044Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:47.2912404Z ##[debug] "name": "intermediate", +2024-05-29T06:06:47.2912770Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:47.2913386Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:47.2914011Z ##[debug] "conclusion": null +2024-05-29T06:06:47.2914325Z ##[debug] }, +2024-05-29T06:06:47.2914570Z ##[debug] { +2024-05-29T06:06:47.2914837Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:47.2915199Z ##[debug] "name": "wait-success", +2024-05-29T06:06:47.2915559Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:47.2916256Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:47.2916848Z ##[debug] "conclusion": null +2024-05-29T06:06:47.2917149Z ##[debug] }, +2024-05-29T06:06:47.2917385Z ##[debug] { +2024-05-29T06:06:47.2917652Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:47.2918033Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:47.2918410Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2919001Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:47.2919610Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2919924Z ##[debug] }, +2024-05-29T06:06:47.2920160Z ##[debug] { +2024-05-29T06:06:47.2920425Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:47.2920766Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:47.2921110Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:47.2921714Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:47.2922319Z ##[debug] "conclusion": null +2024-05-29T06:06:47.2922621Z ##[debug] } +2024-05-29T06:06:47.2922858Z ##[debug] ] +2024-05-29T06:06:47.2923089Z ##[debug] } +2024-05-29T06:06:47.2923314Z ##[debug] }, +2024-05-29T06:06:47.2923541Z ##[debug] "workflow": { +2024-05-29T06:06:47.2923871Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:47.2924441Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:47.2924933Z ##[debug] }, +2024-05-29T06:06:47.2925169Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2925471Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:47.2925895Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.2926217Z ##[debug] "workflow": { +2024-05-29T06:06:47.2926557Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:47.2927117Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:47.2927615Z ##[debug] } +2024-05-29T06:06:47.2927838Z ##[debug] } +2024-05-29T06:06:47.2928173Z ##[debug] }, +2024-05-29T06:06:47.2928394Z ##[debug] { +2024-05-29T06:06:47.2928618Z ##[debug] "checkRun": { +2024-05-29T06:06:47.2928904Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:47.2929236Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:47.2929662Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:47.2930265Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:47.2930848Z ##[debug] "conclusion": null +2024-05-29T06:06:47.2931139Z ##[debug] }, +2024-05-29T06:06:47.2931371Z ##[debug] "checkSuite": { +2024-05-29T06:06:47.2931660Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:47.2931982Z ##[debug] "conclusion": null, +2024-05-29T06:06:47.2932290Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2932599Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:47.2932947Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.2933277Z ##[debug] "workflow": { +2024-05-29T06:06:47.2933622Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:47.2934193Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:47.2934697Z ##[debug] } +2024-05-29T06:06:47.2934927Z ##[debug] }, +2024-05-29T06:06:47.2935169Z ##[debug] "checkRuns": { +2024-05-29T06:06:47.2935462Z ##[debug] "totalCount": 4, +2024-05-29T06:06:47.2935760Z ##[debug] "pageInfo": { +2024-05-29T06:06:47.2936163Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:47.2936566Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXNaM=" +2024-05-29T06:06:47.2936948Z ##[debug] }, +2024-05-29T06:06:47.2937190Z ##[debug] "nodes": [ +2024-05-29T06:06:47.2937455Z ##[debug] { +2024-05-29T06:06:47.2937726Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:47.2938093Z ##[debug] "name": "intermediate", +2024-05-29T06:06:47.2938455Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:47.2939068Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:47.2939659Z ##[debug] "conclusion": null +2024-05-29T06:06:47.2939976Z ##[debug] }, +2024-05-29T06:06:47.2940229Z ##[debug] { +2024-05-29T06:06:47.2940495Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:47.2940861Z ##[debug] "name": "wait-success", +2024-05-29T06:06:47.2941230Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:47.2941833Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:47.2942421Z ##[debug] "conclusion": null +2024-05-29T06:06:47.2942725Z ##[debug] }, +2024-05-29T06:06:47.2942981Z ##[debug] { +2024-05-29T06:06:47.2943275Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:47.2943657Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:47.2944042Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2944639Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:47.2945255Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.2945578Z ##[debug] }, +2024-05-29T06:06:47.2946006Z ##[debug] { +2024-05-29T06:06:47.2946299Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:47.2946646Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:47.2946989Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:47.2947591Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:47.2948184Z ##[debug] "conclusion": null +2024-05-29T06:06:47.2948484Z ##[debug] } +2024-05-29T06:06:47.2948982Z ##[debug] ] +2024-05-29T06:06:47.2949232Z ##[debug] } +2024-05-29T06:06:47.2949454Z ##[debug] }, +2024-05-29T06:06:47.2949680Z ##[debug] "workflow": { +2024-05-29T06:06:47.2950013Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:47.2950690Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:47.2951180Z ##[debug] }, +2024-05-29T06:06:47.2951414Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2951717Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:47.2952053Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.2952374Z ##[debug] "workflow": { +2024-05-29T06:06:47.2952718Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:47.2953272Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:47.2953761Z ##[debug] } +2024-05-29T06:06:47.2953989Z ##[debug] } +2024-05-29T06:06:47.2954206Z ##[debug] }, +2024-05-29T06:06:47.2954421Z ##[debug] { +2024-05-29T06:06:47.2954644Z ##[debug] "checkRun": { +2024-05-29T06:06:47.2954931Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:47.2955330Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:47.2955902Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2956564Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:47.2957362Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:47.2971860Z ##[debug] }, +2024-05-29T06:06:47.2972190Z ##[debug] "checkSuite": { +2024-05-29T06:06:47.2972500Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2972841Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:47.2973166Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2973480Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:47.2973842Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.2974193Z ##[debug] "workflow": { +2024-05-29T06:06:47.2974519Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:47.2975053Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:47.2975588Z ##[debug] } +2024-05-29T06:06:47.2975964Z ##[debug] }, +2024-05-29T06:06:47.2976208Z ##[debug] "checkRuns": { +2024-05-29T06:06:47.2976505Z ##[debug] "totalCount": 4, +2024-05-29T06:06:47.2976816Z ##[debug] "pageInfo": { +2024-05-29T06:06:47.2977123Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:47.2977544Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:47.2977941Z ##[debug] }, +2024-05-29T06:06:47.2978182Z ##[debug] "nodes": [ +2024-05-29T06:06:47.2978439Z ##[debug] { +2024-05-29T06:06:47.2978711Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:47.2979088Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:47.2979451Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2980066Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:47.2980683Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:47.2980999Z ##[debug] }, +2024-05-29T06:06:47.2981234Z ##[debug] { +2024-05-29T06:06:47.2981503Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:47.2981847Z ##[debug] "name": "renovate", +2024-05-29T06:06:47.2982188Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2982792Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:47.2983391Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:47.2983703Z ##[debug] }, +2024-05-29T06:06:47.2983948Z ##[debug] { +2024-05-29T06:06:47.2984393Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:47.2984759Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:47.2985127Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2985716Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:47.2986536Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:47.2986863Z ##[debug] }, +2024-05-29T06:06:47.2987105Z ##[debug] { +2024-05-29T06:06:47.2987371Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:47.2987733Z ##[debug] "name": "dependabot", +2024-05-29T06:06:47.2988086Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2988668Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:47.2989267Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:47.2989591Z ##[debug] } +2024-05-29T06:06:47.2989833Z ##[debug] ] +2024-05-29T06:06:47.2990070Z ##[debug] } +2024-05-29T06:06:47.2990294Z ##[debug] }, +2024-05-29T06:06:47.2990523Z ##[debug] "workflow": { +2024-05-29T06:06:47.2990802Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:47.2991304Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:47.2991800Z ##[debug] }, +2024-05-29T06:06:47.2992029Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2992331Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:47.2992667Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.2992977Z ##[debug] "workflow": { +2024-05-29T06:06:47.2993259Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:47.2993754Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:47.2994249Z ##[debug] } +2024-05-29T06:06:47.2994473Z ##[debug] } +2024-05-29T06:06:47.2994702Z ##[debug] }, +2024-05-29T06:06:47.2994913Z ##[debug] { +2024-05-29T06:06:47.2995138Z ##[debug] "checkRun": { +2024-05-29T06:06:47.2995429Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:47.2995753Z ##[debug] "name": "renovate", +2024-05-29T06:06:47.2996186Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2996775Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:47.2997373Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:47.2997675Z ##[debug] }, +2024-05-29T06:06:47.2997910Z ##[debug] "checkSuite": { +2024-05-29T06:06:47.2998201Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.2998523Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:47.2998844Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.2999159Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:47.2999505Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.2999833Z ##[debug] "workflow": { +2024-05-29T06:06:47.3000130Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:47.3000634Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:47.3001137Z ##[debug] } +2024-05-29T06:06:47.3001370Z ##[debug] }, +2024-05-29T06:06:47.3001604Z ##[debug] "checkRuns": { +2024-05-29T06:06:47.3001893Z ##[debug] "totalCount": 4, +2024-05-29T06:06:47.3002193Z ##[debug] "pageInfo": { +2024-05-29T06:06:47.3002494Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:47.3002903Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:47.3003293Z ##[debug] }, +2024-05-29T06:06:47.3003528Z ##[debug] "nodes": [ +2024-05-29T06:06:47.3003788Z ##[debug] { +2024-05-29T06:06:47.3004064Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:47.3004433Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:47.3004931Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3005550Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:47.3006261Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:47.3006712Z ##[debug] }, +2024-05-29T06:06:47.3006969Z ##[debug] { +2024-05-29T06:06:47.3007249Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:47.3007601Z ##[debug] "name": "renovate", +2024-05-29T06:06:47.3007955Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3008568Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:47.3009177Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:47.3009503Z ##[debug] }, +2024-05-29T06:06:47.3009745Z ##[debug] { +2024-05-29T06:06:47.3010024Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:47.3010392Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:47.3010755Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3011357Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:47.3011957Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:47.3012279Z ##[debug] }, +2024-05-29T06:06:47.3012519Z ##[debug] { +2024-05-29T06:06:47.3012788Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:47.3013154Z ##[debug] "name": "dependabot", +2024-05-29T06:06:47.3013513Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3014144Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:47.3014764Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:47.3015083Z ##[debug] } +2024-05-29T06:06:47.3015319Z ##[debug] ] +2024-05-29T06:06:47.3015550Z ##[debug] } +2024-05-29T06:06:47.3015773Z ##[debug] }, +2024-05-29T06:06:47.3016122Z ##[debug] "workflow": { +2024-05-29T06:06:47.3016401Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:47.3016897Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:47.3017399Z ##[debug] }, +2024-05-29T06:06:47.3017627Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.3017927Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:47.3018259Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.3018570Z ##[debug] "workflow": { +2024-05-29T06:06:47.3018856Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:47.3019349Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:47.3019843Z ##[debug] } +2024-05-29T06:06:47.3020059Z ##[debug] } +2024-05-29T06:06:47.3020275Z ##[debug] }, +2024-05-29T06:06:47.3020507Z ##[debug] { +2024-05-29T06:06:47.3020724Z ##[debug] "checkRun": { +2024-05-29T06:06:47.3021011Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:47.3021349Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:47.3021678Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3022266Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:47.3022864Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:47.3023172Z ##[debug] }, +2024-05-29T06:06:47.3023408Z ##[debug] "checkSuite": { +2024-05-29T06:06:47.3023702Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3024021Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:47.3024344Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.3024656Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:47.3024998Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.3025448Z ##[debug] "workflow": { +2024-05-29T06:06:47.3025749Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:47.3026346Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:47.3026857Z ##[debug] } +2024-05-29T06:06:47.3027227Z ##[debug] }, +2024-05-29T06:06:47.3027466Z ##[debug] "checkRuns": { +2024-05-29T06:06:47.3027750Z ##[debug] "totalCount": 4, +2024-05-29T06:06:47.3028052Z ##[debug] "pageInfo": { +2024-05-29T06:06:47.3028352Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:47.3028752Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:47.3029137Z ##[debug] }, +2024-05-29T06:06:47.3029384Z ##[debug] "nodes": [ +2024-05-29T06:06:47.3029641Z ##[debug] { +2024-05-29T06:06:47.3029917Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:47.3030302Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:47.3030676Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3031285Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:47.3031894Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:47.3032219Z ##[debug] }, +2024-05-29T06:06:47.3032459Z ##[debug] { +2024-05-29T06:06:47.3032730Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:47.3032837Z ##[debug] "name": "renovate", +2024-05-29T06:06:47.3032959Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3033319Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:47.3033436Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:47.3033525Z ##[debug] }, +2024-05-29T06:06:47.3033608Z ##[debug] { +2024-05-29T06:06:47.3033726Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:47.3033856Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:47.3033972Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3034343Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:47.3034463Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:47.3034546Z ##[debug] }, +2024-05-29T06:06:47.3034633Z ##[debug] { +2024-05-29T06:06:47.3034750Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:47.3034862Z ##[debug] "name": "dependabot", +2024-05-29T06:06:47.3034979Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3035330Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:47.3035446Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:47.3035532Z ##[debug] } +2024-05-29T06:06:47.3035618Z ##[debug] ] +2024-05-29T06:06:47.3035703Z ##[debug] } +2024-05-29T06:06:47.3035879Z ##[debug] }, +2024-05-29T06:06:47.3035975Z ##[debug] "workflow": { +2024-05-29T06:06:47.3036078Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:47.3036369Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:47.3036478Z ##[debug] }, +2024-05-29T06:06:47.3036578Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.3036684Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:47.3036792Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.3036887Z ##[debug] "workflow": { +2024-05-29T06:06:47.3036985Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:47.3037274Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:47.3037356Z ##[debug] } +2024-05-29T06:06:47.3037436Z ##[debug] } +2024-05-29T06:06:47.3037520Z ##[debug] }, +2024-05-29T06:06:47.3037722Z ##[debug] { +2024-05-29T06:06:47.3037818Z ##[debug] "checkRun": { +2024-05-29T06:06:47.3037934Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:47.3038034Z ##[debug] "name": "dependabot", +2024-05-29T06:06:47.3038134Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3038611Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:47.3038716Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:47.3038796Z ##[debug] }, +2024-05-29T06:06:47.3038891Z ##[debug] "checkSuite": { +2024-05-29T06:06:47.3038990Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3039102Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:47.3039196Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.3039310Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:47.3039424Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.3039517Z ##[debug] "workflow": { +2024-05-29T06:06:47.3039622Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:47.3039911Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:47.3039992Z ##[debug] } +2024-05-29T06:06:47.3040073Z ##[debug] }, +2024-05-29T06:06:47.3040178Z ##[debug] "checkRuns": { +2024-05-29T06:06:47.3040275Z ##[debug] "totalCount": 4, +2024-05-29T06:06:47.3040367Z ##[debug] "pageInfo": { +2024-05-29T06:06:47.3040479Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:47.3040657Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:47.3040743Z ##[debug] }, +2024-05-29T06:06:47.3040831Z ##[debug] "nodes": [ +2024-05-29T06:06:47.3040914Z ##[debug] { +2024-05-29T06:06:47.3041039Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:47.3041168Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:47.3041313Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3041697Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:47.3041813Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:47.3041902Z ##[debug] }, +2024-05-29T06:06:47.3041989Z ##[debug] { +2024-05-29T06:06:47.3042107Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:47.3042215Z ##[debug] "name": "renovate", +2024-05-29T06:06:47.3042328Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3042691Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:47.3042814Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:47.3042897Z ##[debug] }, +2024-05-29T06:06:47.3042978Z ##[debug] { +2024-05-29T06:06:47.3043100Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:47.3043223Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:47.3043361Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3043725Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:47.3043842Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:47.3043928Z ##[debug] }, +2024-05-29T06:06:47.3044010Z ##[debug] { +2024-05-29T06:06:47.3044125Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:47.3044240Z ##[debug] "name": "dependabot", +2024-05-29T06:06:47.3044351Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3044706Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:47.3044822Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:47.3044903Z ##[debug] } +2024-05-29T06:06:47.3044988Z ##[debug] ] +2024-05-29T06:06:47.3045156Z ##[debug] } +2024-05-29T06:06:47.3045240Z ##[debug] }, +2024-05-29T06:06:47.3045334Z ##[debug] "workflow": { +2024-05-29T06:06:47.3045431Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:47.3045712Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:47.3045967Z ##[debug] }, +2024-05-29T06:06:47.3046060Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.3046165Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:47.3046275Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.3046366Z ##[debug] "workflow": { +2024-05-29T06:06:47.3046467Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:47.3046748Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:47.3046829Z ##[debug] } +2024-05-29T06:06:47.3046916Z ##[debug] } +2024-05-29T06:06:47.3046997Z ##[debug] }, +2024-05-29T06:06:47.3047078Z ##[debug] { +2024-05-29T06:06:47.3047182Z ##[debug] "checkRun": { +2024-05-29T06:06:47.3047292Z ##[debug] "databaseId": 25536411287, +2024-05-29T06:06:47.3047385Z ##[debug] "name": "echo", +2024-05-29T06:06:47.3047492Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3047864Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", +2024-05-29T06:06:47.3047977Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3048059Z ##[debug] }, +2024-05-29T06:06:47.3048150Z ##[debug] "checkSuite": { +2024-05-29T06:06:47.3048256Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3048360Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:47.3048455Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.3048573Z ##[debug] "databaseId": 9281068684, +2024-05-29T06:06:47.3048682Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.3048774Z ##[debug] "workflow": { +2024-05-29T06:06:47.3048907Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:47.3049203Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:47.3049289Z ##[debug] } +2024-05-29T06:06:47.3049370Z ##[debug] }, +2024-05-29T06:06:47.3049467Z ##[debug] "checkRuns": { +2024-05-29T06:06:47.3049567Z ##[debug] "totalCount": 1, +2024-05-29T06:06:47.3049659Z ##[debug] "pageInfo": { +2024-05-29T06:06:47.3049765Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:47.3049946Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpc=" +2024-05-29T06:06:47.3050030Z ##[debug] }, +2024-05-29T06:06:47.3050119Z ##[debug] "nodes": [ +2024-05-29T06:06:47.3050207Z ##[debug] { +2024-05-29T06:06:47.3050327Z ##[debug] "databaseId": 25536411287, +2024-05-29T06:06:47.3050424Z ##[debug] "name": "echo", +2024-05-29T06:06:47.3050544Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3050913Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", +2024-05-29T06:06:47.3051036Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3051119Z ##[debug] } +2024-05-29T06:06:47.3051205Z ##[debug] ] +2024-05-29T06:06:47.3051291Z ##[debug] } +2024-05-29T06:06:47.3051374Z ##[debug] }, +2024-05-29T06:06:47.3051464Z ##[debug] "workflow": { +2024-05-29T06:06:47.3051582Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:47.3051869Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:47.3051951Z ##[debug] }, +2024-05-29T06:06:47.3052050Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.3052155Z ##[debug] "databaseId": 9281068684, +2024-05-29T06:06:47.3052265Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.3052358Z ##[debug] "workflow": { +2024-05-29T06:06:47.3052590Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:47.3052887Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:47.3052968Z ##[debug] } +2024-05-29T06:06:47.3053049Z ##[debug] } +2024-05-29T06:06:47.3053232Z ##[debug] }, +2024-05-29T06:06:47.3053313Z ##[debug] { +2024-05-29T06:06:47.3053402Z ##[debug] "checkRun": { +2024-05-29T06:06:47.3053520Z ##[debug] "databaseId": 25536411604, +2024-05-29T06:06:47.3053612Z ##[debug] "name": "wait", +2024-05-29T06:06:47.3053713Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3054091Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", +2024-05-29T06:06:47.3054196Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3054284Z ##[debug] }, +2024-05-29T06:06:47.3054375Z ##[debug] "checkSuite": { +2024-05-29T06:06:47.3054472Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3054588Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:47.3054685Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.3054796Z ##[debug] "databaseId": 9281068685, +2024-05-29T06:06:47.3054910Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.3055005Z ##[debug] "workflow": { +2024-05-29T06:06:47.3055116Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:47.3055403Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:47.3055487Z ##[debug] } +2024-05-29T06:06:47.3055573Z ##[debug] }, +2024-05-29T06:06:47.3055667Z ##[debug] "checkRuns": { +2024-05-29T06:06:47.3055762Z ##[debug] "totalCount": 1, +2024-05-29T06:06:47.3055960Z ##[debug] "pageInfo": { +2024-05-29T06:06:47.3056072Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:47.3056252Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWt9Q=" +2024-05-29T06:06:47.3056339Z ##[debug] }, +2024-05-29T06:06:47.3056433Z ##[debug] "nodes": [ +2024-05-29T06:06:47.3056521Z ##[debug] { +2024-05-29T06:06:47.3056647Z ##[debug] "databaseId": 25536411604, +2024-05-29T06:06:47.3056744Z ##[debug] "name": "wait", +2024-05-29T06:06:47.3056865Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3057244Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", +2024-05-29T06:06:47.3057367Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3057451Z ##[debug] } +2024-05-29T06:06:47.3057532Z ##[debug] ] +2024-05-29T06:06:47.3057612Z ##[debug] } +2024-05-29T06:06:47.3057696Z ##[debug] }, +2024-05-29T06:06:47.3057787Z ##[debug] "workflow": { +2024-05-29T06:06:47.3057891Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:47.3058170Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:47.3058256Z ##[debug] }, +2024-05-29T06:06:47.3058350Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.3058460Z ##[debug] "databaseId": 9281068685, +2024-05-29T06:06:47.3058565Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.3058661Z ##[debug] "workflow": { +2024-05-29T06:06:47.3058773Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:47.3059045Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:47.3059129Z ##[debug] } +2024-05-29T06:06:47.3059209Z ##[debug] } +2024-05-29T06:06:47.3059288Z ##[debug] }, +2024-05-29T06:06:47.3059376Z ##[debug] { +2024-05-29T06:06:47.3059471Z ##[debug] "checkRun": { +2024-05-29T06:06:47.3059580Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:47.3059688Z ##[debug] "name": "default_logic", +2024-05-29T06:06:47.3059790Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3060274Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:47.3060383Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3060464Z ##[debug] }, +2024-05-29T06:06:47.3060560Z ##[debug] "checkSuite": { +2024-05-29T06:06:47.3060745Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3061065Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:47.3061174Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.3061293Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:47.3061408Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.3061506Z ##[debug] "workflow": { +2024-05-29T06:06:47.3061603Z ##[debug] "name": "Itself", +2024-05-29T06:06:47.3061874Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:47.3061957Z ##[debug] } +2024-05-29T06:06:47.3062038Z ##[debug] }, +2024-05-29T06:06:47.3062137Z ##[debug] "checkRuns": { +2024-05-29T06:06:47.3062240Z ##[debug] "totalCount": 7, +2024-05-29T06:06:47.3062336Z ##[debug] "pageInfo": { +2024-05-29T06:06:47.3062449Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:47.3062628Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:47.3062716Z ##[debug] }, +2024-05-29T06:06:47.3062810Z ##[debug] "nodes": [ +2024-05-29T06:06:47.3062893Z ##[debug] { +2024-05-29T06:06:47.3063015Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:47.3063141Z ##[debug] "name": "default_logic", +2024-05-29T06:06:47.3063259Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3063641Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:47.3063766Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3063849Z ##[debug] }, +2024-05-29T06:06:47.3063936Z ##[debug] { +2024-05-29T06:06:47.3064063Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:47.3064181Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:47.3064303Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3064673Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:47.3064799Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3064881Z ##[debug] }, +2024-05-29T06:06:47.3064962Z ##[debug] { +2024-05-29T06:06:47.3065082Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:47.3065252Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:47.3065366Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3065727Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:47.3065950Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3066044Z ##[debug] }, +2024-05-29T06:06:47.3066126Z ##[debug] { +2024-05-29T06:06:47.3066241Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:47.3066353Z ##[debug] "name": "skip-list", +2024-05-29T06:06:47.3066470Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3066833Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:47.3066956Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3067039Z ##[debug] }, +2024-05-29T06:06:47.3067120Z ##[debug] { +2024-05-29T06:06:47.3067243Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:47.3067441Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:47.3067561Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3068034Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:47.3068152Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3068240Z ##[debug] }, +2024-05-29T06:06:47.3068321Z ##[debug] { +2024-05-29T06:06:47.3068438Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:47.3068767Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:47.3068881Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3069243Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:47.3069358Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3069439Z ##[debug] }, +2024-05-29T06:06:47.3069524Z ##[debug] { +2024-05-29T06:06:47.3069641Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:47.3069748Z ##[debug] "name": "wait-list", +2024-05-29T06:06:47.3069886Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3070242Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:47.3070366Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3070453Z ##[debug] } +2024-05-29T06:06:47.3070533Z ##[debug] ] +2024-05-29T06:06:47.3070623Z ##[debug] } +2024-05-29T06:06:47.3070704Z ##[debug] }, +2024-05-29T06:06:47.3070795Z ##[debug] "workflow": { +2024-05-29T06:06:47.3070897Z ##[debug] "name": "Itself", +2024-05-29T06:06:47.3071153Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:47.3071236Z ##[debug] }, +2024-05-29T06:06:47.3071379Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.3071574Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:47.3071736Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.3071834Z ##[debug] "workflow": { +2024-05-29T06:06:47.3071936Z ##[debug] "name": "Itself", +2024-05-29T06:06:47.3072195Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:47.3072280Z ##[debug] } +2024-05-29T06:06:47.3072360Z ##[debug] } +2024-05-29T06:06:47.3072459Z ##[debug] }, +2024-05-29T06:06:47.3072547Z ##[debug] { +2024-05-29T06:06:47.3072637Z ##[debug] "checkRun": { +2024-05-29T06:06:47.3072752Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:47.3072870Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:47.3072983Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3073365Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:47.3073468Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3073551Z ##[debug] }, +2024-05-29T06:06:47.3073643Z ##[debug] "checkSuite": { +2024-05-29T06:06:47.3073743Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3073858Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:47.3073955Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.3074069Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:47.3074182Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.3074279Z ##[debug] "workflow": { +2024-05-29T06:06:47.3074376Z ##[debug] "name": "Itself", +2024-05-29T06:06:47.3074641Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:47.3074725Z ##[debug] } +2024-05-29T06:06:47.3074806Z ##[debug] }, +2024-05-29T06:06:47.3074904Z ##[debug] "checkRuns": { +2024-05-29T06:06:47.3075000Z ##[debug] "totalCount": 7, +2024-05-29T06:06:47.3075096Z ##[debug] "pageInfo": { +2024-05-29T06:06:47.3075205Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:47.3075382Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:47.3075566Z ##[debug] }, +2024-05-29T06:06:47.3075659Z ##[debug] "nodes": [ +2024-05-29T06:06:47.3075740Z ##[debug] { +2024-05-29T06:06:47.3075973Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:47.3076103Z ##[debug] "name": "default_logic", +2024-05-29T06:06:47.3076432Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3076807Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:47.3076923Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3077010Z ##[debug] }, +2024-05-29T06:06:47.3077091Z ##[debug] { +2024-05-29T06:06:47.3077208Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:47.3077330Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:47.3077442Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3077800Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:47.3077918Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3078001Z ##[debug] }, +2024-05-29T06:06:47.3078086Z ##[debug] { +2024-05-29T06:06:47.3078198Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:47.3078372Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:47.3078489Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3078836Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:47.3078949Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3079035Z ##[debug] }, +2024-05-29T06:06:47.3079115Z ##[debug] { +2024-05-29T06:06:47.3079229Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:47.3079340Z ##[debug] "name": "skip-list", +2024-05-29T06:06:47.3079457Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3079823Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:47.3079938Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3080020Z ##[debug] }, +2024-05-29T06:06:47.3080111Z ##[debug] { +2024-05-29T06:06:47.3080228Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:47.3080433Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:47.3080547Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3080893Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:47.3081008Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3081089Z ##[debug] }, +2024-05-29T06:06:47.3081170Z ##[debug] { +2024-05-29T06:06:47.3081290Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:47.3081513Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:47.3081626Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3081982Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:47.3082112Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3082208Z ##[debug] }, +2024-05-29T06:06:47.3082290Z ##[debug] { +2024-05-29T06:06:47.3082406Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:47.3082520Z ##[debug] "name": "wait-list", +2024-05-29T06:06:47.3082635Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3082993Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:47.3083112Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3083195Z ##[debug] } +2024-05-29T06:06:47.3083402Z ##[debug] ] +2024-05-29T06:06:47.3083489Z ##[debug] } +2024-05-29T06:06:47.3083570Z ##[debug] }, +2024-05-29T06:06:47.3083666Z ##[debug] "workflow": { +2024-05-29T06:06:47.3083764Z ##[debug] "name": "Itself", +2024-05-29T06:06:47.3084094Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:47.3084179Z ##[debug] }, +2024-05-29T06:06:47.3084275Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.3084382Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:47.3084496Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.3084590Z ##[debug] "workflow": { +2024-05-29T06:06:47.3084685Z ##[debug] "name": "Itself", +2024-05-29T06:06:47.3084943Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:47.3085023Z ##[debug] } +2024-05-29T06:06:47.3085107Z ##[debug] } +2024-05-29T06:06:47.3085186Z ##[debug] }, +2024-05-29T06:06:47.3085271Z ##[debug] { +2024-05-29T06:06:47.3085365Z ##[debug] "checkRun": { +2024-05-29T06:06:47.3085472Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:47.3085634Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:47.3085745Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3086207Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:47.3086313Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3086395Z ##[debug] }, +2024-05-29T06:06:47.3086485Z ##[debug] "checkSuite": { +2024-05-29T06:06:47.3086584Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3086697Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:47.3086791Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.3086909Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:47.3087016Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.3087112Z ##[debug] "workflow": { +2024-05-29T06:06:47.3087213Z ##[debug] "name": "Itself", +2024-05-29T06:06:47.3087469Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:47.3087552Z ##[debug] } +2024-05-29T06:06:47.3087641Z ##[debug] }, +2024-05-29T06:06:47.3087731Z ##[debug] "checkRuns": { +2024-05-29T06:06:47.3087826Z ##[debug] "totalCount": 7, +2024-05-29T06:06:47.3087923Z ##[debug] "pageInfo": { +2024-05-29T06:06:47.3088030Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:47.3088212Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:47.3088293Z ##[debug] }, +2024-05-29T06:06:47.3088380Z ##[debug] "nodes": [ +2024-05-29T06:06:47.3088466Z ##[debug] { +2024-05-29T06:06:47.3088583Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:47.3088701Z ##[debug] "name": "default_logic", +2024-05-29T06:06:47.3088822Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3089180Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:47.3089295Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3089388Z ##[debug] }, +2024-05-29T06:06:47.3089469Z ##[debug] { +2024-05-29T06:06:47.3089590Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:47.3089709Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:47.3089821Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3090174Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:47.3090298Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3090381Z ##[debug] }, +2024-05-29T06:06:47.3090467Z ##[debug] { +2024-05-29T06:06:47.3090719Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:47.3090896Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:47.3091007Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3091354Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:47.3091574Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3091656Z ##[debug] }, +2024-05-29T06:06:47.3091738Z ##[debug] { +2024-05-29T06:06:47.3091858Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:47.3091963Z ##[debug] "name": "skip-list", +2024-05-29T06:06:47.3092074Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3092442Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:47.3092554Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3092639Z ##[debug] }, +2024-05-29T06:06:47.3092724Z ##[debug] { +2024-05-29T06:06:47.3092840Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:47.3093039Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:47.3093151Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3093501Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:47.3093619Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3093702Z ##[debug] }, +2024-05-29T06:06:47.3093786Z ##[debug] { +2024-05-29T06:06:47.3093902Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:47.3094121Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:47.3094240Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3094603Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:47.3094715Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3094803Z ##[debug] }, +2024-05-29T06:06:47.3094884Z ##[debug] { +2024-05-29T06:06:47.3095004Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:47.3095116Z ##[debug] "name": "wait-list", +2024-05-29T06:06:47.3095229Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3095591Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:47.3095704Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3095785Z ##[debug] } +2024-05-29T06:06:47.3095973Z ##[debug] ] +2024-05-29T06:06:47.3096054Z ##[debug] } +2024-05-29T06:06:47.3096134Z ##[debug] }, +2024-05-29T06:06:47.3096231Z ##[debug] "workflow": { +2024-05-29T06:06:47.3096325Z ##[debug] "name": "Itself", +2024-05-29T06:06:47.3096587Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:47.3096669Z ##[debug] }, +2024-05-29T06:06:47.3096764Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.3096874Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:47.3096987Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.3097079Z ##[debug] "workflow": { +2024-05-29T06:06:47.3097202Z ##[debug] "name": "Itself", +2024-05-29T06:06:47.3097456Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:47.3097537Z ##[debug] } +2024-05-29T06:06:47.3097625Z ##[debug] } +2024-05-29T06:06:47.3097705Z ##[debug] }, +2024-05-29T06:06:47.3097785Z ##[debug] { +2024-05-29T06:06:47.3097879Z ##[debug] "checkRun": { +2024-05-29T06:06:47.3097986Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:47.3098089Z ##[debug] "name": "skip-list", +2024-05-29T06:06:47.3098337Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3098706Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:47.3098815Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3098895Z ##[debug] }, +2024-05-29T06:06:47.3099095Z ##[debug] "checkSuite": { +2024-05-29T06:06:47.3099208Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3099313Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:47.3099408Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.3099526Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:47.3099633Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.3099730Z ##[debug] "workflow": { +2024-05-29T06:06:47.3099825Z ##[debug] "name": "Itself", +2024-05-29T06:06:47.3100081Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:47.3100168Z ##[debug] } +2024-05-29T06:06:47.3100256Z ##[debug] }, +2024-05-29T06:06:47.3100349Z ##[debug] "checkRuns": { +2024-05-29T06:06:47.3100449Z ##[debug] "totalCount": 7, +2024-05-29T06:06:47.3100541Z ##[debug] "pageInfo": { +2024-05-29T06:06:47.3100649Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:47.3100834Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:47.3100915Z ##[debug] }, +2024-05-29T06:06:47.3101003Z ##[debug] "nodes": [ +2024-05-29T06:06:47.3101090Z ##[debug] { +2024-05-29T06:06:47.3101208Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:47.3101330Z ##[debug] "name": "default_logic", +2024-05-29T06:06:47.3101444Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3101804Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:47.3101932Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3102019Z ##[debug] }, +2024-05-29T06:06:47.3102101Z ##[debug] { +2024-05-29T06:06:47.3102222Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:47.3102341Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:47.3102458Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3102820Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:47.3102936Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3103024Z ##[debug] }, +2024-05-29T06:06:47.3103106Z ##[debug] { +2024-05-29T06:06:47.3103222Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:47.3103394Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:47.3103506Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3103864Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:47.3103977Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3104059Z ##[debug] }, +2024-05-29T06:06:47.3104147Z ##[debug] { +2024-05-29T06:06:47.3104264Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:47.3104374Z ##[debug] "name": "skip-list", +2024-05-29T06:06:47.3104491Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3104846Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:47.3104967Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3105049Z ##[debug] }, +2024-05-29T06:06:47.3105130Z ##[debug] { +2024-05-29T06:06:47.3105250Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:47.3105447Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:47.3105559Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3106129Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:47.3106246Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3106329Z ##[debug] }, +2024-05-29T06:06:47.3106516Z ##[debug] { +2024-05-29T06:06:47.3106631Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:47.3106855Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:47.3106971Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3107322Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:47.3107439Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3107523Z ##[debug] }, +2024-05-29T06:06:47.3107604Z ##[debug] { +2024-05-29T06:06:47.3107725Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:47.3107835Z ##[debug] "name": "wait-list", +2024-05-29T06:06:47.3107952Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3108301Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:47.3108421Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3108508Z ##[debug] } +2024-05-29T06:06:47.3108590Z ##[debug] ] +2024-05-29T06:06:47.3108670Z ##[debug] } +2024-05-29T06:06:47.3108754Z ##[debug] }, +2024-05-29T06:06:47.3108844Z ##[debug] "workflow": { +2024-05-29T06:06:47.3108939Z ##[debug] "name": "Itself", +2024-05-29T06:06:47.3109195Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:47.3109277Z ##[debug] }, +2024-05-29T06:06:47.3109375Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.3109481Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:47.3109592Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.3109688Z ##[debug] "workflow": { +2024-05-29T06:06:47.3109783Z ##[debug] "name": "Itself", +2024-05-29T06:06:47.3110037Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:47.3110127Z ##[debug] } +2024-05-29T06:06:47.3110208Z ##[debug] } +2024-05-29T06:06:47.3110286Z ##[debug] }, +2024-05-29T06:06:47.3110370Z ##[debug] { +2024-05-29T06:06:47.3110460Z ##[debug] "checkRun": { +2024-05-29T06:06:47.3110567Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:47.3110767Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:47.3110868Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3111234Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:47.3111338Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3111419Z ##[debug] }, +2024-05-29T06:06:47.3111519Z ##[debug] "checkSuite": { +2024-05-29T06:06:47.3111619Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3111724Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:47.3111822Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.3111937Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:47.3112047Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.3112144Z ##[debug] "workflow": { +2024-05-29T06:06:47.3112241Z ##[debug] "name": "Itself", +2024-05-29T06:06:47.3112503Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:47.3112585Z ##[debug] } +2024-05-29T06:06:47.3112666Z ##[debug] }, +2024-05-29T06:06:47.3112762Z ##[debug] "checkRuns": { +2024-05-29T06:06:47.3112857Z ##[debug] "totalCount": 7, +2024-05-29T06:06:47.3112951Z ##[debug] "pageInfo": { +2024-05-29T06:06:47.3113064Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:47.3113325Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:47.3113411Z ##[debug] }, +2024-05-29T06:06:47.3113504Z ##[debug] "nodes": [ +2024-05-29T06:06:47.3113586Z ##[debug] { +2024-05-29T06:06:47.3113777Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:47.3113901Z ##[debug] "name": "default_logic", +2024-05-29T06:06:47.3114043Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3114415Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:47.3114530Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3114613Z ##[debug] }, +2024-05-29T06:06:47.3114700Z ##[debug] { +2024-05-29T06:06:47.3114819Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:47.3114936Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:47.3115059Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3115416Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:47.3115533Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3115623Z ##[debug] }, +2024-05-29T06:06:47.3115703Z ##[debug] { +2024-05-29T06:06:47.3115916Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:47.3116085Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:47.3116196Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3116553Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:47.3116663Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3116751Z ##[debug] }, +2024-05-29T06:06:47.3116832Z ##[debug] { +2024-05-29T06:06:47.3116947Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:47.3117064Z ##[debug] "name": "skip-list", +2024-05-29T06:06:47.3117175Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3117531Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:47.3117655Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3117738Z ##[debug] }, +2024-05-29T06:06:47.3117818Z ##[debug] { +2024-05-29T06:06:47.3117938Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:47.3118135Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:47.3118251Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3118603Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:47.3118714Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3118799Z ##[debug] }, +2024-05-29T06:06:47.3118885Z ##[debug] { +2024-05-29T06:06:47.3118999Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:47.3119218Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:47.3119337Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3119693Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:47.3119807Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3119889Z ##[debug] }, +2024-05-29T06:06:47.3119976Z ##[debug] { +2024-05-29T06:06:47.3120092Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:47.3120200Z ##[debug] "name": "wait-list", +2024-05-29T06:06:47.3120317Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3120802Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:47.3120927Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3121008Z ##[debug] } +2024-05-29T06:06:47.3121089Z ##[debug] ] +2024-05-29T06:06:47.3121177Z ##[debug] } +2024-05-29T06:06:47.3121258Z ##[debug] }, +2024-05-29T06:06:47.3121451Z ##[debug] "workflow": { +2024-05-29T06:06:47.3121550Z ##[debug] "name": "Itself", +2024-05-29T06:06:47.3121803Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:47.3121885Z ##[debug] }, +2024-05-29T06:06:47.3121984Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.3122090Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:47.3122195Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.3122292Z ##[debug] "workflow": { +2024-05-29T06:06:47.3122386Z ##[debug] "name": "Itself", +2024-05-29T06:06:47.3122642Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:47.3122731Z ##[debug] } +2024-05-29T06:06:47.3122811Z ##[debug] } +2024-05-29T06:06:47.3122894Z ##[debug] }, +2024-05-29T06:06:47.3122973Z ##[debug] { +2024-05-29T06:06:47.3123063Z ##[debug] "checkRun": { +2024-05-29T06:06:47.3123175Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:47.3123396Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:47.3123497Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3123863Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:47.3123970Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3124056Z ##[debug] }, +2024-05-29T06:06:47.3124149Z ##[debug] "checkSuite": { +2024-05-29T06:06:47.3124248Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3124359Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:47.3124454Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.3124572Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:47.3124688Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.3124780Z ##[debug] "workflow": { +2024-05-29T06:06:47.3124877Z ##[debug] "name": "Itself", +2024-05-29T06:06:47.3125142Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:47.3125226Z ##[debug] } +2024-05-29T06:06:47.3125312Z ##[debug] }, +2024-05-29T06:06:47.3125406Z ##[debug] "checkRuns": { +2024-05-29T06:06:47.3125503Z ##[debug] "totalCount": 7, +2024-05-29T06:06:47.3125604Z ##[debug] "pageInfo": { +2024-05-29T06:06:47.3125713Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:47.3125988Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:47.3126077Z ##[debug] }, +2024-05-29T06:06:47.3126165Z ##[debug] "nodes": [ +2024-05-29T06:06:47.3126247Z ##[debug] { +2024-05-29T06:06:47.3126375Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:47.3126491Z ##[debug] "name": "default_logic", +2024-05-29T06:06:47.3126607Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3126969Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:47.3127089Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3127176Z ##[debug] }, +2024-05-29T06:06:47.3127258Z ##[debug] { +2024-05-29T06:06:47.3127376Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:47.3127498Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:47.3127612Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3127960Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:47.3128081Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3128343Z ##[debug] }, +2024-05-29T06:06:47.3128432Z ##[debug] { +2024-05-29T06:06:47.3128548Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:47.3128716Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:47.3128938Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3129283Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:47.3129395Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3129483Z ##[debug] }, +2024-05-29T06:06:47.3129562Z ##[debug] { +2024-05-29T06:06:47.3129679Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:47.3129784Z ##[debug] "name": "skip-list", +2024-05-29T06:06:47.3129895Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3130259Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:47.3130373Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3130455Z ##[debug] }, +2024-05-29T06:06:47.3130540Z ##[debug] { +2024-05-29T06:06:47.3130667Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:47.3130872Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:47.3130988Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3131334Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:47.3131451Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3131533Z ##[debug] }, +2024-05-29T06:06:47.3131614Z ##[debug] { +2024-05-29T06:06:47.3131734Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:47.3131954Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:47.3132070Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3132431Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:47.3132544Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3132636Z ##[debug] }, +2024-05-29T06:06:47.3132717Z ##[debug] { +2024-05-29T06:06:47.3132833Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:47.3132943Z ##[debug] "name": "wait-list", +2024-05-29T06:06:47.3133055Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3133416Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:47.3133539Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3133634Z ##[debug] } +2024-05-29T06:06:47.3133722Z ##[debug] ] +2024-05-29T06:06:47.3133803Z ##[debug] } +2024-05-29T06:06:47.3133887Z ##[debug] }, +2024-05-29T06:06:47.3133982Z ##[debug] "workflow": { +2024-05-29T06:06:47.3134078Z ##[debug] "name": "Itself", +2024-05-29T06:06:47.3134331Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:47.3134422Z ##[debug] }, +2024-05-29T06:06:47.3134518Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.3134625Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:47.3134738Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.3134829Z ##[debug] "workflow": { +2024-05-29T06:06:47.3134924Z ##[debug] "name": "Itself", +2024-05-29T06:06:47.3135182Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:47.3135268Z ##[debug] } +2024-05-29T06:06:47.3135353Z ##[debug] } +2024-05-29T06:06:47.3135432Z ##[debug] }, +2024-05-29T06:06:47.3135512Z ##[debug] { +2024-05-29T06:06:47.3135607Z ##[debug] "checkRun": { +2024-05-29T06:06:47.3135914Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:47.3136020Z ##[debug] "name": "wait-list", +2024-05-29T06:06:47.3136124Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3136488Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:47.3136702Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3136789Z ##[debug] }, +2024-05-29T06:06:47.3136886Z ##[debug] "checkSuite": { +2024-05-29T06:06:47.3136993Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3137098Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:47.3137192Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.3137310Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:47.3137419Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.3137516Z ##[debug] "workflow": { +2024-05-29T06:06:47.3137628Z ##[debug] "name": "Itself", +2024-05-29T06:06:47.3137891Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:47.3137974Z ##[debug] } +2024-05-29T06:06:47.3138060Z ##[debug] }, +2024-05-29T06:06:47.3138154Z ##[debug] "checkRuns": { +2024-05-29T06:06:47.3138252Z ##[debug] "totalCount": 7, +2024-05-29T06:06:47.3138355Z ##[debug] "pageInfo": { +2024-05-29T06:06:47.3138463Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:47.3138643Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:47.3138733Z ##[debug] }, +2024-05-29T06:06:47.3138827Z ##[debug] "nodes": [ +2024-05-29T06:06:47.3138913Z ##[debug] { +2024-05-29T06:06:47.3139029Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:47.3139147Z ##[debug] "name": "default_logic", +2024-05-29T06:06:47.3139267Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3139628Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:47.3139749Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3139832Z ##[debug] }, +2024-05-29T06:06:47.3139913Z ##[debug] { +2024-05-29T06:06:47.3140033Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:47.3140157Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:47.3140269Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3140622Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:47.3140739Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3140826Z ##[debug] }, +2024-05-29T06:06:47.3140912Z ##[debug] { +2024-05-29T06:06:47.3141026Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:47.3141223Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:47.3141340Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3141687Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:47.3141806Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3141893Z ##[debug] }, +2024-05-29T06:06:47.3141975Z ##[debug] { +2024-05-29T06:06:47.3142106Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:47.3142212Z ##[debug] "name": "skip-list", +2024-05-29T06:06:47.3142327Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3142695Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:47.3142813Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3142901Z ##[debug] }, +2024-05-29T06:06:47.3142983Z ##[debug] { +2024-05-29T06:06:47.3143097Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:47.3143419Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:47.3143537Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3143887Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:47.3144120Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3144213Z ##[debug] }, +2024-05-29T06:06:47.3144300Z ##[debug] { +2024-05-29T06:06:47.3144415Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:47.3144634Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:47.3144750Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3145102Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:47.3145220Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3145311Z ##[debug] }, +2024-05-29T06:06:47.3145392Z ##[debug] { +2024-05-29T06:06:47.3145510Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:47.3145615Z ##[debug] "name": "wait-list", +2024-05-29T06:06:47.3145726Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3146195Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:47.3146308Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3146389Z ##[debug] } +2024-05-29T06:06:47.3146478Z ##[debug] ] +2024-05-29T06:06:47.3146558Z ##[debug] } +2024-05-29T06:06:47.3146637Z ##[debug] }, +2024-05-29T06:06:47.3146735Z ##[debug] "workflow": { +2024-05-29T06:06:47.3146831Z ##[debug] "name": "Itself", +2024-05-29T06:06:47.3147090Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:47.3147171Z ##[debug] }, +2024-05-29T06:06:47.3147270Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.3147381Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:47.3147487Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.3147580Z ##[debug] "workflow": { +2024-05-29T06:06:47.3147679Z ##[debug] "name": "Itself", +2024-05-29T06:06:47.3147937Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:47.3148019Z ##[debug] } +2024-05-29T06:06:47.3148105Z ##[debug] } +2024-05-29T06:06:47.3148185Z ##[debug] }, +2024-05-29T06:06:47.3148271Z ##[debug] { +2024-05-29T06:06:47.3148361Z ##[debug] "checkRun": { +2024-05-29T06:06:47.3148473Z ##[debug] "databaseId": 25536411358, +2024-05-29T06:06:47.3148597Z ##[debug] "name": "dependency-review", +2024-05-29T06:06:47.3148697Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3149061Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", +2024-05-29T06:06:47.3149172Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3149252Z ##[debug] }, +2024-05-29T06:06:47.3149344Z ##[debug] "checkSuite": { +2024-05-29T06:06:47.3149449Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3149561Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:47.3149657Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.3149774Z ##[debug] "databaseId": 9281068690, +2024-05-29T06:06:47.3149883Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.3149981Z ##[debug] "workflow": { +2024-05-29T06:06:47.3150083Z ##[debug] "name": "💂➕", +2024-05-29T06:06:47.3150399Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:47.3150486Z ##[debug] } +2024-05-29T06:06:47.3150567Z ##[debug] }, +2024-05-29T06:06:47.3150659Z ##[debug] "checkRuns": { +2024-05-29T06:06:47.3150759Z ##[debug] "totalCount": 1, +2024-05-29T06:06:47.3150979Z ##[debug] "pageInfo": { +2024-05-29T06:06:47.3151093Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:47.3151272Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtt4=" +2024-05-29T06:06:47.3151354Z ##[debug] }, +2024-05-29T06:06:47.3151548Z ##[debug] "nodes": [ +2024-05-29T06:06:47.3151631Z ##[debug] { +2024-05-29T06:06:47.3151749Z ##[debug] "databaseId": 25536411358, +2024-05-29T06:06:47.3151884Z ##[debug] "name": "dependency-review", +2024-05-29T06:06:47.3151999Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:47.3152361Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", +2024-05-29T06:06:47.3152484Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:47.3152565Z ##[debug] } +2024-05-29T06:06:47.3152645Z ##[debug] ] +2024-05-29T06:06:47.3152733Z ##[debug] } +2024-05-29T06:06:47.3152819Z ##[debug] }, +2024-05-29T06:06:47.3152913Z ##[debug] "workflow": { +2024-05-29T06:06:47.3153006Z ##[debug] "name": "💂➕", +2024-05-29T06:06:47.3153318Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:47.3153447Z ##[debug] }, +2024-05-29T06:06:47.3153541Z ##[debug] "workflowRun": { +2024-05-29T06:06:47.3153647Z ##[debug] "databaseId": 9281068690, +2024-05-29T06:06:47.3153760Z ##[debug] "event": "pull_request", +2024-05-29T06:06:47.3153850Z ##[debug] "workflow": { +2024-05-29T06:06:47.3153942Z ##[debug] "name": "💂➕", +2024-05-29T06:06:47.3154256Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:47.3154338Z ##[debug] } +2024-05-29T06:06:47.3154425Z ##[debug] } +2024-05-29T06:06:47.3154507Z ##[debug] } +2024-05-29T06:06:47.3154587Z ##[debug] ], +2024-05-29T06:06:47.3154716Z ##[debug] "elapsedMsec": 11406.470796999987 +2024-05-29T06:06:47.3154796Z ##[debug]} +2024-05-29T06:06:47.3156232Z GH-820-graceperiod.yml(quickstarter-success): [suiteStatus: IN_PROGRESS][suiteConclusion: (null)][runStatus: COMPLETED][runConclusion: SUCCESS][eventName: pull_request][runURL: https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631] +2024-05-29T06:06:47.3156871Z ##[debug]{ +2024-05-29T06:06:47.3156969Z ##[debug] "label": "filtered", +2024-05-29T06:06:47.3157054Z ##[debug] "report": { +2024-05-29T06:06:47.3157166Z ##[debug] "progress": "in_progress", +2024-05-29T06:06:47.3157275Z ##[debug] "conclusion": "acceptable", +2024-05-29T06:06:47.3157367Z ##[debug] "summaries": [ +2024-05-29T06:06:47.3157453Z ##[debug] { +2024-05-29T06:06:47.3157552Z ##[debug] "acceptable": true, +2024-05-29T06:06:47.3157700Z ##[debug] "workflowPath": "GH-820-graceperiod.yml", +2024-05-29T06:06:47.3157814Z ##[debug] "isSameWorkflow": true, +2024-05-29T06:06:47.3157941Z ##[debug] "eventName": "pull_request", +2024-05-29T06:06:47.3158081Z ##[debug] "checkSuiteStatus": "IN_PROGRESS", +2024-05-29T06:06:47.3158209Z ##[debug] "checkSuiteConclusion": null, +2024-05-29T06:06:47.3158327Z ##[debug] "runDatabaseId": 25536443631, +2024-05-29T06:06:47.3158465Z ##[debug] "jobName": "quickstarter-success", +2024-05-29T06:06:47.3158844Z ##[debug] "checkRunUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:47.3158957Z ##[debug] "runStatus": "COMPLETED", +2024-05-29T06:06:47.3159093Z ##[debug] "runConclusion": "SUCCESS" +2024-05-29T06:06:47.3159182Z ##[debug] } +2024-05-29T06:06:47.3159287Z ##[debug] ] +2024-05-29T06:06:47.3159366Z ##[debug] } +2024-05-29T06:06:47.3159442Z ##[debug]} +2024-05-29T06:06:47.3159550Z some jobs still in progress +2024-05-29T06:06:47.3159837Z ::endgroup:: +2024-05-29T06:06:47.3159938Z ##[endgroup] +2024-05-29T06:06:47.3160145Z Wait about 5 seconds before next polling to reduce API calls. +2024-05-29T06:06:52.2609292Z ::group::Polling 4: 2024-05-29T06:06:52.260Z +2024-05-29T06:06:52.2610264Z ##[group]Polling 4: 2024-05-29T06:06:52.260Z +2024-05-29T06:06:52.6617644Z ##[debug]{ +2024-05-29T06:06:52.6617905Z ##[debug] "label": "rawdata", +2024-05-29T06:06:52.6618191Z ##[debug] "checks": [ +2024-05-29T06:06:52.6618694Z ##[debug] { +2024-05-29T06:06:52.6618927Z ##[debug] "checkRun": { +2024-05-29T06:06:52.6619221Z ##[debug] "databaseId": 25536410411, +2024-05-29T06:06:52.6619557Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:52.6619893Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6620503Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", +2024-05-29T06:06:52.6621124Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6621441Z ##[debug] }, +2024-05-29T06:06:52.6621677Z ##[debug] "checkSuite": { +2024-05-29T06:06:52.6621963Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6622298Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:52.6622616Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6622926Z ##[debug] "databaseId": 9281068413, +2024-05-29T06:06:52.6623296Z ##[debug] "event": "push", +2024-05-29T06:06:52.6623603Z ##[debug] "workflow": { +2024-05-29T06:06:52.6623917Z ##[debug] "name": "💧", +2024-05-29T06:06:52.6624411Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:52.6624902Z ##[debug] } +2024-05-29T06:06:52.6625132Z ##[debug] }, +2024-05-29T06:06:52.6625377Z ##[debug] "checkRuns": { +2024-05-29T06:06:52.6625671Z ##[debug] "totalCount": 1, +2024-05-29T06:06:52.6626178Z ##[debug] "pageInfo": { +2024-05-29T06:06:52.6626487Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:52.6626903Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWsys=" +2024-05-29T06:06:52.6627287Z ##[debug] }, +2024-05-29T06:06:52.6627539Z ##[debug] "nodes": [ +2024-05-29T06:06:52.6627804Z ##[debug] { +2024-05-29T06:06:52.6628077Z ##[debug] "databaseId": 25536410411, +2024-05-29T06:06:52.6628429Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:52.6628771Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6629424Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", +2024-05-29T06:06:52.6630056Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6630389Z ##[debug] } +2024-05-29T06:06:52.6630625Z ##[debug] ] +2024-05-29T06:06:52.6630848Z ##[debug] } +2024-05-29T06:06:52.6631071Z ##[debug] }, +2024-05-29T06:06:52.6631302Z ##[debug] "workflow": { +2024-05-29T06:06:52.6631571Z ##[debug] "name": "💧", +2024-05-29T06:06:52.6632021Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:52.6632502Z ##[debug] }, +2024-05-29T06:06:52.6632736Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6633037Z ##[debug] "databaseId": 9281068413, +2024-05-29T06:06:52.6633359Z ##[debug] "event": "push", +2024-05-29T06:06:52.6633644Z ##[debug] "workflow": { +2024-05-29T06:06:52.6633930Z ##[debug] "name": "💧", +2024-05-29T06:06:52.6634391Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:52.6634863Z ##[debug] } +2024-05-29T06:06:52.6635086Z ##[debug] } +2024-05-29T06:06:52.6635310Z ##[debug] }, +2024-05-29T06:06:52.6635526Z ##[debug] { +2024-05-29T06:06:52.6635755Z ##[debug] "checkRun": { +2024-05-29T06:06:52.6636355Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:52.6636677Z ##[debug] "name": "build", +2024-05-29T06:06:52.6636979Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6637575Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:52.6638334Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6638645Z ##[debug] }, +2024-05-29T06:06:52.6638881Z ##[debug] "checkSuite": { +2024-05-29T06:06:52.6639172Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6639614Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:52.6639938Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6640256Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:52.6640604Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.6640931Z ##[debug] "workflow": { +2024-05-29T06:06:52.6641240Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:52.6641706Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:52.6642164Z ##[debug] } +2024-05-29T06:06:52.6642400Z ##[debug] }, +2024-05-29T06:06:52.6642638Z ##[debug] "checkRuns": { +2024-05-29T06:06:52.6642934Z ##[debug] "totalCount": 3, +2024-05-29T06:06:52.6643245Z ##[debug] "pageInfo": { +2024-05-29T06:06:52.6643545Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:52.6643958Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:52.6644347Z ##[debug] }, +2024-05-29T06:06:52.6644594Z ##[debug] "nodes": [ +2024-05-29T06:06:52.6644860Z ##[debug] { +2024-05-29T06:06:52.6652794Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:52.6653212Z ##[debug] "name": "build", +2024-05-29T06:06:52.6653575Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6654211Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:52.6654827Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6655163Z ##[debug] }, +2024-05-29T06:06:52.6655409Z ##[debug] { +2024-05-29T06:06:52.6655682Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:52.6656247Z ##[debug] "name": "test", +2024-05-29T06:06:52.6656584Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6657188Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:52.6657820Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6658158Z ##[debug] }, +2024-05-29T06:06:52.6658413Z ##[debug] { +2024-05-29T06:06:52.6658699Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:52.6659070Z ##[debug] "name": "typecheck", +2024-05-29T06:06:52.6659429Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6660036Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:52.6660657Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6660978Z ##[debug] } +2024-05-29T06:06:52.6661212Z ##[debug] ] +2024-05-29T06:06:52.6661456Z ##[debug] } +2024-05-29T06:06:52.6661683Z ##[debug] }, +2024-05-29T06:06:52.6661912Z ##[debug] "workflow": { +2024-05-29T06:06:52.6662205Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:52.6662667Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:52.6663132Z ##[debug] }, +2024-05-29T06:06:52.6663367Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6663676Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:52.6664023Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.6664347Z ##[debug] "workflow": { +2024-05-29T06:06:52.6664648Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:52.6665115Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:52.6665568Z ##[debug] } +2024-05-29T06:06:52.6665896Z ##[debug] } +2024-05-29T06:06:52.6666120Z ##[debug] }, +2024-05-29T06:06:52.6666335Z ##[debug] { +2024-05-29T06:06:52.6666774Z ##[debug] "checkRun": { +2024-05-29T06:06:52.6667081Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:52.6667406Z ##[debug] "name": "test", +2024-05-29T06:06:52.6667706Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6668439Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:52.6669031Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6669333Z ##[debug] }, +2024-05-29T06:06:52.6669575Z ##[debug] "checkSuite": { +2024-05-29T06:06:52.6669869Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6670203Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:52.6670543Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6670853Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:52.6671200Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.6671528Z ##[debug] "workflow": { +2024-05-29T06:06:52.6671844Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:52.6672311Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:52.6672772Z ##[debug] } +2024-05-29T06:06:52.6673010Z ##[debug] }, +2024-05-29T06:06:52.6673251Z ##[debug] "checkRuns": { +2024-05-29T06:06:52.6673539Z ##[debug] "totalCount": 3, +2024-05-29T06:06:52.6673847Z ##[debug] "pageInfo": { +2024-05-29T06:06:52.6674157Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:52.6674571Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:52.6674965Z ##[debug] }, +2024-05-29T06:06:52.6675208Z ##[debug] "nodes": [ +2024-05-29T06:06:52.6675478Z ##[debug] { +2024-05-29T06:06:52.6675763Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:52.6676362Z ##[debug] "name": "build", +2024-05-29T06:06:52.6676703Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6677322Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:52.6677931Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6678265Z ##[debug] }, +2024-05-29T06:06:52.6678512Z ##[debug] { +2024-05-29T06:06:52.6678794Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:52.6679134Z ##[debug] "name": "test", +2024-05-29T06:06:52.6679475Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6680085Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:52.6680686Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6681008Z ##[debug] }, +2024-05-29T06:06:52.6681252Z ##[debug] { +2024-05-29T06:06:52.6681518Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:52.6681875Z ##[debug] "name": "typecheck", +2024-05-29T06:06:52.6682228Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6682814Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:52.6683414Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6683735Z ##[debug] } +2024-05-29T06:06:52.6683973Z ##[debug] ] +2024-05-29T06:06:52.6684202Z ##[debug] } +2024-05-29T06:06:52.6684427Z ##[debug] }, +2024-05-29T06:06:52.6684657Z ##[debug] "workflow": { +2024-05-29T06:06:52.6684944Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:52.6685402Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:52.6685991Z ##[debug] }, +2024-05-29T06:06:52.6686226Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6686530Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:52.6686864Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.6687175Z ##[debug] "workflow": { +2024-05-29T06:06:52.6687602Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:52.6688072Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:52.6688521Z ##[debug] } +2024-05-29T06:06:52.6688748Z ##[debug] } +2024-05-29T06:06:52.6689077Z ##[debug] }, +2024-05-29T06:06:52.6689291Z ##[debug] { +2024-05-29T06:06:52.6689519Z ##[debug] "checkRun": { +2024-05-29T06:06:52.6689816Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:52.6690143Z ##[debug] "name": "typecheck", +2024-05-29T06:06:52.6690490Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6691101Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:52.6691692Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6692004Z ##[debug] }, +2024-05-29T06:06:52.6692244Z ##[debug] "checkSuite": { +2024-05-29T06:06:52.6692547Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6692878Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:52.6693211Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6693521Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:52.6693868Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.6694203Z ##[debug] "workflow": { +2024-05-29T06:06:52.6694500Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:52.6694986Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:52.6695441Z ##[debug] } +2024-05-29T06:06:52.6695675Z ##[debug] }, +2024-05-29T06:06:52.6696008Z ##[debug] "checkRuns": { +2024-05-29T06:06:52.6696297Z ##[debug] "totalCount": 3, +2024-05-29T06:06:52.6696600Z ##[debug] "pageInfo": { +2024-05-29T06:06:52.6696895Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:52.6697302Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:52.6697698Z ##[debug] }, +2024-05-29T06:06:52.6697935Z ##[debug] "nodes": [ +2024-05-29T06:06:52.6698199Z ##[debug] { +2024-05-29T06:06:52.6698479Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:52.6698818Z ##[debug] "name": "build", +2024-05-29T06:06:52.6699153Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6699761Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:52.6700369Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6700699Z ##[debug] }, +2024-05-29T06:06:52.6700946Z ##[debug] { +2024-05-29T06:06:52.6701212Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:52.6701551Z ##[debug] "name": "test", +2024-05-29T06:06:52.6701880Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6702476Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:52.6703067Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6703393Z ##[debug] }, +2024-05-29T06:06:52.6703633Z ##[debug] { +2024-05-29T06:06:52.6703895Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:52.6704252Z ##[debug] "name": "typecheck", +2024-05-29T06:06:52.6704599Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6705179Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:52.6705776Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6706186Z ##[debug] } +2024-05-29T06:06:52.6706415Z ##[debug] ] +2024-05-29T06:06:52.6706649Z ##[debug] } +2024-05-29T06:06:52.6706876Z ##[debug] }, +2024-05-29T06:06:52.6707101Z ##[debug] "workflow": { +2024-05-29T06:06:52.6707385Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:52.6707959Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:52.6708418Z ##[debug] }, +2024-05-29T06:06:52.6708647Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6708952Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:52.6709391Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.6709702Z ##[debug] "workflow": { +2024-05-29T06:06:52.6709993Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:52.6710458Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:52.6710905Z ##[debug] } +2024-05-29T06:06:52.6711130Z ##[debug] } +2024-05-29T06:06:52.6711349Z ##[debug] }, +2024-05-29T06:06:52.6711559Z ##[debug] { +2024-05-29T06:06:52.6711782Z ##[debug] "checkRun": { +2024-05-29T06:06:52.6712072Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:52.6712391Z ##[debug] "name": "typos", +2024-05-29T06:06:52.6712697Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6713289Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:52.6713876Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6714174Z ##[debug] }, +2024-05-29T06:06:52.6714413Z ##[debug] "checkSuite": { +2024-05-29T06:06:52.6714695Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6715025Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:52.6715348Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6715654Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:52.6716100Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.6716423Z ##[debug] "workflow": { +2024-05-29T06:06:52.6716718Z ##[debug] "name": "👕", +2024-05-29T06:06:52.6717179Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:52.6717652Z ##[debug] } +2024-05-29T06:06:52.6717887Z ##[debug] }, +2024-05-29T06:06:52.6718129Z ##[debug] "checkRuns": { +2024-05-29T06:06:52.6718419Z ##[debug] "totalCount": 4, +2024-05-29T06:06:52.6718724Z ##[debug] "pageInfo": { +2024-05-29T06:06:52.6719027Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:52.6719463Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:52.6719858Z ##[debug] }, +2024-05-29T06:06:52.6720098Z ##[debug] "nodes": [ +2024-05-29T06:06:52.6720365Z ##[debug] { +2024-05-29T06:06:52.6720643Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:52.6720980Z ##[debug] "name": "typos", +2024-05-29T06:06:52.6721318Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6721926Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:52.6722536Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6722867Z ##[debug] }, +2024-05-29T06:06:52.6723152Z ##[debug] { +2024-05-29T06:06:52.6723425Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:52.6723766Z ##[debug] "name": "dprint", +2024-05-29T06:06:52.6724102Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6724707Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:52.6725303Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6725626Z ##[debug] }, +2024-05-29T06:06:52.6725955Z ##[debug] { +2024-05-29T06:06:52.6726222Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:52.6726574Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:52.6726915Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6727494Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:52.6728212Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6728538Z ##[debug] }, +2024-05-29T06:06:52.6728776Z ##[debug] { +2024-05-29T06:06:52.6729038Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:52.6729382Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:52.6729826Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6730416Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:52.6731028Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6731349Z ##[debug] } +2024-05-29T06:06:52.6731577Z ##[debug] ] +2024-05-29T06:06:52.6731808Z ##[debug] } +2024-05-29T06:06:52.6732030Z ##[debug] }, +2024-05-29T06:06:52.6732254Z ##[debug] "workflow": { +2024-05-29T06:06:52.6732541Z ##[debug] "name": "👕", +2024-05-29T06:06:52.6732982Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:52.6733447Z ##[debug] }, +2024-05-29T06:06:52.6733683Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6733985Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:52.6734314Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.6734639Z ##[debug] "workflow": { +2024-05-29T06:06:52.6734917Z ##[debug] "name": "👕", +2024-05-29T06:06:52.6735354Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:52.6735919Z ##[debug] } +2024-05-29T06:06:52.6736147Z ##[debug] } +2024-05-29T06:06:52.6736360Z ##[debug] }, +2024-05-29T06:06:52.6736576Z ##[debug] { +2024-05-29T06:06:52.6736797Z ##[debug] "checkRun": { +2024-05-29T06:06:52.6737085Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:52.6737412Z ##[debug] "name": "dprint", +2024-05-29T06:06:52.6737716Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6738316Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:52.6738904Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6739209Z ##[debug] }, +2024-05-29T06:06:52.6739443Z ##[debug] "checkSuite": { +2024-05-29T06:06:52.6739724Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6740055Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:52.6740373Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6740679Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:52.6741025Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.6741349Z ##[debug] "workflow": { +2024-05-29T06:06:52.6741632Z ##[debug] "name": "👕", +2024-05-29T06:06:52.6742088Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:52.6742548Z ##[debug] } +2024-05-29T06:06:52.6742774Z ##[debug] }, +2024-05-29T06:06:52.6743014Z ##[debug] "checkRuns": { +2024-05-29T06:06:52.6743310Z ##[debug] "totalCount": 4, +2024-05-29T06:06:52.6743607Z ##[debug] "pageInfo": { +2024-05-29T06:06:52.6743910Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:52.6744318Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:52.6744709Z ##[debug] }, +2024-05-29T06:06:52.6744946Z ##[debug] "nodes": [ +2024-05-29T06:06:52.6745210Z ##[debug] { +2024-05-29T06:06:52.6745485Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:52.6745909Z ##[debug] "name": "typos", +2024-05-29T06:06:52.6746240Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6746841Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:52.6747438Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6747759Z ##[debug] }, +2024-05-29T06:06:52.6747998Z ##[debug] { +2024-05-29T06:06:52.6748384Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:52.6748736Z ##[debug] "name": "dprint", +2024-05-29T06:06:52.6749067Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6749651Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:52.6750373Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6750690Z ##[debug] }, +2024-05-29T06:06:52.6750928Z ##[debug] { +2024-05-29T06:06:52.6751192Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:52.6751539Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:52.6751882Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6752457Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:52.6753069Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6753384Z ##[debug] }, +2024-05-29T06:06:52.6753620Z ##[debug] { +2024-05-29T06:06:52.6753891Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:52.6754232Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:52.6754565Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6755170Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:52.6755778Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6756191Z ##[debug] } +2024-05-29T06:06:52.6756417Z ##[debug] ] +2024-05-29T06:06:52.6756649Z ##[debug] } +2024-05-29T06:06:52.6756872Z ##[debug] }, +2024-05-29T06:06:52.6757096Z ##[debug] "workflow": { +2024-05-29T06:06:52.6757370Z ##[debug] "name": "👕", +2024-05-29T06:06:52.6757803Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:52.6758258Z ##[debug] }, +2024-05-29T06:06:52.6758501Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6758803Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:52.6759131Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.6759448Z ##[debug] "workflow": { +2024-05-29T06:06:52.6759724Z ##[debug] "name": "👕", +2024-05-29T06:06:52.6760163Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:52.6760626Z ##[debug] } +2024-05-29T06:06:52.6760855Z ##[debug] } +2024-05-29T06:06:52.6761070Z ##[debug] }, +2024-05-29T06:06:52.6761290Z ##[debug] { +2024-05-29T06:06:52.6761517Z ##[debug] "checkRun": { +2024-05-29T06:06:52.6761801Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:52.6762130Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:52.6762443Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6763027Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:52.6763621Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6763924Z ##[debug] }, +2024-05-29T06:06:52.6764150Z ##[debug] "checkSuite": { +2024-05-29T06:06:52.6764433Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6764759Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:52.6765086Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6765393Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:52.6765740Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.6766163Z ##[debug] "workflow": { +2024-05-29T06:06:52.6766445Z ##[debug] "name": "👕", +2024-05-29T06:06:52.6766898Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:52.6767359Z ##[debug] } +2024-05-29T06:06:52.6767590Z ##[debug] }, +2024-05-29T06:06:52.6767830Z ##[debug] "checkRuns": { +2024-05-29T06:06:52.6768120Z ##[debug] "totalCount": 4, +2024-05-29T06:06:52.6768598Z ##[debug] "pageInfo": { +2024-05-29T06:06:52.6768914Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:52.6769317Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:52.6769701Z ##[debug] }, +2024-05-29T06:06:52.6769942Z ##[debug] "nodes": [ +2024-05-29T06:06:52.6770320Z ##[debug] { +2024-05-29T06:06:52.6770591Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:52.6770933Z ##[debug] "name": "typos", +2024-05-29T06:06:52.6771266Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6771864Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:52.6772475Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6772799Z ##[debug] }, +2024-05-29T06:06:52.6773038Z ##[debug] { +2024-05-29T06:06:52.6773305Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:52.6773650Z ##[debug] "name": "dprint", +2024-05-29T06:06:52.6773982Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6774565Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:52.6775180Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6775496Z ##[debug] }, +2024-05-29T06:06:52.6775732Z ##[debug] { +2024-05-29T06:06:52.6776103Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:52.6776461Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:52.6776797Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6777383Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:52.6777979Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6778293Z ##[debug] }, +2024-05-29T06:06:52.6778525Z ##[debug] { +2024-05-29T06:06:52.6778800Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:52.6779140Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:52.6779470Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6780066Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:52.6780692Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6781006Z ##[debug] } +2024-05-29T06:06:52.6781238Z ##[debug] ] +2024-05-29T06:06:52.6781468Z ##[debug] } +2024-05-29T06:06:52.6781685Z ##[debug] }, +2024-05-29T06:06:52.6781919Z ##[debug] "workflow": { +2024-05-29T06:06:52.6782195Z ##[debug] "name": "👕", +2024-05-29T06:06:52.6782620Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:52.6783080Z ##[debug] }, +2024-05-29T06:06:52.6783319Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6783616Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:52.6783956Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.6784272Z ##[debug] "workflow": { +2024-05-29T06:06:52.6784545Z ##[debug] "name": "👕", +2024-05-29T06:06:52.6784987Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:52.6785454Z ##[debug] } +2024-05-29T06:06:52.6785693Z ##[debug] } +2024-05-29T06:06:52.6786003Z ##[debug] }, +2024-05-29T06:06:52.6786241Z ##[debug] { +2024-05-29T06:06:52.6786463Z ##[debug] "checkRun": { +2024-05-29T06:06:52.6786748Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:52.6787074Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:52.6787381Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6787962Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:52.6788556Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6788863Z ##[debug] }, +2024-05-29T06:06:52.6789213Z ##[debug] "checkSuite": { +2024-05-29T06:06:52.6789510Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6789835Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:52.6790150Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6790566Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:52.6790923Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.6791242Z ##[debug] "workflow": { +2024-05-29T06:06:52.6791532Z ##[debug] "name": "👕", +2024-05-29T06:06:52.6791980Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:52.6792436Z ##[debug] } +2024-05-29T06:06:52.6792674Z ##[debug] }, +2024-05-29T06:06:52.6792913Z ##[debug] "checkRuns": { +2024-05-29T06:06:52.6793202Z ##[debug] "totalCount": 4, +2024-05-29T06:06:52.6793502Z ##[debug] "pageInfo": { +2024-05-29T06:06:52.6793802Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:52.6794214Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:52.6794597Z ##[debug] }, +2024-05-29T06:06:52.6794840Z ##[debug] "nodes": [ +2024-05-29T06:06:52.6795105Z ##[debug] { +2024-05-29T06:06:52.6795385Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:52.6795727Z ##[debug] "name": "typos", +2024-05-29T06:06:52.6796155Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6796751Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:52.6797360Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6797682Z ##[debug] }, +2024-05-29T06:06:52.6797920Z ##[debug] { +2024-05-29T06:06:52.6798191Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:52.6798533Z ##[debug] "name": "dprint", +2024-05-29T06:06:52.6798859Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6799457Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:52.6800058Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6800375Z ##[debug] }, +2024-05-29T06:06:52.6800619Z ##[debug] { +2024-05-29T06:06:52.6800886Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:52.6801230Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:52.6801562Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6802150Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:52.6802744Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6803052Z ##[debug] }, +2024-05-29T06:06:52.6803296Z ##[debug] { +2024-05-29T06:06:52.6803567Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:52.6803907Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:52.6804240Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6804841Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:52.6805450Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6805764Z ##[debug] } +2024-05-29T06:06:52.6806091Z ##[debug] ] +2024-05-29T06:06:52.6806323Z ##[debug] } +2024-05-29T06:06:52.6806540Z ##[debug] }, +2024-05-29T06:06:52.6806767Z ##[debug] "workflow": { +2024-05-29T06:06:52.6807040Z ##[debug] "name": "👕", +2024-05-29T06:06:52.6807469Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:52.6807929Z ##[debug] }, +2024-05-29T06:06:52.6808162Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6808460Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:52.6808793Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.6809231Z ##[debug] "workflow": { +2024-05-29T06:06:52.6809508Z ##[debug] "name": "👕", +2024-05-29T06:06:52.6809948Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:52.6810409Z ##[debug] } +2024-05-29T06:06:52.6810744Z ##[debug] } +2024-05-29T06:06:52.6810962Z ##[debug] }, +2024-05-29T06:06:52.6811179Z ##[debug] { +2024-05-29T06:06:52.6811400Z ##[debug] "checkRun": { +2024-05-29T06:06:52.6811690Z ##[debug] "databaseId": 25536411289, +2024-05-29T06:06:52.6812017Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:52.6812321Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6812909Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", +2024-05-29T06:06:52.6813507Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6813808Z ##[debug] }, +2024-05-29T06:06:52.6814034Z ##[debug] "checkSuite": { +2024-05-29T06:06:52.6814327Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6814656Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:52.6814971Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6815283Z ##[debug] "databaseId": 9281068678, +2024-05-29T06:06:52.6815637Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.6816056Z ##[debug] "workflow": { +2024-05-29T06:06:52.6816344Z ##[debug] "name": "💧", +2024-05-29T06:06:52.6816815Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:52.6817290Z ##[debug] } +2024-05-29T06:06:52.6817521Z ##[debug] }, +2024-05-29T06:06:52.6817760Z ##[debug] "checkRuns": { +2024-05-29T06:06:52.6818044Z ##[debug] "totalCount": 1, +2024-05-29T06:06:52.6818344Z ##[debug] "pageInfo": { +2024-05-29T06:06:52.6818647Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:52.6819049Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpk=" +2024-05-29T06:06:52.6819444Z ##[debug] }, +2024-05-29T06:06:52.6819689Z ##[debug] "nodes": [ +2024-05-29T06:06:52.6819948Z ##[debug] { +2024-05-29T06:06:52.6820225Z ##[debug] "databaseId": 25536411289, +2024-05-29T06:06:52.6820574Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:52.6820913Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6821520Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", +2024-05-29T06:06:52.6822132Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6822456Z ##[debug] } +2024-05-29T06:06:52.6822686Z ##[debug] ] +2024-05-29T06:06:52.6822916Z ##[debug] } +2024-05-29T06:06:52.6823165Z ##[debug] }, +2024-05-29T06:06:52.6823388Z ##[debug] "workflow": { +2024-05-29T06:06:52.6823659Z ##[debug] "name": "💧", +2024-05-29T06:06:52.6824114Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:52.6824583Z ##[debug] }, +2024-05-29T06:06:52.6824818Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6825118Z ##[debug] "databaseId": 9281068678, +2024-05-29T06:06:52.6825440Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.6825761Z ##[debug] "workflow": { +2024-05-29T06:06:52.6826134Z ##[debug] "name": "💧", +2024-05-29T06:06:52.6826586Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:52.6827064Z ##[debug] } +2024-05-29T06:06:52.6827287Z ##[debug] } +2024-05-29T06:06:52.6827502Z ##[debug] }, +2024-05-29T06:06:52.6827718Z ##[debug] { +2024-05-29T06:06:52.6827945Z ##[debug] "checkRun": { +2024-05-29T06:06:52.6828226Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:52.6828566Z ##[debug] "name": "intermediate", +2024-05-29T06:06:52.6828888Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6829612Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:52.6830254Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6830558Z ##[debug] }, +2024-05-29T06:06:52.6830790Z ##[debug] "checkSuite": { +2024-05-29T06:06:52.6831175Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:52.6831482Z ##[debug] "conclusion": null, +2024-05-29T06:06:52.6831784Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6832093Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:52.6832438Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.6832762Z ##[debug] "workflow": { +2024-05-29T06:06:52.6833106Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:52.6833682Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:52.6834181Z ##[debug] } +2024-05-29T06:06:52.6834408Z ##[debug] }, +2024-05-29T06:06:52.6834653Z ##[debug] "checkRuns": { +2024-05-29T06:06:52.6834944Z ##[debug] "totalCount": 5, +2024-05-29T06:06:52.6835237Z ##[debug] "pageInfo": { +2024-05-29T06:06:52.6835547Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:52.6836045Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZI0=" +2024-05-29T06:06:52.6836437Z ##[debug] }, +2024-05-29T06:06:52.6836677Z ##[debug] "nodes": [ +2024-05-29T06:06:52.6836942Z ##[debug] { +2024-05-29T06:06:52.6837215Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:52.6837579Z ##[debug] "name": "intermediate", +2024-05-29T06:06:52.6837935Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6838537Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:52.6839138Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6839460Z ##[debug] }, +2024-05-29T06:06:52.6839708Z ##[debug] { +2024-05-29T06:06:52.6839977Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:52.6840339Z ##[debug] "name": "wait-success", +2024-05-29T06:06:52.6840704Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:52.6841312Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:52.6841905Z ##[debug] "conclusion": null +2024-05-29T06:06:52.6842211Z ##[debug] }, +2024-05-29T06:06:52.6842444Z ##[debug] { +2024-05-29T06:06:52.6842715Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:52.6843101Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:52.6843482Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6844071Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:52.6844682Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6845004Z ##[debug] }, +2024-05-29T06:06:52.6845238Z ##[debug] { +2024-05-29T06:06:52.6845512Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:52.6845957Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:52.6846305Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:52.6846927Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:52.6847520Z ##[debug] "conclusion": null +2024-05-29T06:06:52.6847826Z ##[debug] }, +2024-05-29T06:06:52.6848059Z ##[debug] { +2024-05-29T06:06:52.6848331Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:06:52.6848715Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:06:52.6849067Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:52.6849774Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:52.6850370Z ##[debug] "conclusion": null +2024-05-29T06:06:52.6850666Z ##[debug] } +2024-05-29T06:06:52.6850903Z ##[debug] ] +2024-05-29T06:06:52.6851134Z ##[debug] } +2024-05-29T06:06:52.6851581Z ##[debug] }, +2024-05-29T06:06:52.6851817Z ##[debug] "workflow": { +2024-05-29T06:06:52.6852150Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:52.6852705Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:52.6853205Z ##[debug] }, +2024-05-29T06:06:52.6853441Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6853738Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:52.6854073Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.6854393Z ##[debug] "workflow": { +2024-05-29T06:06:52.6854728Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:52.6855304Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:52.6855893Z ##[debug] } +2024-05-29T06:06:52.6856118Z ##[debug] } +2024-05-29T06:06:52.6856333Z ##[debug] }, +2024-05-29T06:06:52.6856548Z ##[debug] { +2024-05-29T06:06:52.6856778Z ##[debug] "checkRun": { +2024-05-29T06:06:52.6857065Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:52.6857406Z ##[debug] "name": "wait-success", +2024-05-29T06:06:52.6857737Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:52.6858328Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:52.6858919Z ##[debug] "conclusion": null +2024-05-29T06:06:52.6859208Z ##[debug] }, +2024-05-29T06:06:52.6859435Z ##[debug] "checkSuite": { +2024-05-29T06:06:52.6859724Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:52.6860033Z ##[debug] "conclusion": null, +2024-05-29T06:06:52.6860341Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6860655Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:52.6861008Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.6861330Z ##[debug] "workflow": { +2024-05-29T06:06:52.6861687Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:52.6862258Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:52.6862869Z ##[debug] } +2024-05-29T06:06:52.6863237Z ##[debug] }, +2024-05-29T06:06:52.6863569Z ##[debug] "checkRuns": { +2024-05-29T06:06:52.6863860Z ##[debug] "totalCount": 5, +2024-05-29T06:06:52.6864202Z ##[debug] "pageInfo": { +2024-05-29T06:06:52.6864512Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:52.6864922Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZI0=" +2024-05-29T06:06:52.6865310Z ##[debug] }, +2024-05-29T06:06:52.6865554Z ##[debug] "nodes": [ +2024-05-29T06:06:52.6865915Z ##[debug] { +2024-05-29T06:06:52.6866192Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:52.6866559Z ##[debug] "name": "intermediate", +2024-05-29T06:06:52.6866918Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6867530Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:52.6868149Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6868471Z ##[debug] }, +2024-05-29T06:06:52.6868711Z ##[debug] { +2024-05-29T06:06:52.6868982Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:52.6869339Z ##[debug] "name": "wait-success", +2024-05-29T06:06:52.6869696Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:52.6870306Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:52.6871056Z ##[debug] "conclusion": null +2024-05-29T06:06:52.6871371Z ##[debug] }, +2024-05-29T06:06:52.6871606Z ##[debug] { +2024-05-29T06:06:52.6871882Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:52.6872262Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:52.6872751Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6873353Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:52.6873959Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6874272Z ##[debug] }, +2024-05-29T06:06:52.6874511Z ##[debug] { +2024-05-29T06:06:52.6874783Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:52.6875132Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:52.6875474Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:52.6876354Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:52.6876959Z ##[debug] "conclusion": null +2024-05-29T06:06:52.6877257Z ##[debug] }, +2024-05-29T06:06:52.6877504Z ##[debug] { +2024-05-29T06:06:52.6877783Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:06:52.6878147Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:06:52.6878510Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:52.6879104Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:52.6879689Z ##[debug] "conclusion": null +2024-05-29T06:06:52.6879990Z ##[debug] } +2024-05-29T06:06:52.6880224Z ##[debug] ] +2024-05-29T06:06:52.6880449Z ##[debug] } +2024-05-29T06:06:52.6880670Z ##[debug] }, +2024-05-29T06:06:52.6880902Z ##[debug] "workflow": { +2024-05-29T06:06:52.6881231Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:52.6881794Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:52.6882292Z ##[debug] }, +2024-05-29T06:06:52.6882528Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6882830Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:52.6883165Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.6883479Z ##[debug] "workflow": { +2024-05-29T06:06:52.6883813Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:52.6884374Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:52.6884868Z ##[debug] } +2024-05-29T06:06:52.6885086Z ##[debug] } +2024-05-29T06:06:52.6885306Z ##[debug] }, +2024-05-29T06:06:52.6885523Z ##[debug] { +2024-05-29T06:06:52.6885741Z ##[debug] "checkRun": { +2024-05-29T06:06:52.6886130Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:52.6886496Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:52.6886848Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6887441Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:52.6888043Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6888345Z ##[debug] }, +2024-05-29T06:06:52.6888572Z ##[debug] "checkSuite": { +2024-05-29T06:06:52.6888855Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:52.6889160Z ##[debug] "conclusion": null, +2024-05-29T06:06:52.6889458Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6889771Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:52.6890117Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.6890441Z ##[debug] "workflow": { +2024-05-29T06:06:52.6890804Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:52.6891496Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:52.6891991Z ##[debug] } +2024-05-29T06:06:52.6892221Z ##[debug] }, +2024-05-29T06:06:52.6892452Z ##[debug] "checkRuns": { +2024-05-29T06:06:52.6892731Z ##[debug] "totalCount": 5, +2024-05-29T06:06:52.6893128Z ##[debug] "pageInfo": { +2024-05-29T06:06:52.6893424Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:52.6893817Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZI0=" +2024-05-29T06:06:52.6894195Z ##[debug] }, +2024-05-29T06:06:52.6894432Z ##[debug] "nodes": [ +2024-05-29T06:06:52.6894683Z ##[debug] { +2024-05-29T06:06:52.6894954Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:52.6895312Z ##[debug] "name": "intermediate", +2024-05-29T06:06:52.6895666Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6896404Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:52.6897011Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6897334Z ##[debug] }, +2024-05-29T06:06:52.6897571Z ##[debug] { +2024-05-29T06:06:52.6897841Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:52.6898201Z ##[debug] "name": "wait-success", +2024-05-29T06:06:52.6898549Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:52.6899157Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:52.6899763Z ##[debug] "conclusion": null +2024-05-29T06:06:52.6900062Z ##[debug] }, +2024-05-29T06:06:52.6900302Z ##[debug] { +2024-05-29T06:06:52.6900572Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:52.6900956Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:52.6901339Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6901944Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:52.6902550Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6902865Z ##[debug] }, +2024-05-29T06:06:52.6903108Z ##[debug] { +2024-05-29T06:06:52.6903375Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:52.6903716Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:52.6904068Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:52.6904676Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:52.6905270Z ##[debug] "conclusion": null +2024-05-29T06:06:52.6905574Z ##[debug] }, +2024-05-29T06:06:52.6905911Z ##[debug] { +2024-05-29T06:06:52.6906173Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:06:52.6906539Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:06:52.6906904Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:52.6907501Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:52.6908082Z ##[debug] "conclusion": null +2024-05-29T06:06:52.6908392Z ##[debug] } +2024-05-29T06:06:52.6908626Z ##[debug] ] +2024-05-29T06:06:52.6908852Z ##[debug] } +2024-05-29T06:06:52.6909070Z ##[debug] }, +2024-05-29T06:06:52.6909297Z ##[debug] "workflow": { +2024-05-29T06:06:52.6909620Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:52.6910178Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:52.6910676Z ##[debug] }, +2024-05-29T06:06:52.6910911Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6911208Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:52.6911544Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.6911996Z ##[debug] "workflow": { +2024-05-29T06:06:52.6912339Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:52.6912903Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:52.6913502Z ##[debug] } +2024-05-29T06:06:52.6913721Z ##[debug] } +2024-05-29T06:06:52.6913942Z ##[debug] }, +2024-05-29T06:06:52.6914162Z ##[debug] { +2024-05-29T06:06:52.6914377Z ##[debug] "checkRun": { +2024-05-29T06:06:52.6914665Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:52.6914995Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:52.6915305Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:52.6915993Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:52.6916585Z ##[debug] "conclusion": null +2024-05-29T06:06:52.6916871Z ##[debug] }, +2024-05-29T06:06:52.6917107Z ##[debug] "checkSuite": { +2024-05-29T06:06:52.6917389Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:52.6917688Z ##[debug] "conclusion": null, +2024-05-29T06:06:52.6917995Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6918307Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:52.6918652Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.6918976Z ##[debug] "workflow": { +2024-05-29T06:06:52.6919323Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:52.6919886Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:52.6920381Z ##[debug] } +2024-05-29T06:06:52.6920612Z ##[debug] }, +2024-05-29T06:06:52.6920848Z ##[debug] "checkRuns": { +2024-05-29T06:06:52.6921133Z ##[debug] "totalCount": 5, +2024-05-29T06:06:52.6921431Z ##[debug] "pageInfo": { +2024-05-29T06:06:52.6921735Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:52.6922135Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZI0=" +2024-05-29T06:06:52.6922521Z ##[debug] }, +2024-05-29T06:06:52.6922763Z ##[debug] "nodes": [ +2024-05-29T06:06:52.6923044Z ##[debug] { +2024-05-29T06:06:52.6923322Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:52.6923695Z ##[debug] "name": "intermediate", +2024-05-29T06:06:52.6924043Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6924649Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:52.6925258Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6925575Z ##[debug] }, +2024-05-29T06:06:52.6925908Z ##[debug] { +2024-05-29T06:06:52.6926185Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:52.6926538Z ##[debug] "name": "wait-success", +2024-05-29T06:06:52.6926892Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:52.6927504Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:52.6928105Z ##[debug] "conclusion": null +2024-05-29T06:06:52.6928404Z ##[debug] }, +2024-05-29T06:06:52.6928648Z ##[debug] { +2024-05-29T06:06:52.6934972Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:52.6935420Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:52.6935959Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6936590Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:52.6937210Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6937531Z ##[debug] }, +2024-05-29T06:06:52.6937775Z ##[debug] { +2024-05-29T06:06:52.6938055Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:52.6938577Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:52.6938938Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:52.6939553Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:52.6940255Z ##[debug] "conclusion": null +2024-05-29T06:06:52.6940567Z ##[debug] }, +2024-05-29T06:06:52.6940811Z ##[debug] { +2024-05-29T06:06:52.6941081Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:06:52.6941456Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:06:52.6941821Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:52.6942404Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:52.6942994Z ##[debug] "conclusion": null +2024-05-29T06:06:52.6943298Z ##[debug] } +2024-05-29T06:06:52.6943533Z ##[debug] ] +2024-05-29T06:06:52.6943768Z ##[debug] } +2024-05-29T06:06:52.6943999Z ##[debug] }, +2024-05-29T06:06:52.6944233Z ##[debug] "workflow": { +2024-05-29T06:06:52.6944563Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:52.6945131Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:52.6945633Z ##[debug] }, +2024-05-29T06:06:52.6945964Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6946266Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:52.6946601Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.6946912Z ##[debug] "workflow": { +2024-05-29T06:06:52.6947257Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:52.6947825Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:52.6948319Z ##[debug] } +2024-05-29T06:06:52.6948544Z ##[debug] } +2024-05-29T06:06:52.6948761Z ##[debug] }, +2024-05-29T06:06:52.6948976Z ##[debug] { +2024-05-29T06:06:52.6949201Z ##[debug] "checkRun": { +2024-05-29T06:06:52.6949490Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:06:52.6949835Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:06:52.6950172Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:52.6950766Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:52.6951368Z ##[debug] "conclusion": null +2024-05-29T06:06:52.6951652Z ##[debug] }, +2024-05-29T06:06:52.6951886Z ##[debug] "checkSuite": { +2024-05-29T06:06:52.6952172Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:52.6952473Z ##[debug] "conclusion": null, +2024-05-29T06:06:52.6952775Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6953093Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:52.6953432Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.6953757Z ##[debug] "workflow": { +2024-05-29T06:06:52.6954115Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:52.6954687Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:52.6955192Z ##[debug] } +2024-05-29T06:06:52.6955433Z ##[debug] }, +2024-05-29T06:06:52.6955669Z ##[debug] "checkRuns": { +2024-05-29T06:06:52.6956053Z ##[debug] "totalCount": 5, +2024-05-29T06:06:52.6956353Z ##[debug] "pageInfo": { +2024-05-29T06:06:52.6956654Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:52.6957061Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZI0=" +2024-05-29T06:06:52.6957448Z ##[debug] }, +2024-05-29T06:06:52.6957684Z ##[debug] "nodes": [ +2024-05-29T06:06:52.6957949Z ##[debug] { +2024-05-29T06:06:52.6958230Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:52.6958590Z ##[debug] "name": "intermediate", +2024-05-29T06:06:52.6959066Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6959686Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:52.6960296Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6960713Z ##[debug] }, +2024-05-29T06:06:52.6960960Z ##[debug] { +2024-05-29T06:06:52.6961231Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:52.6961583Z ##[debug] "name": "wait-success", +2024-05-29T06:06:52.6961929Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:52.6962537Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:52.6963129Z ##[debug] "conclusion": null +2024-05-29T06:06:52.6963435Z ##[debug] }, +2024-05-29T06:06:52.6963676Z ##[debug] { +2024-05-29T06:06:52.6963942Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:52.6964325Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:52.6964709Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6965326Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:52.6966033Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.6966356Z ##[debug] }, +2024-05-29T06:06:52.6966593Z ##[debug] { +2024-05-29T06:06:52.6966856Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:52.6967204Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:52.6967553Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:52.6968145Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:52.6968739Z ##[debug] "conclusion": null +2024-05-29T06:06:52.6969045Z ##[debug] }, +2024-05-29T06:06:52.6969282Z ##[debug] { +2024-05-29T06:06:52.6969549Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:06:52.6969914Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:06:52.6970278Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:52.6970853Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:52.6971455Z ##[debug] "conclusion": null +2024-05-29T06:06:52.6971762Z ##[debug] } +2024-05-29T06:06:52.6971994Z ##[debug] ] +2024-05-29T06:06:52.6972225Z ##[debug] } +2024-05-29T06:06:52.6972451Z ##[debug] }, +2024-05-29T06:06:52.6972677Z ##[debug] "workflow": { +2024-05-29T06:06:52.6973008Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:52.6973567Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:52.6974052Z ##[debug] }, +2024-05-29T06:06:52.6974289Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6974601Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:52.6974938Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.6975257Z ##[debug] "workflow": { +2024-05-29T06:06:52.6975592Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:52.6976261Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:52.6976762Z ##[debug] } +2024-05-29T06:06:52.6976987Z ##[debug] } +2024-05-29T06:06:52.6977201Z ##[debug] }, +2024-05-29T06:06:52.6977416Z ##[debug] { +2024-05-29T06:06:52.6977642Z ##[debug] "checkRun": { +2024-05-29T06:06:52.6977927Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:52.6978280Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:52.6978619Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6979207Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:52.6979929Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:52.6980235Z ##[debug] }, +2024-05-29T06:06:52.6980462Z ##[debug] "checkSuite": { +2024-05-29T06:06:52.6980753Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6981080Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:52.6981519Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.6981829Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:52.6982172Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.6982493Z ##[debug] "workflow": { +2024-05-29T06:06:52.6982797Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:52.6983317Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:52.6983820Z ##[debug] } +2024-05-29T06:06:52.6984050Z ##[debug] }, +2024-05-29T06:06:52.6984288Z ##[debug] "checkRuns": { +2024-05-29T06:06:52.6984577Z ##[debug] "totalCount": 4, +2024-05-29T06:06:52.6984884Z ##[debug] "pageInfo": { +2024-05-29T06:06:52.6985189Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:52.6985598Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:52.6986081Z ##[debug] }, +2024-05-29T06:06:52.6986346Z ##[debug] "nodes": [ +2024-05-29T06:06:52.6986614Z ##[debug] { +2024-05-29T06:06:52.6986885Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:52.6987259Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:52.6987632Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6988238Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:52.6988848Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:52.6989173Z ##[debug] }, +2024-05-29T06:06:52.6989410Z ##[debug] { +2024-05-29T06:06:52.6989675Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:52.6990028Z ##[debug] "name": "renovate", +2024-05-29T06:06:52.6990366Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6990960Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:52.6991574Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:52.6991892Z ##[debug] }, +2024-05-29T06:06:52.6992123Z ##[debug] { +2024-05-29T06:06:52.6992390Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:52.6992750Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:52.6993102Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6993690Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:52.6994290Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:52.6994601Z ##[debug] }, +2024-05-29T06:06:52.6994835Z ##[debug] { +2024-05-29T06:06:52.6995101Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:52.6995450Z ##[debug] "name": "dependabot", +2024-05-29T06:06:52.6995879Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.6996465Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:52.6997065Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:52.6997371Z ##[debug] } +2024-05-29T06:06:52.6997606Z ##[debug] ] +2024-05-29T06:06:52.6997835Z ##[debug] } +2024-05-29T06:06:52.6998052Z ##[debug] }, +2024-05-29T06:06:52.6998280Z ##[debug] "workflow": { +2024-05-29T06:06:52.6998561Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:52.6999043Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:52.6999537Z ##[debug] }, +2024-05-29T06:06:52.6999769Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.7000186Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:52.7000538Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.7000861Z ##[debug] "workflow": { +2024-05-29T06:06:52.7001146Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:52.7001745Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:52.7002244Z ##[debug] } +2024-05-29T06:06:52.7002476Z ##[debug] } +2024-05-29T06:06:52.7002687Z ##[debug] }, +2024-05-29T06:06:52.7002771Z ##[debug] { +2024-05-29T06:06:52.7002863Z ##[debug] "checkRun": { +2024-05-29T06:06:52.7002973Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:52.7003074Z ##[debug] "name": "renovate", +2024-05-29T06:06:52.7003185Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7003565Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:52.7003685Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:52.7003767Z ##[debug] }, +2024-05-29T06:06:52.7003863Z ##[debug] "checkSuite": { +2024-05-29T06:06:52.7003973Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7004079Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:52.7004186Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.7004300Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:52.7004410Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.7004508Z ##[debug] "workflow": { +2024-05-29T06:06:52.7004606Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:52.7004919Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:52.7005016Z ##[debug] } +2024-05-29T06:06:52.7005098Z ##[debug] }, +2024-05-29T06:06:52.7005193Z ##[debug] "checkRuns": { +2024-05-29T06:06:52.7005294Z ##[debug] "totalCount": 4, +2024-05-29T06:06:52.7005396Z ##[debug] "pageInfo": { +2024-05-29T06:06:52.7005511Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:52.7005691Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:52.7005773Z ##[debug] }, +2024-05-29T06:06:52.7005959Z ##[debug] "nodes": [ +2024-05-29T06:06:52.7006048Z ##[debug] { +2024-05-29T06:06:52.7006171Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:52.7006306Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:52.7006423Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7006792Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:52.7006915Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:52.7006998Z ##[debug] }, +2024-05-29T06:06:52.7007085Z ##[debug] { +2024-05-29T06:06:52.7007202Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:52.7007309Z ##[debug] "name": "renovate", +2024-05-29T06:06:52.7007439Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7007804Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:52.7007928Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:52.7008015Z ##[debug] }, +2024-05-29T06:06:52.7008099Z ##[debug] { +2024-05-29T06:06:52.7008218Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:52.7008343Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:52.7008456Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7008814Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:52.7008928Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:52.7009011Z ##[debug] }, +2024-05-29T06:06:52.7009099Z ##[debug] { +2024-05-29T06:06:52.7009335Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:52.7009453Z ##[debug] "name": "dependabot", +2024-05-29T06:06:52.7009569Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7009924Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:52.7010143Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:52.7010226Z ##[debug] } +2024-05-29T06:06:52.7010307Z ##[debug] ] +2024-05-29T06:06:52.7010391Z ##[debug] } +2024-05-29T06:06:52.7010471Z ##[debug] }, +2024-05-29T06:06:52.7010563Z ##[debug] "workflow": { +2024-05-29T06:06:52.7010667Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:52.7010948Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:52.7011028Z ##[debug] }, +2024-05-29T06:06:52.7011127Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.7011246Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:52.7011357Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.7011448Z ##[debug] "workflow": { +2024-05-29T06:06:52.7011546Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:52.7011832Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:52.7011921Z ##[debug] } +2024-05-29T06:06:52.7012001Z ##[debug] } +2024-05-29T06:06:52.7012088Z ##[debug] }, +2024-05-29T06:06:52.7012169Z ##[debug] { +2024-05-29T06:06:52.7012261Z ##[debug] "checkRun": { +2024-05-29T06:06:52.7012376Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:52.7012481Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:52.7012583Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7012952Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:52.7013057Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:52.7013152Z ##[debug] }, +2024-05-29T06:06:52.7013247Z ##[debug] "checkSuite": { +2024-05-29T06:06:52.7013346Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7013458Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:52.7013560Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.7013673Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:52.7013789Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.7013883Z ##[debug] "workflow": { +2024-05-29T06:06:52.7013982Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:52.7014272Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:52.7014354Z ##[debug] } +2024-05-29T06:06:52.7014440Z ##[debug] }, +2024-05-29T06:06:52.7014532Z ##[debug] "checkRuns": { +2024-05-29T06:06:52.7014628Z ##[debug] "totalCount": 4, +2024-05-29T06:06:52.7014725Z ##[debug] "pageInfo": { +2024-05-29T06:06:52.7014840Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:52.7015018Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:52.7015108Z ##[debug] }, +2024-05-29T06:06:52.7015196Z ##[debug] "nodes": [ +2024-05-29T06:06:52.7015284Z ##[debug] { +2024-05-29T06:06:52.7015411Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:52.7015540Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:52.7015656Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7016121Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:52.7016239Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:52.7016326Z ##[debug] }, +2024-05-29T06:06:52.7016408Z ##[debug] { +2024-05-29T06:06:52.7016525Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:52.7016632Z ##[debug] "name": "renovate", +2024-05-29T06:06:52.7016866Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7017234Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:52.7017353Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:52.7017560Z ##[debug] }, +2024-05-29T06:06:52.7017646Z ##[debug] { +2024-05-29T06:06:52.7017763Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:52.7017884Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:52.7018002Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7018354Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:52.7018467Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:52.7018557Z ##[debug] }, +2024-05-29T06:06:52.7018638Z ##[debug] { +2024-05-29T06:06:52.7018763Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:52.7018874Z ##[debug] "name": "dependabot", +2024-05-29T06:06:52.7018987Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7019344Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:52.7019463Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:52.7019545Z ##[debug] } +2024-05-29T06:06:52.7019629Z ##[debug] ] +2024-05-29T06:06:52.7019707Z ##[debug] } +2024-05-29T06:06:52.7019787Z ##[debug] }, +2024-05-29T06:06:52.7019881Z ##[debug] "workflow": { +2024-05-29T06:06:52.7019979Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:52.7020264Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:52.7020345Z ##[debug] }, +2024-05-29T06:06:52.7020439Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.7020554Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:52.7020663Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.7020753Z ##[debug] "workflow": { +2024-05-29T06:06:52.7020853Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:52.7021142Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:52.7021230Z ##[debug] } +2024-05-29T06:06:52.7021314Z ##[debug] } +2024-05-29T06:06:52.7021392Z ##[debug] }, +2024-05-29T06:06:52.7021471Z ##[debug] { +2024-05-29T06:06:52.7021566Z ##[debug] "checkRun": { +2024-05-29T06:06:52.7021675Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:52.7021783Z ##[debug] "name": "dependabot", +2024-05-29T06:06:52.7021885Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7022251Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:52.7022361Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:52.7022447Z ##[debug] }, +2024-05-29T06:06:52.7022540Z ##[debug] "checkSuite": { +2024-05-29T06:06:52.7022642Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7022746Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:52.7022840Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.7022961Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:52.7023104Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.7023202Z ##[debug] "workflow": { +2024-05-29T06:06:52.7023299Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:52.7023581Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:52.7023666Z ##[debug] } +2024-05-29T06:06:52.7023746Z ##[debug] }, +2024-05-29T06:06:52.7023839Z ##[debug] "checkRuns": { +2024-05-29T06:06:52.7023938Z ##[debug] "totalCount": 4, +2024-05-29T06:06:52.7024030Z ##[debug] "pageInfo": { +2024-05-29T06:06:52.7024230Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:52.7024411Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:52.7024492Z ##[debug] }, +2024-05-29T06:06:52.7024579Z ##[debug] "nodes": [ +2024-05-29T06:06:52.7024665Z ##[debug] { +2024-05-29T06:06:52.7024899Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:52.7025032Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:52.7025145Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7025506Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:52.7025628Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:52.7025709Z ##[debug] }, +2024-05-29T06:06:52.7025890Z ##[debug] { +2024-05-29T06:06:52.7026017Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:52.7026119Z ##[debug] "name": "renovate", +2024-05-29T06:06:52.7026243Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7026608Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:52.7026727Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:52.7026822Z ##[debug] }, +2024-05-29T06:06:52.7026902Z ##[debug] { +2024-05-29T06:06:52.7027020Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:52.7027141Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:52.7027249Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7027599Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:52.7027718Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:52.7027801Z ##[debug] }, +2024-05-29T06:06:52.7027886Z ##[debug] { +2024-05-29T06:06:52.7028001Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:52.7028116Z ##[debug] "name": "dependabot", +2024-05-29T06:06:52.7028232Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7028588Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:52.7028708Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:52.7028796Z ##[debug] } +2024-05-29T06:06:52.7028879Z ##[debug] ] +2024-05-29T06:06:52.7028965Z ##[debug] } +2024-05-29T06:06:52.7029045Z ##[debug] }, +2024-05-29T06:06:52.7029136Z ##[debug] "workflow": { +2024-05-29T06:06:52.7029239Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:52.7029519Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:52.7029601Z ##[debug] }, +2024-05-29T06:06:52.7029703Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.7029806Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:52.7029917Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.7030013Z ##[debug] "workflow": { +2024-05-29T06:06:52.7030113Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:52.7030397Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:52.7030493Z ##[debug] } +2024-05-29T06:06:52.7030573Z ##[debug] } +2024-05-29T06:06:52.7030659Z ##[debug] }, +2024-05-29T06:06:52.7030746Z ##[debug] { +2024-05-29T06:06:52.7030837Z ##[debug] "checkRun": { +2024-05-29T06:06:52.7030953Z ##[debug] "databaseId": 25536411287, +2024-05-29T06:06:52.7031047Z ##[debug] "name": "echo", +2024-05-29T06:06:52.7031149Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7031518Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", +2024-05-29T06:06:52.7031622Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7031701Z ##[debug] }, +2024-05-29T06:06:52.7031923Z ##[debug] "checkSuite": { +2024-05-29T06:06:52.7032044Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7032165Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:52.7032261Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.7032581Z ##[debug] "databaseId": 9281068684, +2024-05-29T06:06:52.7032696Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.7032787Z ##[debug] "workflow": { +2024-05-29T06:06:52.7032908Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:52.7033199Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:52.7033281Z ##[debug] } +2024-05-29T06:06:52.7033362Z ##[debug] }, +2024-05-29T06:06:52.7033459Z ##[debug] "checkRuns": { +2024-05-29T06:06:52.7033553Z ##[debug] "totalCount": 1, +2024-05-29T06:06:52.7033648Z ##[debug] "pageInfo": { +2024-05-29T06:06:52.7033761Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:52.7033940Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpc=" +2024-05-29T06:06:52.7034025Z ##[debug] }, +2024-05-29T06:06:52.7034113Z ##[debug] "nodes": [ +2024-05-29T06:06:52.7034195Z ##[debug] { +2024-05-29T06:06:52.7034323Z ##[debug] "databaseId": 25536411287, +2024-05-29T06:06:52.7034418Z ##[debug] "name": "echo", +2024-05-29T06:06:52.7034533Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7034896Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", +2024-05-29T06:06:52.7035012Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7035095Z ##[debug] } +2024-05-29T06:06:52.7035181Z ##[debug] ] +2024-05-29T06:06:52.7035262Z ##[debug] } +2024-05-29T06:06:52.7035346Z ##[debug] }, +2024-05-29T06:06:52.7035434Z ##[debug] "workflow": { +2024-05-29T06:06:52.7035552Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:52.7035941Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:52.7036023Z ##[debug] }, +2024-05-29T06:06:52.7036116Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.7036227Z ##[debug] "databaseId": 9281068684, +2024-05-29T06:06:52.7036339Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.7036428Z ##[debug] "workflow": { +2024-05-29T06:06:52.7036546Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:52.7036833Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:52.7036918Z ##[debug] } +2024-05-29T06:06:52.7036999Z ##[debug] } +2024-05-29T06:06:52.7037079Z ##[debug] }, +2024-05-29T06:06:52.7037162Z ##[debug] { +2024-05-29T06:06:52.7037253Z ##[debug] "checkRun": { +2024-05-29T06:06:52.7037361Z ##[debug] "databaseId": 25536411604, +2024-05-29T06:06:52.7037456Z ##[debug] "name": "wait", +2024-05-29T06:06:52.7037560Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7037923Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", +2024-05-29T06:06:52.7038035Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7038120Z ##[debug] }, +2024-05-29T06:06:52.7038211Z ##[debug] "checkSuite": { +2024-05-29T06:06:52.7038316Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7038422Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:52.7038523Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.7038632Z ##[debug] "databaseId": 9281068685, +2024-05-29T06:06:52.7038743Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.7038837Z ##[debug] "workflow": { +2024-05-29T06:06:52.7038951Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:52.7039223Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:52.7039428Z ##[debug] } +2024-05-29T06:06:52.7039512Z ##[debug] }, +2024-05-29T06:06:52.7039603Z ##[debug] "checkRuns": { +2024-05-29T06:06:52.7039708Z ##[debug] "totalCount": 1, +2024-05-29T06:06:52.7039799Z ##[debug] "pageInfo": { +2024-05-29T06:06:52.7040012Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:52.7040187Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWt9Q=" +2024-05-29T06:06:52.7040268Z ##[debug] }, +2024-05-29T06:06:52.7040359Z ##[debug] "nodes": [ +2024-05-29T06:06:52.7040440Z ##[debug] { +2024-05-29T06:06:52.7040560Z ##[debug] "databaseId": 25536411604, +2024-05-29T06:06:52.7040660Z ##[debug] "name": "wait", +2024-05-29T06:06:52.7040774Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7041136Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", +2024-05-29T06:06:52.7041263Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7041344Z ##[debug] } +2024-05-29T06:06:52.7041429Z ##[debug] ] +2024-05-29T06:06:52.7041511Z ##[debug] } +2024-05-29T06:06:52.7041591Z ##[debug] }, +2024-05-29T06:06:52.7041684Z ##[debug] "workflow": { +2024-05-29T06:06:52.7041793Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:52.7042063Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:52.7042148Z ##[debug] }, +2024-05-29T06:06:52.7042239Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.7042344Z ##[debug] "databaseId": 9281068685, +2024-05-29T06:06:52.7042454Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.7042544Z ##[debug] "workflow": { +2024-05-29T06:06:52.7042651Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:52.7042927Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:52.7043015Z ##[debug] } +2024-05-29T06:06:52.7043099Z ##[debug] } +2024-05-29T06:06:52.7043180Z ##[debug] }, +2024-05-29T06:06:52.7043259Z ##[debug] { +2024-05-29T06:06:52.7043354Z ##[debug] "checkRun": { +2024-05-29T06:06:52.7043458Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:52.7043565Z ##[debug] "name": "default_logic", +2024-05-29T06:06:52.7043667Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7044029Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:52.7044133Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7044216Z ##[debug] }, +2024-05-29T06:06:52.7044307Z ##[debug] "checkSuite": { +2024-05-29T06:06:52.7044410Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7044513Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:52.7044607Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.7044719Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:52.7044830Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.7044921Z ##[debug] "workflow": { +2024-05-29T06:06:52.7045020Z ##[debug] "name": "Itself", +2024-05-29T06:06:52.7045277Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:52.7045363Z ##[debug] } +2024-05-29T06:06:52.7045451Z ##[debug] }, +2024-05-29T06:06:52.7045547Z ##[debug] "checkRuns": { +2024-05-29T06:06:52.7045644Z ##[debug] "totalCount": 7, +2024-05-29T06:06:52.7045739Z ##[debug] "pageInfo": { +2024-05-29T06:06:52.7045943Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:52.7046123Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:52.7046204Z ##[debug] }, +2024-05-29T06:06:52.7046290Z ##[debug] "nodes": [ +2024-05-29T06:06:52.7046374Z ##[debug] { +2024-05-29T06:06:52.7046494Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:52.7046738Z ##[debug] "name": "default_logic", +2024-05-29T06:06:52.7046860Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7047222Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:52.7047444Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7047528Z ##[debug] }, +2024-05-29T06:06:52.7047609Z ##[debug] { +2024-05-29T06:06:52.7047733Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:52.7047852Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:52.7047963Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7048319Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:52.7048438Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7048519Z ##[debug] }, +2024-05-29T06:06:52.7048612Z ##[debug] { +2024-05-29T06:06:52.7048727Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:52.7048899Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:52.7049011Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7049364Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:52.7049481Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7049566Z ##[debug] }, +2024-05-29T06:06:52.7049648Z ##[debug] { +2024-05-29T06:06:52.7049767Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:52.7049875Z ##[debug] "name": "skip-list", +2024-05-29T06:06:52.7049993Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7050353Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:52.7050472Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7050561Z ##[debug] }, +2024-05-29T06:06:52.7050643Z ##[debug] { +2024-05-29T06:06:52.7050759Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:52.7050963Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:52.7051078Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7051430Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:52.7051548Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7051630Z ##[debug] }, +2024-05-29T06:06:52.7051714Z ##[debug] { +2024-05-29T06:06:52.7051830Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:52.7052048Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:52.7052167Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7052525Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:52.7052642Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7052724Z ##[debug] }, +2024-05-29T06:06:52.7052808Z ##[debug] { +2024-05-29T06:06:52.7052927Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:52.7053032Z ##[debug] "name": "wait-list", +2024-05-29T06:06:52.7053144Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7053505Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:52.7053617Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7053697Z ##[debug] } +2024-05-29T06:06:52.7053782Z ##[debug] ] +2024-05-29T06:06:52.7053861Z ##[debug] } +2024-05-29T06:06:52.7053941Z ##[debug] }, +2024-05-29T06:06:52.7054035Z ##[debug] "workflow": { +2024-05-29T06:06:52.7054237Z ##[debug] "name": "Itself", +2024-05-29T06:06:52.7054501Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:52.7054581Z ##[debug] }, +2024-05-29T06:06:52.7054675Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.7054860Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:52.7054965Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.7055056Z ##[debug] "workflow": { +2024-05-29T06:06:52.7055156Z ##[debug] "name": "Itself", +2024-05-29T06:06:52.7055413Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:52.7055494Z ##[debug] } +2024-05-29T06:06:52.7055577Z ##[debug] } +2024-05-29T06:06:52.7055657Z ##[debug] }, +2024-05-29T06:06:52.7055739Z ##[debug] { +2024-05-29T06:06:52.7055926Z ##[debug] "checkRun": { +2024-05-29T06:06:52.7056036Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:52.7056155Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:52.7056256Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7056620Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:52.7056737Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7056818Z ##[debug] }, +2024-05-29T06:06:52.7056909Z ##[debug] "checkSuite": { +2024-05-29T06:06:52.7057014Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7057117Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:52.7057212Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.7057333Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:52.7057442Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.7057537Z ##[debug] "workflow": { +2024-05-29T06:06:52.7057632Z ##[debug] "name": "Itself", +2024-05-29T06:06:52.7057885Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:52.7057974Z ##[debug] } +2024-05-29T06:06:52.7058055Z ##[debug] }, +2024-05-29T06:06:52.7058147Z ##[debug] "checkRuns": { +2024-05-29T06:06:52.7058247Z ##[debug] "totalCount": 7, +2024-05-29T06:06:52.7058339Z ##[debug] "pageInfo": { +2024-05-29T06:06:52.7058452Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:52.7058629Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:52.7058711Z ##[debug] }, +2024-05-29T06:06:52.7058802Z ##[debug] "nodes": [ +2024-05-29T06:06:52.7058884Z ##[debug] { +2024-05-29T06:06:52.7059003Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:52.7059126Z ##[debug] "name": "default_logic", +2024-05-29T06:06:52.7059240Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7059596Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:52.7059718Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7059805Z ##[debug] }, +2024-05-29T06:06:52.7059887Z ##[debug] { +2024-05-29T06:06:52.7060008Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:52.7060125Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:52.7060245Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7060604Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:52.7060720Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7060807Z ##[debug] }, +2024-05-29T06:06:52.7060888Z ##[debug] { +2024-05-29T06:06:52.7061002Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:52.7061180Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:52.7061293Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7061769Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:52.7061888Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7061968Z ##[debug] }, +2024-05-29T06:06:52.7062055Z ##[debug] { +2024-05-29T06:06:52.7062269Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:52.7062374Z ##[debug] "name": "skip-list", +2024-05-29T06:06:52.7062489Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7062847Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:52.7062966Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7063048Z ##[debug] }, +2024-05-29T06:06:52.7063129Z ##[debug] { +2024-05-29T06:06:52.7063249Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:52.7063451Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:52.7063564Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7063915Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:52.7064028Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7064122Z ##[debug] }, +2024-05-29T06:06:52.7064201Z ##[debug] { +2024-05-29T06:06:52.7064315Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:52.7064536Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:52.7064650Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7065003Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:52.7065119Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7065202Z ##[debug] }, +2024-05-29T06:06:52.7065282Z ##[debug] { +2024-05-29T06:06:52.7065407Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:52.7065513Z ##[debug] "name": "wait-list", +2024-05-29T06:06:52.7065630Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7066081Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:52.7066199Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7066285Z ##[debug] } +2024-05-29T06:06:52.7066366Z ##[debug] ] +2024-05-29T06:06:52.7066446Z ##[debug] } +2024-05-29T06:06:52.7066531Z ##[debug] }, +2024-05-29T06:06:52.7066622Z ##[debug] "workflow": { +2024-05-29T06:06:52.7066716Z ##[debug] "name": "Itself", +2024-05-29T06:06:52.7066980Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:52.7067061Z ##[debug] }, +2024-05-29T06:06:52.7067159Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.7067268Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:52.7067373Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.7067467Z ##[debug] "workflow": { +2024-05-29T06:06:52.7067562Z ##[debug] "name": "Itself", +2024-05-29T06:06:52.7067816Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:52.7067907Z ##[debug] } +2024-05-29T06:06:52.7067988Z ##[debug] } +2024-05-29T06:06:52.7068066Z ##[debug] }, +2024-05-29T06:06:52.7068150Z ##[debug] { +2024-05-29T06:06:52.7068240Z ##[debug] "checkRun": { +2024-05-29T06:06:52.7068346Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:52.7068509Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:52.7068610Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7068976Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:52.7069198Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7069283Z ##[debug] }, +2024-05-29T06:06:52.7069378Z ##[debug] "checkSuite": { +2024-05-29T06:06:52.7069477Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7069582Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:52.7069781Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.7069892Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:52.7070000Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.7070095Z ##[debug] "workflow": { +2024-05-29T06:06:52.7070190Z ##[debug] "name": "Itself", +2024-05-29T06:06:52.7070448Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:52.7070529Z ##[debug] } +2024-05-29T06:06:52.7070610Z ##[debug] }, +2024-05-29T06:06:52.7070704Z ##[debug] "checkRuns": { +2024-05-29T06:06:52.7070799Z ##[debug] "totalCount": 7, +2024-05-29T06:06:52.7070890Z ##[debug] "pageInfo": { +2024-05-29T06:06:52.7071006Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:52.7071178Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:52.7071260Z ##[debug] }, +2024-05-29T06:06:52.7071352Z ##[debug] "nodes": [ +2024-05-29T06:06:52.7071437Z ##[debug] { +2024-05-29T06:06:52.7071558Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:52.7071677Z ##[debug] "name": "default_logic", +2024-05-29T06:06:52.7071789Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7072144Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:52.7072262Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7072346Z ##[debug] }, +2024-05-29T06:06:52.7072432Z ##[debug] { +2024-05-29T06:06:52.7072547Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:52.7072668Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:52.7072787Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7073144Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:52.7073266Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7073351Z ##[debug] }, +2024-05-29T06:06:52.7073430Z ##[debug] { +2024-05-29T06:06:52.7073547Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:52.7073715Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:52.7073827Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7074181Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:52.7074295Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7074378Z ##[debug] }, +2024-05-29T06:06:52.7074458Z ##[debug] { +2024-05-29T06:06:52.7074577Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:52.7074687Z ##[debug] "name": "skip-list", +2024-05-29T06:06:52.7074800Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7075156Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:52.7075282Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7075365Z ##[debug] }, +2024-05-29T06:06:52.7075450Z ##[debug] { +2024-05-29T06:06:52.7075567Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:52.7075759Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:52.7075972Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7076321Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:52.7076556Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7076647Z ##[debug] }, +2024-05-29T06:06:52.7076729Z ##[debug] { +2024-05-29T06:06:52.7076842Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:52.7077065Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:52.7077279Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7077633Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:52.7077747Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7077828Z ##[debug] }, +2024-05-29T06:06:52.7077912Z ##[debug] { +2024-05-29T06:06:52.7078026Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:52.7078132Z ##[debug] "name": "wait-list", +2024-05-29T06:06:52.7078246Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7078601Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:52.7078719Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7078799Z ##[debug] } +2024-05-29T06:06:52.7078879Z ##[debug] ] +2024-05-29T06:06:52.7078966Z ##[debug] } +2024-05-29T06:06:52.7079045Z ##[debug] }, +2024-05-29T06:06:52.7079133Z ##[debug] "workflow": { +2024-05-29T06:06:52.7079230Z ##[debug] "name": "Itself", +2024-05-29T06:06:52.7079482Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:52.7079563Z ##[debug] }, +2024-05-29T06:06:52.7079660Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.7079765Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:52.7079873Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.7079964Z ##[debug] "workflow": { +2024-05-29T06:06:52.7080059Z ##[debug] "name": "Itself", +2024-05-29T06:06:52.7080318Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:52.7080399Z ##[debug] } +2024-05-29T06:06:52.7080479Z ##[debug] } +2024-05-29T06:06:52.7080567Z ##[debug] }, +2024-05-29T06:06:52.7080647Z ##[debug] { +2024-05-29T06:06:52.7080741Z ##[debug] "checkRun": { +2024-05-29T06:06:52.7080851Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:52.7080950Z ##[debug] "name": "skip-list", +2024-05-29T06:06:52.7081049Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7081411Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:52.7081516Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7081599Z ##[debug] }, +2024-05-29T06:06:52.7081691Z ##[debug] "checkSuite": { +2024-05-29T06:06:52.7081789Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7081896Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:52.7081993Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.7082105Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:52.7082217Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.7082308Z ##[debug] "workflow": { +2024-05-29T06:06:52.7082402Z ##[debug] "name": "Itself", +2024-05-29T06:06:52.7082665Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:52.7082746Z ##[debug] } +2024-05-29T06:06:52.7082828Z ##[debug] }, +2024-05-29T06:06:52.7082920Z ##[debug] "checkRuns": { +2024-05-29T06:06:52.7083016Z ##[debug] "totalCount": 7, +2024-05-29T06:06:52.7083113Z ##[debug] "pageInfo": { +2024-05-29T06:06:52.7083221Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:52.7083395Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:52.7083482Z ##[debug] }, +2024-05-29T06:06:52.7083568Z ##[debug] "nodes": [ +2024-05-29T06:06:52.7083755Z ##[debug] { +2024-05-29T06:06:52.7083881Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:52.7083999Z ##[debug] "name": "default_logic", +2024-05-29T06:06:52.7084111Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7084479Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:52.7084670Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7084756Z ##[debug] }, +2024-05-29T06:06:52.7084841Z ##[debug] { +2024-05-29T06:06:52.7084959Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:52.7085078Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:52.7085191Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7085540Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:52.7085664Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7085748Z ##[debug] }, +2024-05-29T06:06:52.7085929Z ##[debug] { +2024-05-29T06:06:52.7086048Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:52.7086215Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:52.7086339Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7086688Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:52.7086802Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7086887Z ##[debug] }, +2024-05-29T06:06:52.7086969Z ##[debug] { +2024-05-29T06:06:52.7087086Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:52.7087193Z ##[debug] "name": "skip-list", +2024-05-29T06:06:52.7087303Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7087667Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:52.7087780Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7087864Z ##[debug] }, +2024-05-29T06:06:52.7087948Z ##[debug] { +2024-05-29T06:06:52.7088062Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:52.7088261Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:52.7088376Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7088725Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:52.7088844Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7088926Z ##[debug] }, +2024-05-29T06:06:52.7089006Z ##[debug] { +2024-05-29T06:06:52.7089123Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:52.7089340Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:52.7089454Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7089812Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:52.7089924Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7090012Z ##[debug] }, +2024-05-29T06:06:52.7090093Z ##[debug] { +2024-05-29T06:06:52.7090211Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:52.7090320Z ##[debug] "name": "wait-list", +2024-05-29T06:06:52.7090429Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7090783Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:52.7090903Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7090984Z ##[debug] } +2024-05-29T06:06:52.7091069Z ##[debug] ] +2024-05-29T06:06:52.7091149Z ##[debug] } +2024-05-29T06:06:52.7091349Z ##[debug] }, +2024-05-29T06:06:52.7091447Z ##[debug] "workflow": { +2024-05-29T06:06:52.7091541Z ##[debug] "name": "Itself", +2024-05-29T06:06:52.7091795Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:52.7091982Z ##[debug] }, +2024-05-29T06:06:52.7092076Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.7092181Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:52.7092294Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.7092386Z ##[debug] "workflow": { +2024-05-29T06:06:52.7092483Z ##[debug] "name": "Itself", +2024-05-29T06:06:52.7092741Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:52.7092821Z ##[debug] } +2024-05-29T06:06:52.7092905Z ##[debug] } +2024-05-29T06:06:52.7092985Z ##[debug] }, +2024-05-29T06:06:52.7093065Z ##[debug] { +2024-05-29T06:06:52.7093157Z ##[debug] "checkRun": { +2024-05-29T06:06:52.7093269Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:52.7093463Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:52.7093568Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7093931Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:52.7094041Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7094128Z ##[debug] }, +2024-05-29T06:06:52.7094219Z ##[debug] "checkSuite": { +2024-05-29T06:06:52.7094321Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7094425Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:52.7094519Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.7094636Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:52.7094744Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.7094838Z ##[debug] "workflow": { +2024-05-29T06:06:52.7094946Z ##[debug] "name": "Itself", +2024-05-29T06:06:52.7095202Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:52.7095283Z ##[debug] } +2024-05-29T06:06:52.7095368Z ##[debug] }, +2024-05-29T06:06:52.7095458Z ##[debug] "checkRuns": { +2024-05-29T06:06:52.7095562Z ##[debug] "totalCount": 7, +2024-05-29T06:06:52.7095655Z ##[debug] "pageInfo": { +2024-05-29T06:06:52.7095764Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:52.7096040Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:52.7096123Z ##[debug] }, +2024-05-29T06:06:52.7096207Z ##[debug] "nodes": [ +2024-05-29T06:06:52.7096292Z ##[debug] { +2024-05-29T06:06:52.7096409Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:52.7096526Z ##[debug] "name": "default_logic", +2024-05-29T06:06:52.7096645Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7097014Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:52.7097135Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7097221Z ##[debug] }, +2024-05-29T06:06:52.7097304Z ##[debug] { +2024-05-29T06:06:52.7097431Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:52.7097549Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:52.7097661Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7098016Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:52.7098131Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7098218Z ##[debug] }, +2024-05-29T06:06:52.7098314Z ##[debug] { +2024-05-29T06:06:52.7098427Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:52.7098734Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:52.7098851Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7099200Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:52.7099319Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7099538Z ##[debug] }, +2024-05-29T06:06:52.7099619Z ##[debug] { +2024-05-29T06:06:52.7099739Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:52.7099843Z ##[debug] "name": "skip-list", +2024-05-29T06:06:52.7099959Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7100320Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:52.7100435Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7100521Z ##[debug] }, +2024-05-29T06:06:52.7100602Z ##[debug] { +2024-05-29T06:06:52.7100723Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:52.7100924Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:52.7101035Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7101388Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:52.7101507Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7101588Z ##[debug] }, +2024-05-29T06:06:52.7101672Z ##[debug] { +2024-05-29T06:06:52.7101787Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:52.7102005Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:52.7102120Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7102472Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:52.7102595Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7102677Z ##[debug] }, +2024-05-29T06:06:52.7102758Z ##[debug] { +2024-05-29T06:06:52.7102875Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:52.7102979Z ##[debug] "name": "wait-list", +2024-05-29T06:06:52.7103094Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7103477Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:52.7103600Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7103680Z ##[debug] } +2024-05-29T06:06:52.7103765Z ##[debug] ] +2024-05-29T06:06:52.7103844Z ##[debug] } +2024-05-29T06:06:52.7103928Z ##[debug] }, +2024-05-29T06:06:52.7104017Z ##[debug] "workflow": { +2024-05-29T06:06:52.7104110Z ##[debug] "name": "Itself", +2024-05-29T06:06:52.7104367Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:52.7104452Z ##[debug] }, +2024-05-29T06:06:52.7104546Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.7104656Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:52.7104763Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.7104858Z ##[debug] "workflow": { +2024-05-29T06:06:52.7104955Z ##[debug] "name": "Itself", +2024-05-29T06:06:52.7105212Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:52.7105297Z ##[debug] } +2024-05-29T06:06:52.7105377Z ##[debug] } +2024-05-29T06:06:52.7105456Z ##[debug] }, +2024-05-29T06:06:52.7105540Z ##[debug] { +2024-05-29T06:06:52.7105628Z ##[debug] "checkRun": { +2024-05-29T06:06:52.7105734Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:52.7106047Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:52.7106148Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7106627Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:52.7106739Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7106818Z ##[debug] }, +2024-05-29T06:06:52.7106908Z ##[debug] "checkSuite": { +2024-05-29T06:06:52.7107132Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7107237Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:52.7107336Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.7107447Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:52.7107556Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.7107651Z ##[debug] "workflow": { +2024-05-29T06:06:52.7107747Z ##[debug] "name": "Itself", +2024-05-29T06:06:52.7108006Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:52.7108092Z ##[debug] } +2024-05-29T06:06:52.7108172Z ##[debug] }, +2024-05-29T06:06:52.7108269Z ##[debug] "checkRuns": { +2024-05-29T06:06:52.7108369Z ##[debug] "totalCount": 7, +2024-05-29T06:06:52.7108460Z ##[debug] "pageInfo": { +2024-05-29T06:06:52.7108574Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:52.7108749Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:52.7108841Z ##[debug] }, +2024-05-29T06:06:52.7108933Z ##[debug] "nodes": [ +2024-05-29T06:06:52.7109018Z ##[debug] { +2024-05-29T06:06:52.7109135Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:52.7109257Z ##[debug] "name": "default_logic", +2024-05-29T06:06:52.7109371Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7109732Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:52.7109851Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7109931Z ##[debug] }, +2024-05-29T06:06:52.7110020Z ##[debug] { +2024-05-29T06:06:52.7110137Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:52.7110253Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:52.7110368Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7110730Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:52.7110843Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7110930Z ##[debug] }, +2024-05-29T06:06:52.7111010Z ##[debug] { +2024-05-29T06:06:52.7111123Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:52.7111292Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:52.7111402Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7111755Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:52.7111873Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7111955Z ##[debug] }, +2024-05-29T06:06:52.7112041Z ##[debug] { +2024-05-29T06:06:52.7112155Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:52.7112261Z ##[debug] "name": "skip-list", +2024-05-29T06:06:52.7112380Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7112740Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:52.7112857Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7112938Z ##[debug] }, +2024-05-29T06:06:52.7113018Z ##[debug] { +2024-05-29T06:06:52.7113136Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:52.7113331Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:52.7113441Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7113879Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:52.7113994Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7114078Z ##[debug] }, +2024-05-29T06:06:52.7114158Z ##[debug] { +2024-05-29T06:06:52.7114349Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:52.7114572Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:52.7114689Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7115041Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:52.7115162Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7115244Z ##[debug] }, +2024-05-29T06:06:52.7115330Z ##[debug] { +2024-05-29T06:06:52.7115445Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:52.7115550Z ##[debug] "name": "wait-list", +2024-05-29T06:06:52.7115670Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7116109Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:52.7116223Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7116313Z ##[debug] } +2024-05-29T06:06:52.7116393Z ##[debug] ] +2024-05-29T06:06:52.7116473Z ##[debug] } +2024-05-29T06:06:52.7116556Z ##[debug] }, +2024-05-29T06:06:52.7116645Z ##[debug] "workflow": { +2024-05-29T06:06:52.7116742Z ##[debug] "name": "Itself", +2024-05-29T06:06:52.7116992Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:52.7117073Z ##[debug] }, +2024-05-29T06:06:52.7117171Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.7117278Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:52.7117382Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.7117481Z ##[debug] "workflow": { +2024-05-29T06:06:52.7117576Z ##[debug] "name": "Itself", +2024-05-29T06:06:52.7117828Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:52.7117916Z ##[debug] } +2024-05-29T06:06:52.7118001Z ##[debug] } +2024-05-29T06:06:52.7118083Z ##[debug] }, +2024-05-29T06:06:52.7118166Z ##[debug] { +2024-05-29T06:06:52.7118254Z ##[debug] "checkRun": { +2024-05-29T06:06:52.7118364Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:52.7118460Z ##[debug] "name": "wait-list", +2024-05-29T06:06:52.7118557Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7118921Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:52.7119027Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7119107Z ##[debug] }, +2024-05-29T06:06:52.7119204Z ##[debug] "checkSuite": { +2024-05-29T06:06:52.7119309Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7119413Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:52.7119517Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.7119629Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:52.7119741Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.7119835Z ##[debug] "workflow": { +2024-05-29T06:06:52.7119933Z ##[debug] "name": "Itself", +2024-05-29T06:06:52.7120193Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:52.7120274Z ##[debug] } +2024-05-29T06:06:52.7120355Z ##[debug] }, +2024-05-29T06:06:52.7120452Z ##[debug] "checkRuns": { +2024-05-29T06:06:52.7120548Z ##[debug] "totalCount": 7, +2024-05-29T06:06:52.7120645Z ##[debug] "pageInfo": { +2024-05-29T06:06:52.7120755Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:52.7120929Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:52.7121140Z ##[debug] }, +2024-05-29T06:06:52.7121235Z ##[debug] "nodes": [ +2024-05-29T06:06:52.7121317Z ##[debug] { +2024-05-29T06:06:52.7121441Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:52.7121558Z ##[debug] "name": "default_logic", +2024-05-29T06:06:52.7121775Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7122134Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:52.7122248Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7122331Z ##[debug] }, +2024-05-29T06:06:52.7122416Z ##[debug] { +2024-05-29T06:06:52.7122533Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:52.7122654Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:52.7122767Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7123166Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:52.7123283Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7123365Z ##[debug] }, +2024-05-29T06:06:52.7123443Z ##[debug] { +2024-05-29T06:06:52.7123568Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:52.7123735Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:52.7123848Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7124200Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:52.7124312Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7124398Z ##[debug] }, +2024-05-29T06:06:52.7124479Z ##[debug] { +2024-05-29T06:06:52.7124593Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:52.7124703Z ##[debug] "name": "skip-list", +2024-05-29T06:06:52.7124819Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7125173Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:52.7125288Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7125374Z ##[debug] }, +2024-05-29T06:06:52.7125457Z ##[debug] { +2024-05-29T06:06:52.7125572Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:52.7125769Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:52.7125982Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7126330Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:52.7126440Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7126525Z ##[debug] }, +2024-05-29T06:06:52.7126609Z ##[debug] { +2024-05-29T06:06:52.7126730Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:52.7126947Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:52.7127059Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7127409Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:52.7127526Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7127607Z ##[debug] }, +2024-05-29T06:06:52.7127692Z ##[debug] { +2024-05-29T06:06:52.7127808Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:52.7127912Z ##[debug] "name": "wait-list", +2024-05-29T06:06:52.7128028Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7128379Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:52.7128496Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7128697Z ##[debug] } +2024-05-29T06:06:52.7128782Z ##[debug] ] +2024-05-29T06:06:52.7128865Z ##[debug] } +2024-05-29T06:06:52.7128947Z ##[debug] }, +2024-05-29T06:06:52.7129040Z ##[debug] "workflow": { +2024-05-29T06:06:52.7129138Z ##[debug] "name": "Itself", +2024-05-29T06:06:52.7129493Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:52.7129572Z ##[debug] }, +2024-05-29T06:06:52.7129667Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.7129771Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:52.7129876Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.7129964Z ##[debug] "workflow": { +2024-05-29T06:06:52.7130057Z ##[debug] "name": "Itself", +2024-05-29T06:06:52.7130307Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:52.7130385Z ##[debug] } +2024-05-29T06:06:52.7130464Z ##[debug] } +2024-05-29T06:06:52.7130550Z ##[debug] }, +2024-05-29T06:06:52.7130629Z ##[debug] { +2024-05-29T06:06:52.7130717Z ##[debug] "checkRun": { +2024-05-29T06:06:52.7130825Z ##[debug] "databaseId": 25536411358, +2024-05-29T06:06:52.7130943Z ##[debug] "name": "dependency-review", +2024-05-29T06:06:52.7131059Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7131429Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", +2024-05-29T06:06:52.7131532Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7131614Z ##[debug] }, +2024-05-29T06:06:52.7131705Z ##[debug] "checkSuite": { +2024-05-29T06:06:52.7131803Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7131913Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:52.7132008Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.7132119Z ##[debug] "databaseId": 9281068690, +2024-05-29T06:06:52.7132238Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.7132329Z ##[debug] "workflow": { +2024-05-29T06:06:52.7132429Z ##[debug] "name": "💂➕", +2024-05-29T06:06:52.7132745Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:52.7132834Z ##[debug] } +2024-05-29T06:06:52.7132919Z ##[debug] }, +2024-05-29T06:06:52.7133009Z ##[debug] "checkRuns": { +2024-05-29T06:06:52.7133104Z ##[debug] "totalCount": 1, +2024-05-29T06:06:52.7133198Z ##[debug] "pageInfo": { +2024-05-29T06:06:52.7133303Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:52.7133475Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtt4=" +2024-05-29T06:06:52.7133559Z ##[debug] }, +2024-05-29T06:06:52.7133645Z ##[debug] "nodes": [ +2024-05-29T06:06:52.7133726Z ##[debug] { +2024-05-29T06:06:52.7133846Z ##[debug] "databaseId": 25536411358, +2024-05-29T06:06:52.7133981Z ##[debug] "name": "dependency-review", +2024-05-29T06:06:52.7134098Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:52.7134457Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", +2024-05-29T06:06:52.7134574Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:52.7134662Z ##[debug] } +2024-05-29T06:06:52.7134742Z ##[debug] ] +2024-05-29T06:06:52.7134823Z ##[debug] } +2024-05-29T06:06:52.7134910Z ##[debug] }, +2024-05-29T06:06:52.7134999Z ##[debug] "workflow": { +2024-05-29T06:06:52.7135092Z ##[debug] "name": "💂➕", +2024-05-29T06:06:52.7135401Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:52.7135482Z ##[debug] }, +2024-05-29T06:06:52.7135578Z ##[debug] "workflowRun": { +2024-05-29T06:06:52.7135684Z ##[debug] "databaseId": 9281068690, +2024-05-29T06:06:52.7135888Z ##[debug] "event": "pull_request", +2024-05-29T06:06:52.7136105Z ##[debug] "workflow": { +2024-05-29T06:06:52.7136201Z ##[debug] "name": "💂➕", +2024-05-29T06:06:52.7136512Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:52.7136719Z ##[debug] } +2024-05-29T06:06:52.7136799Z ##[debug] } +2024-05-29T06:06:52.7136877Z ##[debug] } +2024-05-29T06:06:52.7136958Z ##[debug] ], +2024-05-29T06:06:52.7137070Z ##[debug] "elapsedMsec": 16804.50221200008 +2024-05-29T06:06:52.7137147Z ##[debug]} +2024-05-29T06:06:52.7138412Z GH-820-graceperiod.yml(quickstarter-success): [suiteStatus: QUEUED][suiteConclusion: (null)][runStatus: COMPLETED][runConclusion: SUCCESS][eventName: pull_request][runURL: https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631] +2024-05-29T06:06:52.7139505Z GH-820-graceperiod.yml(slowstarter-fail): [suiteStatus: QUEUED][suiteConclusion: (null)][runStatus: QUEUED][runConclusion: (null)][eventName: pull_request][runURL: https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821] +2024-05-29T06:06:52.7140262Z ##[debug]{ +2024-05-29T06:06:52.7140356Z ##[debug] "label": "filtered", +2024-05-29T06:06:52.7140444Z ##[debug] "report": { +2024-05-29T06:06:52.7140552Z ##[debug] "progress": "in_progress", +2024-05-29T06:06:52.7140668Z ##[debug] "conclusion": "acceptable", +2024-05-29T06:06:52.7140764Z ##[debug] "summaries": [ +2024-05-29T06:06:52.7140845Z ##[debug] { +2024-05-29T06:06:52.7140944Z ##[debug] "acceptable": true, +2024-05-29T06:06:52.7141091Z ##[debug] "workflowPath": "GH-820-graceperiod.yml", +2024-05-29T06:06:52.7141198Z ##[debug] "isSameWorkflow": true, +2024-05-29T06:06:52.7141319Z ##[debug] "eventName": "pull_request", +2024-05-29T06:06:52.7141440Z ##[debug] "checkSuiteStatus": "QUEUED", +2024-05-29T06:06:52.7141564Z ##[debug] "checkSuiteConclusion": null, +2024-05-29T06:06:52.7141677Z ##[debug] "runDatabaseId": 25536443631, +2024-05-29T06:06:52.7141816Z ##[debug] "jobName": "quickstarter-success", +2024-05-29T06:06:52.7142189Z ##[debug] "checkRunUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:52.7142301Z ##[debug] "runStatus": "COMPLETED", +2024-05-29T06:06:52.7142418Z ##[debug] "runConclusion": "SUCCESS" +2024-05-29T06:06:52.7142502Z ##[debug] }, +2024-05-29T06:06:52.7142595Z ##[debug] { +2024-05-29T06:06:52.7142698Z ##[debug] "acceptable": false, +2024-05-29T06:06:52.7142843Z ##[debug] "workflowPath": "GH-820-graceperiod.yml", +2024-05-29T06:06:52.7142948Z ##[debug] "isSameWorkflow": true, +2024-05-29T06:06:52.7143063Z ##[debug] "eventName": "pull_request", +2024-05-29T06:06:52.7143186Z ##[debug] "checkSuiteStatus": "QUEUED", +2024-05-29T06:06:52.7143307Z ##[debug] "checkSuiteConclusion": null, +2024-05-29T06:06:52.7143419Z ##[debug] "runDatabaseId": 25536455821, +2024-05-29T06:06:52.7143551Z ##[debug] "jobName": "slowstarter-fail", +2024-05-29T06:06:52.7143920Z ##[debug] "checkRunUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:52.7144023Z ##[debug] "runStatus": "QUEUED", +2024-05-29T06:06:52.7144124Z ##[debug] "runConclusion": null +2024-05-29T06:06:52.7144207Z ##[debug] } +2024-05-29T06:06:52.7144288Z ##[debug] ] +2024-05-29T06:06:52.7144366Z ##[debug] } +2024-05-29T06:06:52.7144442Z ##[debug]} +2024-05-29T06:06:52.7144546Z some jobs still in progress +2024-05-29T06:06:52.7144805Z ::endgroup:: +2024-05-29T06:06:52.7144906Z ##[endgroup] +2024-05-29T06:06:52.7145112Z Wait about 5 seconds before next polling to reduce API calls. +2024-05-29T06:06:57.6594633Z ::group::Polling 5: 2024-05-29T06:06:57.659Z +2024-05-29T06:06:57.6595452Z ##[group]Polling 5: 2024-05-29T06:06:57.659Z +2024-05-29T06:06:58.0717826Z ##[debug]{ +2024-05-29T06:06:58.0718214Z ##[debug] "label": "rawdata", +2024-05-29T06:06:58.0718681Z ##[debug] "checks": [ +2024-05-29T06:06:58.0726782Z ##[debug] { +2024-05-29T06:06:58.0727199Z ##[debug] "checkRun": { +2024-05-29T06:06:58.0727690Z ##[debug] "databaseId": 25536410411, +2024-05-29T06:06:58.0728244Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:58.0728578Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0729375Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", +2024-05-29T06:06:58.0729985Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0730305Z ##[debug] }, +2024-05-29T06:06:58.0730549Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.0730843Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0731179Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:58.0731505Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.0731817Z ##[debug] "databaseId": 9281068413, +2024-05-29T06:06:58.0732158Z ##[debug] "event": "push", +2024-05-29T06:06:58.0732465Z ##[debug] "workflow": { +2024-05-29T06:06:58.0732780Z ##[debug] "name": "💧", +2024-05-29T06:06:58.0733272Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:58.0733768Z ##[debug] } +2024-05-29T06:06:58.0734004Z ##[debug] }, +2024-05-29T06:06:58.0734259Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.0734558Z ##[debug] "totalCount": 1, +2024-05-29T06:06:58.0734868Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.0735187Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.0735605Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWsys=" +2024-05-29T06:06:58.0736264Z ##[debug] }, +2024-05-29T06:06:58.0736545Z ##[debug] "nodes": [ +2024-05-29T06:06:58.0736814Z ##[debug] { +2024-05-29T06:06:58.0737091Z ##[debug] "databaseId": 25536410411, +2024-05-29T06:06:58.0737449Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:58.0737805Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0738424Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", +2024-05-29T06:06:58.0739036Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0739359Z ##[debug] } +2024-05-29T06:06:58.0739604Z ##[debug] ] +2024-05-29T06:06:58.0739830Z ##[debug] } +2024-05-29T06:06:58.0740059Z ##[debug] }, +2024-05-29T06:06:58.0740293Z ##[debug] "workflow": { +2024-05-29T06:06:58.0740566Z ##[debug] "name": "💧", +2024-05-29T06:06:58.0741020Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:58.0741502Z ##[debug] }, +2024-05-29T06:06:58.0741736Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.0742045Z ##[debug] "databaseId": 9281068413, +2024-05-29T06:06:58.0742376Z ##[debug] "event": "push", +2024-05-29T06:06:58.0742663Z ##[debug] "workflow": { +2024-05-29T06:06:58.0742963Z ##[debug] "name": "💧", +2024-05-29T06:06:58.0743429Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:58.0743901Z ##[debug] } +2024-05-29T06:06:58.0744193Z ##[debug] } +2024-05-29T06:06:58.0744426Z ##[debug] }, +2024-05-29T06:06:58.0744647Z ##[debug] { +2024-05-29T06:06:58.0744893Z ##[debug] "checkRun": { +2024-05-29T06:06:58.0745195Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:58.0745512Z ##[debug] "name": "build", +2024-05-29T06:06:58.0746098Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0746700Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:58.0747304Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0747604Z ##[debug] }, +2024-05-29T06:06:58.0747841Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.0748134Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0748599Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:58.0748929Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.0749241Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:58.0749584Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.0749909Z ##[debug] "workflow": { +2024-05-29T06:06:58.0750331Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:58.0750797Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:58.0751251Z ##[debug] } +2024-05-29T06:06:58.0751490Z ##[debug] }, +2024-05-29T06:06:58.0751724Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.0752015Z ##[debug] "totalCount": 3, +2024-05-29T06:06:58.0752329Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.0752632Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.0753040Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:58.0753431Z ##[debug] }, +2024-05-29T06:06:58.0753674Z ##[debug] "nodes": [ +2024-05-29T06:06:58.0753942Z ##[debug] { +2024-05-29T06:06:58.0754228Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:58.0754608Z ##[debug] "name": "build", +2024-05-29T06:06:58.0754937Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0755561Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:58.0756288Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0756610Z ##[debug] }, +2024-05-29T06:06:58.0756858Z ##[debug] { +2024-05-29T06:06:58.0757143Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:58.0757484Z ##[debug] "name": "test", +2024-05-29T06:06:58.0757819Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0758432Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:58.0759035Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0759358Z ##[debug] }, +2024-05-29T06:06:58.0759605Z ##[debug] { +2024-05-29T06:06:58.0759881Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:58.0760229Z ##[debug] "name": "typecheck", +2024-05-29T06:06:58.0760583Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0761186Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:58.0761787Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0762106Z ##[debug] } +2024-05-29T06:06:58.0762348Z ##[debug] ] +2024-05-29T06:06:58.0762587Z ##[debug] } +2024-05-29T06:06:58.0762806Z ##[debug] }, +2024-05-29T06:06:58.0763041Z ##[debug] "workflow": { +2024-05-29T06:06:58.0763335Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:58.0763805Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:58.0764256Z ##[debug] }, +2024-05-29T06:06:58.0764491Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.0764795Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:58.0765127Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.0765448Z ##[debug] "workflow": { +2024-05-29T06:06:58.0765738Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:58.0766303Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:58.0766758Z ##[debug] } +2024-05-29T06:06:58.0767010Z ##[debug] } +2024-05-29T06:06:58.0767226Z ##[debug] }, +2024-05-29T06:06:58.0767444Z ##[debug] { +2024-05-29T06:06:58.0767668Z ##[debug] "checkRun": { +2024-05-29T06:06:58.0767954Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:58.0768282Z ##[debug] "name": "test", +2024-05-29T06:06:58.0768576Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0769296Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:58.0769910Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0770220Z ##[debug] }, +2024-05-29T06:06:58.0770453Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.0770877Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0771206Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:58.0771530Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.0771848Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:58.0772194Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.0772523Z ##[debug] "workflow": { +2024-05-29T06:06:58.0772820Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:58.0773298Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:58.0773753Z ##[debug] } +2024-05-29T06:06:58.0773984Z ##[debug] }, +2024-05-29T06:06:58.0774223Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.0774520Z ##[debug] "totalCount": 3, +2024-05-29T06:06:58.0774818Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.0775121Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.0775521Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:58.0776047Z ##[debug] }, +2024-05-29T06:06:58.0776292Z ##[debug] "nodes": [ +2024-05-29T06:06:58.0776558Z ##[debug] { +2024-05-29T06:06:58.0776837Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:58.0777183Z ##[debug] "name": "build", +2024-05-29T06:06:58.0777520Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0778129Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:58.0778740Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0779062Z ##[debug] }, +2024-05-29T06:06:58.0779300Z ##[debug] { +2024-05-29T06:06:58.0779572Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:58.0779912Z ##[debug] "name": "test", +2024-05-29T06:06:58.0780284Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0780997Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:58.0781614Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0781933Z ##[debug] }, +2024-05-29T06:06:58.0782168Z ##[debug] { +2024-05-29T06:06:58.0782440Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:58.0782794Z ##[debug] "name": "typecheck", +2024-05-29T06:06:58.0783132Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0783726Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:58.0784325Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0784643Z ##[debug] } +2024-05-29T06:06:58.0784876Z ##[debug] ] +2024-05-29T06:06:58.0785106Z ##[debug] } +2024-05-29T06:06:58.0785333Z ##[debug] }, +2024-05-29T06:06:58.0785559Z ##[debug] "workflow": { +2024-05-29T06:06:58.0785949Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:58.0786418Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:58.0786865Z ##[debug] }, +2024-05-29T06:06:58.0787099Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.0787402Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:58.0787729Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.0788045Z ##[debug] "workflow": { +2024-05-29T06:06:58.0788335Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:58.0788789Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:58.0789245Z ##[debug] } +2024-05-29T06:06:58.0789472Z ##[debug] } +2024-05-29T06:06:58.0789822Z ##[debug] }, +2024-05-29T06:06:58.0790048Z ##[debug] { +2024-05-29T06:06:58.0790272Z ##[debug] "checkRun": { +2024-05-29T06:06:58.0790557Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:58.0790889Z ##[debug] "name": "typecheck", +2024-05-29T06:06:58.0791309Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0791901Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:58.0792497Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0792798Z ##[debug] }, +2024-05-29T06:06:58.0793026Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.0793312Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0793639Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:58.0793959Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.0794269Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:58.0794618Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.0794948Z ##[debug] "workflow": { +2024-05-29T06:06:58.0795247Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:58.0795717Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:58.0796272Z ##[debug] } +2024-05-29T06:06:58.0796507Z ##[debug] }, +2024-05-29T06:06:58.0796746Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.0797035Z ##[debug] "totalCount": 3, +2024-05-29T06:06:58.0797332Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.0797635Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.0798032Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:06:58.0798416Z ##[debug] }, +2024-05-29T06:06:58.0798661Z ##[debug] "nodes": [ +2024-05-29T06:06:58.0798926Z ##[debug] { +2024-05-29T06:06:58.0799201Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:06:58.0799544Z ##[debug] "name": "build", +2024-05-29T06:06:58.0799880Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0800480Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:06:58.0801089Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0801425Z ##[debug] }, +2024-05-29T06:06:58.0801669Z ##[debug] { +2024-05-29T06:06:58.0801936Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:06:58.0802277Z ##[debug] "name": "test", +2024-05-29T06:06:58.0802607Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0803194Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:06:58.0803801Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0804118Z ##[debug] }, +2024-05-29T06:06:58.0804352Z ##[debug] { +2024-05-29T06:06:58.0804624Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:06:58.0804980Z ##[debug] "name": "typecheck", +2024-05-29T06:06:58.0805316Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0806001Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:06:58.0806607Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0806921Z ##[debug] } +2024-05-29T06:06:58.0807149Z ##[debug] ] +2024-05-29T06:06:58.0807384Z ##[debug] } +2024-05-29T06:06:58.0807607Z ##[debug] }, +2024-05-29T06:06:58.0807831Z ##[debug] "workflow": { +2024-05-29T06:06:58.0808115Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:58.0808573Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:58.0809018Z ##[debug] }, +2024-05-29T06:06:58.0809254Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.0809558Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:06:58.0810006Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.0810327Z ##[debug] "workflow": { +2024-05-29T06:06:58.0810617Z ##[debug] "name": "TypeScript", +2024-05-29T06:06:58.0811070Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:06:58.0811631Z ##[debug] } +2024-05-29T06:06:58.0811859Z ##[debug] } +2024-05-29T06:06:58.0812074Z ##[debug] }, +2024-05-29T06:06:58.0812290Z ##[debug] { +2024-05-29T06:06:58.0812513Z ##[debug] "checkRun": { +2024-05-29T06:06:58.0812798Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:58.0813125Z ##[debug] "name": "typos", +2024-05-29T06:06:58.0813424Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0814005Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:58.0814596Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0814897Z ##[debug] }, +2024-05-29T06:06:58.0815129Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.0815420Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0815746Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:58.0816165Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.0816472Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:58.0816824Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.0817149Z ##[debug] "workflow": { +2024-05-29T06:06:58.0817438Z ##[debug] "name": "👕", +2024-05-29T06:06:58.0817894Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:58.0818360Z ##[debug] } +2024-05-29T06:06:58.0818587Z ##[debug] }, +2024-05-29T06:06:58.0818830Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.0819120Z ##[debug] "totalCount": 4, +2024-05-29T06:06:58.0819418Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.0819725Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.0820139Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:58.0820525Z ##[debug] }, +2024-05-29T06:06:58.0820773Z ##[debug] "nodes": [ +2024-05-29T06:06:58.0821039Z ##[debug] { +2024-05-29T06:06:58.0821312Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:58.0821661Z ##[debug] "name": "typos", +2024-05-29T06:06:58.0821992Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0822593Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:58.0823202Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0823526Z ##[debug] }, +2024-05-29T06:06:58.0823769Z ##[debug] { +2024-05-29T06:06:58.0824037Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:58.0824381Z ##[debug] "name": "dprint", +2024-05-29T06:06:58.0824716Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0825306Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:58.0826018Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0826335Z ##[debug] }, +2024-05-29T06:06:58.0826576Z ##[debug] { +2024-05-29T06:06:58.0826850Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:58.0827196Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:58.0827532Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0828121Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:58.0828718Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0829032Z ##[debug] }, +2024-05-29T06:06:58.0829267Z ##[debug] { +2024-05-29T06:06:58.0829535Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:58.0829875Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:58.0830333Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0830937Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:58.0831546Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0831970Z ##[debug] } +2024-05-29T06:06:58.0832207Z ##[debug] ] +2024-05-29T06:06:58.0832439Z ##[debug] } +2024-05-29T06:06:58.0832659Z ##[debug] }, +2024-05-29T06:06:58.0832888Z ##[debug] "workflow": { +2024-05-29T06:06:58.0833163Z ##[debug] "name": "👕", +2024-05-29T06:06:58.0833596Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:58.0834064Z ##[debug] }, +2024-05-29T06:06:58.0834297Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.0834597Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:58.0834932Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.0835257Z ##[debug] "workflow": { +2024-05-29T06:06:58.0835538Z ##[debug] "name": "👕", +2024-05-29T06:06:58.0836074Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:58.0836536Z ##[debug] } +2024-05-29T06:06:58.0836758Z ##[debug] } +2024-05-29T06:06:58.0836987Z ##[debug] }, +2024-05-29T06:06:58.0837204Z ##[debug] { +2024-05-29T06:06:58.0837425Z ##[debug] "checkRun": { +2024-05-29T06:06:58.0837708Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:58.0838042Z ##[debug] "name": "dprint", +2024-05-29T06:06:58.0838346Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0838931Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:58.0839529Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0839833Z ##[debug] }, +2024-05-29T06:06:58.0840060Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.0840353Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0840686Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:58.0841002Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.0841316Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:58.0841665Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.0841990Z ##[debug] "workflow": { +2024-05-29T06:06:58.0842277Z ##[debug] "name": "👕", +2024-05-29T06:06:58.0842727Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:58.0843193Z ##[debug] } +2024-05-29T06:06:58.0843419Z ##[debug] }, +2024-05-29T06:06:58.0843663Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.0843957Z ##[debug] "totalCount": 4, +2024-05-29T06:06:58.0844251Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.0844551Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.0844958Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:58.0845348Z ##[debug] }, +2024-05-29T06:06:58.0845589Z ##[debug] "nodes": [ +2024-05-29T06:06:58.0845945Z ##[debug] { +2024-05-29T06:06:58.0846218Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:58.0846561Z ##[debug] "name": "typos", +2024-05-29T06:06:58.0846905Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0847505Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:58.0848114Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0848433Z ##[debug] }, +2024-05-29T06:06:58.0848667Z ##[debug] { +2024-05-29T06:06:58.0848940Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:58.0849297Z ##[debug] "name": "dprint", +2024-05-29T06:06:58.0849637Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0850381Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:58.0850997Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0851320Z ##[debug] }, +2024-05-29T06:06:58.0851552Z ##[debug] { +2024-05-29T06:06:58.0851823Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:58.0852278Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:58.0852621Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0853239Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:58.0853849Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0854173Z ##[debug] }, +2024-05-29T06:06:58.0854421Z ##[debug] { +2024-05-29T06:06:58.0854700Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:58.0855047Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:58.0855387Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0856089Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:58.0856699Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0857017Z ##[debug] } +2024-05-29T06:06:58.0857258Z ##[debug] ] +2024-05-29T06:06:58.0857487Z ##[debug] } +2024-05-29T06:06:58.0857709Z ##[debug] }, +2024-05-29T06:06:58.0857948Z ##[debug] "workflow": { +2024-05-29T06:06:58.0858230Z ##[debug] "name": "👕", +2024-05-29T06:06:58.0858662Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:58.0859130Z ##[debug] }, +2024-05-29T06:06:58.0859366Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.0859665Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:58.0860005Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.0860324Z ##[debug] "workflow": { +2024-05-29T06:06:58.0860597Z ##[debug] "name": "👕", +2024-05-29T06:06:58.0861048Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:58.0861509Z ##[debug] } +2024-05-29T06:06:58.0861729Z ##[debug] } +2024-05-29T06:06:58.0861951Z ##[debug] }, +2024-05-29T06:06:58.0862169Z ##[debug] { +2024-05-29T06:06:58.0862394Z ##[debug] "checkRun": { +2024-05-29T06:06:58.0862686Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:58.0863018Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:58.0863326Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0863915Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:58.0864514Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0864818Z ##[debug] }, +2024-05-29T06:06:58.0865050Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.0865343Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0865669Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:58.0866080Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.0866394Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:58.0866740Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.0867086Z ##[debug] "workflow": { +2024-05-29T06:06:58.0867384Z ##[debug] "name": "👕", +2024-05-29T06:06:58.0867839Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:58.0868296Z ##[debug] } +2024-05-29T06:06:58.0868529Z ##[debug] }, +2024-05-29T06:06:58.0868769Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.0869055Z ##[debug] "totalCount": 4, +2024-05-29T06:06:58.0869356Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.0869657Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.0870056Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:58.0870447Z ##[debug] }, +2024-05-29T06:06:58.0870693Z ##[debug] "nodes": [ +2024-05-29T06:06:58.0871085Z ##[debug] { +2024-05-29T06:06:58.0871370Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:58.0871714Z ##[debug] "name": "typos", +2024-05-29T06:06:58.0872044Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0872766Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:58.0873382Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0873708Z ##[debug] }, +2024-05-29T06:06:58.0873943Z ##[debug] { +2024-05-29T06:06:58.0874217Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:58.0874563Z ##[debug] "name": "dprint", +2024-05-29T06:06:58.0874891Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0875487Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:58.0876197Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0876513Z ##[debug] }, +2024-05-29T06:06:58.0876756Z ##[debug] { +2024-05-29T06:06:58.0877030Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:58.0877375Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:58.0877722Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0878309Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:58.0878908Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0879218Z ##[debug] }, +2024-05-29T06:06:58.0879457Z ##[debug] { +2024-05-29T06:06:58.0879725Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:58.0880061Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:58.0880399Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0881004Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:58.0881606Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0881929Z ##[debug] } +2024-05-29T06:06:58.0882164Z ##[debug] ] +2024-05-29T06:06:58.0882392Z ##[debug] } +2024-05-29T06:06:58.0882619Z ##[debug] }, +2024-05-29T06:06:58.0882847Z ##[debug] "workflow": { +2024-05-29T06:06:58.0883118Z ##[debug] "name": "👕", +2024-05-29T06:06:58.0883552Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:58.0884015Z ##[debug] }, +2024-05-29T06:06:58.0884250Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.0884548Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:58.0884923Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.0885237Z ##[debug] "workflow": { +2024-05-29T06:06:58.0885509Z ##[debug] "name": "👕", +2024-05-29T06:06:58.0886053Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:58.0886515Z ##[debug] } +2024-05-29T06:06:58.0886734Z ##[debug] } +2024-05-29T06:06:58.0886951Z ##[debug] }, +2024-05-29T06:06:58.0887169Z ##[debug] { +2024-05-29T06:06:58.0887386Z ##[debug] "checkRun": { +2024-05-29T06:06:58.0887684Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:58.0888011Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:58.0888313Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0888899Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:58.0889494Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0889792Z ##[debug] }, +2024-05-29T06:06:58.0890028Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.0890322Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0890644Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:58.0890963Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.0891399Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:58.0891749Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.0892075Z ##[debug] "workflow": { +2024-05-29T06:06:58.0892387Z ##[debug] "name": "👕", +2024-05-29T06:06:58.0892835Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:58.0893411Z ##[debug] } +2024-05-29T06:06:58.0893646Z ##[debug] }, +2024-05-29T06:06:58.0893887Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.0894171Z ##[debug] "totalCount": 4, +2024-05-29T06:06:58.0894471Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.0894769Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.0895168Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:06:58.0895555Z ##[debug] }, +2024-05-29T06:06:58.0895890Z ##[debug] "nodes": [ +2024-05-29T06:06:58.0896151Z ##[debug] { +2024-05-29T06:06:58.0896436Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:06:58.0896781Z ##[debug] "name": "typos", +2024-05-29T06:06:58.0897106Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0897710Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:06:58.0898325Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0898642Z ##[debug] }, +2024-05-29T06:06:58.0898885Z ##[debug] { +2024-05-29T06:06:58.0899158Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:06:58.0899498Z ##[debug] "name": "dprint", +2024-05-29T06:06:58.0899839Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0900428Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:06:58.0901027Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0901337Z ##[debug] }, +2024-05-29T06:06:58.0901582Z ##[debug] { +2024-05-29T06:06:58.0901854Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:06:58.0902196Z ##[debug] "name": "deno_lint", +2024-05-29T06:06:58.0902540Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0903141Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:06:58.0903733Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0904047Z ##[debug] }, +2024-05-29T06:06:58.0904290Z ##[debug] { +2024-05-29T06:06:58.0904554Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:06:58.0904897Z ##[debug] "name": "yamlfmt", +2024-05-29T06:06:58.0905234Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0905925Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:06:58.0906532Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0906855Z ##[debug] } +2024-05-29T06:06:58.0907085Z ##[debug] ] +2024-05-29T06:06:58.0907311Z ##[debug] } +2024-05-29T06:06:58.0907535Z ##[debug] }, +2024-05-29T06:06:58.0907764Z ##[debug] "workflow": { +2024-05-29T06:06:58.0908037Z ##[debug] "name": "👕", +2024-05-29T06:06:58.0908476Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:58.0908956Z ##[debug] }, +2024-05-29T06:06:58.0909187Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.0909495Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:06:58.0909835Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.0910146Z ##[debug] "workflow": { +2024-05-29T06:06:58.0910425Z ##[debug] "name": "👕", +2024-05-29T06:06:58.0910878Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:06:58.0911337Z ##[debug] } +2024-05-29T06:06:58.0911687Z ##[debug] } +2024-05-29T06:06:58.0911921Z ##[debug] }, +2024-05-29T06:06:58.0912135Z ##[debug] { +2024-05-29T06:06:58.0912361Z ##[debug] "checkRun": { +2024-05-29T06:06:58.0912652Z ##[debug] "databaseId": 25536411289, +2024-05-29T06:06:58.0912978Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:58.0913413Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0913999Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", +2024-05-29T06:06:58.0914598Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0914897Z ##[debug] }, +2024-05-29T06:06:58.0915129Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.0915417Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0915740Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:58.0916158Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.0916474Z ##[debug] "databaseId": 9281068678, +2024-05-29T06:06:58.0916824Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.0917148Z ##[debug] "workflow": { +2024-05-29T06:06:58.0917438Z ##[debug] "name": "💧", +2024-05-29T06:06:58.0917909Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:58.0918397Z ##[debug] } +2024-05-29T06:06:58.0918634Z ##[debug] }, +2024-05-29T06:06:58.0918869Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.0919158Z ##[debug] "totalCount": 1, +2024-05-29T06:06:58.0919459Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.0919760Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.0920174Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpk=" +2024-05-29T06:06:58.0920564Z ##[debug] }, +2024-05-29T06:06:58.0920805Z ##[debug] "nodes": [ +2024-05-29T06:06:58.0921071Z ##[debug] { +2024-05-29T06:06:58.0921352Z ##[debug] "databaseId": 25536411289, +2024-05-29T06:06:58.0921718Z ##[debug] "name": "gitleaks", +2024-05-29T06:06:58.0922058Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0922668Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", +2024-05-29T06:06:58.0923284Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0923608Z ##[debug] } +2024-05-29T06:06:58.0923846Z ##[debug] ] +2024-05-29T06:06:58.0924078Z ##[debug] } +2024-05-29T06:06:58.0924296Z ##[debug] }, +2024-05-29T06:06:58.0924533Z ##[debug] "workflow": { +2024-05-29T06:06:58.0924813Z ##[debug] "name": "💧", +2024-05-29T06:06:58.0925257Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:58.0925735Z ##[debug] }, +2024-05-29T06:06:58.0926075Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.0926372Z ##[debug] "databaseId": 9281068678, +2024-05-29T06:06:58.0926706Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.0927029Z ##[debug] "workflow": { +2024-05-29T06:06:58.0927302Z ##[debug] "name": "💧", +2024-05-29T06:06:58.0927758Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:06:58.0928234Z ##[debug] } +2024-05-29T06:06:58.0928457Z ##[debug] } +2024-05-29T06:06:58.0928679Z ##[debug] }, +2024-05-29T06:06:58.0928900Z ##[debug] { +2024-05-29T06:06:58.0929119Z ##[debug] "checkRun": { +2024-05-29T06:06:58.0929411Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:58.0929748Z ##[debug] "name": "intermediate", +2024-05-29T06:06:58.0930071Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0930662Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:58.0931258Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0931563Z ##[debug] }, +2024-05-29T06:06:58.0931790Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.0932216Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:58.0932530Z ##[debug] "conclusion": null, +2024-05-29T06:06:58.0932833Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.0933148Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:58.0933492Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.0933920Z ##[debug] "workflow": { +2024-05-29T06:06:58.0934271Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:58.0934848Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:58.0935343Z ##[debug] } +2024-05-29T06:06:58.0935576Z ##[debug] }, +2024-05-29T06:06:58.0935913Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.0936205Z ##[debug] "totalCount": 6, +2024-05-29T06:06:58.0936508Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.0936815Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.0937219Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:06:58.0937608Z ##[debug] }, +2024-05-29T06:06:58.0937853Z ##[debug] "nodes": [ +2024-05-29T06:06:58.0938117Z ##[debug] { +2024-05-29T06:06:58.0938391Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:58.0938766Z ##[debug] "name": "intermediate", +2024-05-29T06:06:58.0939127Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0939733Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:58.0940346Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0940668Z ##[debug] }, +2024-05-29T06:06:58.0940904Z ##[debug] { +2024-05-29T06:06:58.0941179Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:58.0941537Z ##[debug] "name": "wait-success", +2024-05-29T06:06:58.0941890Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:58.0942500Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:58.0943100Z ##[debug] "conclusion": null +2024-05-29T06:06:58.0943405Z ##[debug] }, +2024-05-29T06:06:58.0943639Z ##[debug] { +2024-05-29T06:06:58.0943917Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:58.0944298Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:58.0944677Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0945279Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:58.0945980Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0946296Z ##[debug] }, +2024-05-29T06:06:58.0946538Z ##[debug] { +2024-05-29T06:06:58.0946810Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:58.0947154Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:58.0947508Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:58.0948118Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:58.0948710Z ##[debug] "conclusion": null +2024-05-29T06:06:58.0949015Z ##[debug] }, +2024-05-29T06:06:58.0949254Z ##[debug] { +2024-05-29T06:06:58.0949520Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:06:58.0949883Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:06:58.0950246Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:58.0950830Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:58.0951413Z ##[debug] "conclusion": null +2024-05-29T06:06:58.0951723Z ##[debug] }, +2024-05-29T06:06:58.0951969Z ##[debug] { +2024-05-29T06:06:58.0952232Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:06:58.0952740Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:06:58.0953118Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:58.0953712Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:06:58.0954401Z ##[debug] "conclusion": null +2024-05-29T06:06:58.0954708Z ##[debug] } +2024-05-29T06:06:58.0954943Z ##[debug] ] +2024-05-29T06:06:58.0955168Z ##[debug] } +2024-05-29T06:06:58.0955393Z ##[debug] }, +2024-05-29T06:06:58.0955623Z ##[debug] "workflow": { +2024-05-29T06:06:58.0956046Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:58.0956608Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:58.0957106Z ##[debug] }, +2024-05-29T06:06:58.0957335Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.0957637Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:58.0957978Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.0958288Z ##[debug] "workflow": { +2024-05-29T06:06:58.0958630Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:58.0959195Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:58.0959692Z ##[debug] } +2024-05-29T06:06:58.0959917Z ##[debug] } +2024-05-29T06:06:58.0960141Z ##[debug] }, +2024-05-29T06:06:58.0960351Z ##[debug] { +2024-05-29T06:06:58.0960578Z ##[debug] "checkRun": { +2024-05-29T06:06:58.0960869Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:58.0961207Z ##[debug] "name": "wait-success", +2024-05-29T06:06:58.0961536Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:58.0962124Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:58.0962712Z ##[debug] "conclusion": null +2024-05-29T06:06:58.0963003Z ##[debug] }, +2024-05-29T06:06:58.0963238Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.0963526Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:58.0963828Z ##[debug] "conclusion": null, +2024-05-29T06:06:58.0964135Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.0964452Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:58.0964794Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.0965125Z ##[debug] "workflow": { +2024-05-29T06:06:58.0965475Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:58.0966136Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:58.0966640Z ##[debug] } +2024-05-29T06:06:58.0966873Z ##[debug] }, +2024-05-29T06:06:58.0967128Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.0967420Z ##[debug] "totalCount": 6, +2024-05-29T06:06:58.0967719Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.0968021Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.0968427Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:06:58.0968817Z ##[debug] }, +2024-05-29T06:06:58.0969064Z ##[debug] "nodes": [ +2024-05-29T06:06:58.0969329Z ##[debug] { +2024-05-29T06:06:58.0969605Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:58.0969974Z ##[debug] "name": "intermediate", +2024-05-29T06:06:58.0970330Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0970940Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:58.0971553Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0971871Z ##[debug] }, +2024-05-29T06:06:58.0972115Z ##[debug] { +2024-05-29T06:06:58.0972391Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:58.0972868Z ##[debug] "name": "wait-success", +2024-05-29T06:06:58.0973224Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:58.0973832Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:58.0974429Z ##[debug] "conclusion": null +2024-05-29T06:06:58.0974837Z ##[debug] }, +2024-05-29T06:06:58.0975078Z ##[debug] { +2024-05-29T06:06:58.0975351Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:58.0975729Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:58.0976212Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0976816Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:58.0977415Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0977741Z ##[debug] }, +2024-05-29T06:06:58.0977982Z ##[debug] { +2024-05-29T06:06:58.0978252Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:58.0978603Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:58.0978951Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:58.0979549Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:58.0980149Z ##[debug] "conclusion": null +2024-05-29T06:06:58.0980475Z ##[debug] }, +2024-05-29T06:06:58.0980715Z ##[debug] { +2024-05-29T06:06:58.0980981Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:06:58.0981352Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:06:58.0981715Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:58.0982295Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:58.0982892Z ##[debug] "conclusion": null +2024-05-29T06:06:58.0983196Z ##[debug] }, +2024-05-29T06:06:58.0983433Z ##[debug] { +2024-05-29T06:06:58.0983708Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:06:58.0984088Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:06:58.0984454Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:58.0985050Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:06:58.0985649Z ##[debug] "conclusion": null +2024-05-29T06:06:58.0986050Z ##[debug] } +2024-05-29T06:06:58.0986377Z ##[debug] ] +2024-05-29T06:06:58.0986751Z ##[debug] } +2024-05-29T06:06:58.0987129Z ##[debug] }, +2024-05-29T06:06:58.0987357Z ##[debug] "workflow": { +2024-05-29T06:06:58.0987693Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:58.0988254Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:58.0988746Z ##[debug] }, +2024-05-29T06:06:58.0988987Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.0989289Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:58.0989619Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.0989935Z ##[debug] "workflow": { +2024-05-29T06:06:58.0990279Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:58.0990833Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:58.0991329Z ##[debug] } +2024-05-29T06:06:58.0991553Z ##[debug] } +2024-05-29T06:06:58.0991766Z ##[debug] }, +2024-05-29T06:06:58.0991983Z ##[debug] { +2024-05-29T06:06:58.0992207Z ##[debug] "checkRun": { +2024-05-29T06:06:58.0992491Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:58.0992849Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:58.0993198Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.0993921Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:58.0994515Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.0994838Z ##[debug] }, +2024-05-29T06:06:58.0995062Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.0995336Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:58.0995766Z ##[debug] "conclusion": null, +2024-05-29T06:06:58.0996187Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.0996493Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:58.0996834Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.0997157Z ##[debug] "workflow": { +2024-05-29T06:06:58.0997502Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:58.0998075Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:58.0998581Z ##[debug] } +2024-05-29T06:06:58.0998809Z ##[debug] }, +2024-05-29T06:06:58.0999047Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.0999344Z ##[debug] "totalCount": 6, +2024-05-29T06:06:58.0999641Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.0999946Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.1000356Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:06:58.1000750Z ##[debug] }, +2024-05-29T06:06:58.1000988Z ##[debug] "nodes": [ +2024-05-29T06:06:58.1001255Z ##[debug] { +2024-05-29T06:06:58.1001531Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:58.1008243Z ##[debug] "name": "intermediate", +2024-05-29T06:06:58.1008634Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1009289Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:58.1009926Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1010253Z ##[debug] }, +2024-05-29T06:06:58.1010491Z ##[debug] { +2024-05-29T06:06:58.1010775Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:58.1011151Z ##[debug] "name": "wait-success", +2024-05-29T06:06:58.1011511Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:58.1012122Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:58.1012730Z ##[debug] "conclusion": null +2024-05-29T06:06:58.1013041Z ##[debug] }, +2024-05-29T06:06:58.1013283Z ##[debug] { +2024-05-29T06:06:58.1013566Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:58.1013951Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:58.1014333Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1014939Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:58.1015547Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1015987Z ##[debug] }, +2024-05-29T06:06:58.1016235Z ##[debug] { +2024-05-29T06:06:58.1016509Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:58.1016858Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:58.1017215Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:58.1017830Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:58.1018422Z ##[debug] "conclusion": null +2024-05-29T06:06:58.1018732Z ##[debug] }, +2024-05-29T06:06:58.1018973Z ##[debug] { +2024-05-29T06:06:58.1019239Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:06:58.1019612Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:06:58.1019976Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:58.1020726Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:58.1021323Z ##[debug] "conclusion": null +2024-05-29T06:06:58.1021630Z ##[debug] }, +2024-05-29T06:06:58.1021869Z ##[debug] { +2024-05-29T06:06:58.1022132Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:06:58.1022651Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:06:58.1023020Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:58.1023604Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:06:58.1024202Z ##[debug] "conclusion": null +2024-05-29T06:06:58.1024506Z ##[debug] } +2024-05-29T06:06:58.1024734Z ##[debug] ] +2024-05-29T06:06:58.1024966Z ##[debug] } +2024-05-29T06:06:58.1025189Z ##[debug] }, +2024-05-29T06:06:58.1025413Z ##[debug] "workflow": { +2024-05-29T06:06:58.1025746Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:58.1026434Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:58.1026945Z ##[debug] }, +2024-05-29T06:06:58.1027179Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1027482Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:58.1027823Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1028131Z ##[debug] "workflow": { +2024-05-29T06:06:58.1028472Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:58.1029035Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:58.1029527Z ##[debug] } +2024-05-29T06:06:58.1029751Z ##[debug] } +2024-05-29T06:06:58.1029968Z ##[debug] }, +2024-05-29T06:06:58.1030178Z ##[debug] { +2024-05-29T06:06:58.1030401Z ##[debug] "checkRun": { +2024-05-29T06:06:58.1030691Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:58.1031018Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:58.1031341Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:58.1031947Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:58.1032540Z ##[debug] "conclusion": null +2024-05-29T06:06:58.1032841Z ##[debug] }, +2024-05-29T06:06:58.1033079Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.1033360Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:58.1033669Z ##[debug] "conclusion": null, +2024-05-29T06:06:58.1033973Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1034279Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:58.1034625Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1034949Z ##[debug] "workflow": { +2024-05-29T06:06:58.1035302Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:58.1035967Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:58.1036475Z ##[debug] } +2024-05-29T06:06:58.1036708Z ##[debug] }, +2024-05-29T06:06:58.1036943Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.1037232Z ##[debug] "totalCount": 6, +2024-05-29T06:06:58.1037529Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.1037831Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.1038243Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:06:58.1038646Z ##[debug] }, +2024-05-29T06:06:58.1038887Z ##[debug] "nodes": [ +2024-05-29T06:06:58.1039151Z ##[debug] { +2024-05-29T06:06:58.1039428Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:58.1039792Z ##[debug] "name": "intermediate", +2024-05-29T06:06:58.1040145Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1040766Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:58.1041502Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1041820Z ##[debug] }, +2024-05-29T06:06:58.1042059Z ##[debug] { +2024-05-29T06:06:58.1042326Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:58.1042683Z ##[debug] "name": "wait-success", +2024-05-29T06:06:58.1043151Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:58.1043757Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:58.1044368Z ##[debug] "conclusion": null +2024-05-29T06:06:58.1044667Z ##[debug] }, +2024-05-29T06:06:58.1044906Z ##[debug] { +2024-05-29T06:06:58.1045176Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:58.1045549Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:58.1046028Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1046633Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:58.1047227Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1047549Z ##[debug] }, +2024-05-29T06:06:58.1047785Z ##[debug] { +2024-05-29T06:06:58.1048050Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:58.1048404Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:58.1048764Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:58.1049363Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:58.1049951Z ##[debug] "conclusion": null +2024-05-29T06:06:58.1050257Z ##[debug] }, +2024-05-29T06:06:58.1050491Z ##[debug] { +2024-05-29T06:06:58.1050753Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:06:58.1051122Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:06:58.1051484Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:58.1052077Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:58.1052673Z ##[debug] "conclusion": null +2024-05-29T06:06:58.1052975Z ##[debug] }, +2024-05-29T06:06:58.1053211Z ##[debug] { +2024-05-29T06:06:58.1053481Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:06:58.1053857Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:06:58.1054225Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:58.1054802Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:06:58.1055393Z ##[debug] "conclusion": null +2024-05-29T06:06:58.1055695Z ##[debug] } +2024-05-29T06:06:58.1056188Z ##[debug] ] +2024-05-29T06:06:58.1056418Z ##[debug] } +2024-05-29T06:06:58.1056638Z ##[debug] }, +2024-05-29T06:06:58.1056867Z ##[debug] "workflow": { +2024-05-29T06:06:58.1057197Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:58.1057760Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:58.1058250Z ##[debug] }, +2024-05-29T06:06:58.1058488Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1058804Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:58.1059130Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1059441Z ##[debug] "workflow": { +2024-05-29T06:06:58.1059783Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:58.1060386Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:58.1061014Z ##[debug] } +2024-05-29T06:06:58.1061241Z ##[debug] } +2024-05-29T06:06:58.1061457Z ##[debug] }, +2024-05-29T06:06:58.1061666Z ##[debug] { +2024-05-29T06:06:58.1061896Z ##[debug] "checkRun": { +2024-05-29T06:06:58.1062323Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:06:58.1062674Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:06:58.1063010Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:58.1063584Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:58.1064272Z ##[debug] "conclusion": null +2024-05-29T06:06:58.1064566Z ##[debug] }, +2024-05-29T06:06:58.1064796Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.1065072Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:58.1065379Z ##[debug] "conclusion": null, +2024-05-29T06:06:58.1065685Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1066206Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:58.1066552Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1066877Z ##[debug] "workflow": { +2024-05-29T06:06:58.1067250Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:58.1067847Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:58.1068344Z ##[debug] } +2024-05-29T06:06:58.1068568Z ##[debug] }, +2024-05-29T06:06:58.1068805Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.1069097Z ##[debug] "totalCount": 6, +2024-05-29T06:06:58.1069390Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.1069693Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.1070094Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:06:58.1070482Z ##[debug] }, +2024-05-29T06:06:58.1070716Z ##[debug] "nodes": [ +2024-05-29T06:06:58.1070974Z ##[debug] { +2024-05-29T06:06:58.1071248Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:58.1071607Z ##[debug] "name": "intermediate", +2024-05-29T06:06:58.1071959Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1072565Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:58.1073171Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1073491Z ##[debug] }, +2024-05-29T06:06:58.1073727Z ##[debug] { +2024-05-29T06:06:58.1073997Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:58.1074355Z ##[debug] "name": "wait-success", +2024-05-29T06:06:58.1074704Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:58.1075305Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:58.1075994Z ##[debug] "conclusion": null +2024-05-29T06:06:58.1076304Z ##[debug] }, +2024-05-29T06:06:58.1076538Z ##[debug] { +2024-05-29T06:06:58.1076801Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:58.1077174Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:58.1077557Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1078144Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:58.1078749Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1079073Z ##[debug] }, +2024-05-29T06:06:58.1079304Z ##[debug] { +2024-05-29T06:06:58.1079575Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:58.1079921Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:58.1080261Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:58.1080860Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:58.1081453Z ##[debug] "conclusion": null +2024-05-29T06:06:58.1081761Z ##[debug] }, +2024-05-29T06:06:58.1081991Z ##[debug] { +2024-05-29T06:06:58.1082256Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:06:58.1082742Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:06:58.1083103Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:58.1083684Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:58.1084396Z ##[debug] "conclusion": null +2024-05-29T06:06:58.1084695Z ##[debug] }, +2024-05-29T06:06:58.1084933Z ##[debug] { +2024-05-29T06:06:58.1085203Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:06:58.1085570Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:06:58.1086034Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:58.1086623Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:06:58.1087208Z ##[debug] "conclusion": null +2024-05-29T06:06:58.1087507Z ##[debug] } +2024-05-29T06:06:58.1087738Z ##[debug] ] +2024-05-29T06:06:58.1087972Z ##[debug] } +2024-05-29T06:06:58.1088187Z ##[debug] }, +2024-05-29T06:06:58.1088415Z ##[debug] "workflow": { +2024-05-29T06:06:58.1088745Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:58.1089295Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:58.1089791Z ##[debug] }, +2024-05-29T06:06:58.1090024Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1090318Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:58.1090648Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1090963Z ##[debug] "workflow": { +2024-05-29T06:06:58.1091292Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:58.1091851Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:58.1092344Z ##[debug] } +2024-05-29T06:06:58.1092565Z ##[debug] } +2024-05-29T06:06:58.1092781Z ##[debug] }, +2024-05-29T06:06:58.1093006Z ##[debug] { +2024-05-29T06:06:58.1093226Z ##[debug] "checkRun": { +2024-05-29T06:06:58.1093518Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:06:58.1093880Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:06:58.1094219Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:58.1094801Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:06:58.1095386Z ##[debug] "conclusion": null +2024-05-29T06:06:58.1095678Z ##[debug] }, +2024-05-29T06:06:58.1096004Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.1096283Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:58.1096585Z ##[debug] "conclusion": null, +2024-05-29T06:06:58.1096878Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1097188Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:58.1097529Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1097852Z ##[debug] "workflow": { +2024-05-29T06:06:58.1098200Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:58.1098771Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:58.1099260Z ##[debug] } +2024-05-29T06:06:58.1099496Z ##[debug] }, +2024-05-29T06:06:58.1099731Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.1100013Z ##[debug] "totalCount": 6, +2024-05-29T06:06:58.1100309Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.1100609Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.1101010Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:06:58.1101389Z ##[debug] }, +2024-05-29T06:06:58.1101625Z ##[debug] "nodes": [ +2024-05-29T06:06:58.1101883Z ##[debug] { +2024-05-29T06:06:58.1102152Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:06:58.1102509Z ##[debug] "name": "intermediate", +2024-05-29T06:06:58.1102984Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1103593Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:06:58.1104197Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1104620Z ##[debug] }, +2024-05-29T06:06:58.1104852Z ##[debug] { +2024-05-29T06:06:58.1105117Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:06:58.1105232Z ##[debug] "name": "wait-success", +2024-05-29T06:06:58.1105354Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:58.1105711Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:06:58.1105920Z ##[debug] "conclusion": null +2024-05-29T06:06:58.1106005Z ##[debug] }, +2024-05-29T06:06:58.1106085Z ##[debug] { +2024-05-29T06:06:58.1106210Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:06:58.1106351Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:06:58.1106467Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1106821Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:58.1106941Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1107030Z ##[debug] }, +2024-05-29T06:06:58.1107113Z ##[debug] { +2024-05-29T06:06:58.1107232Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:06:58.1107346Z ##[debug] "name": "wait-fail", +2024-05-29T06:06:58.1107465Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:06:58.1107827Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:06:58.1107937Z ##[debug] "conclusion": null +2024-05-29T06:06:58.1108019Z ##[debug] }, +2024-05-29T06:06:58.1108103Z ##[debug] { +2024-05-29T06:06:58.1108228Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:06:58.1108355Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:06:58.1108464Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:58.1108833Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:58.1108937Z ##[debug] "conclusion": null +2024-05-29T06:06:58.1109021Z ##[debug] }, +2024-05-29T06:06:58.1109101Z ##[debug] { +2024-05-29T06:06:58.1109218Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:06:58.1109361Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:06:58.1109463Z ##[debug] "status": "QUEUED", +2024-05-29T06:06:58.1109832Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:06:58.1109937Z ##[debug] "conclusion": null +2024-05-29T06:06:58.1110019Z ##[debug] } +2024-05-29T06:06:58.1110103Z ##[debug] ] +2024-05-29T06:06:58.1110185Z ##[debug] } +2024-05-29T06:06:58.1110269Z ##[debug] }, +2024-05-29T06:06:58.1110365Z ##[debug] "workflow": { +2024-05-29T06:06:58.1110518Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:58.1110801Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:58.1110890Z ##[debug] }, +2024-05-29T06:06:58.1110986Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1111096Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:06:58.1111199Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1111291Z ##[debug] "workflow": { +2024-05-29T06:06:58.1111447Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:06:58.1111734Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:06:58.1111934Z ##[debug] } +2024-05-29T06:06:58.1112025Z ##[debug] } +2024-05-29T06:06:58.1112104Z ##[debug] }, +2024-05-29T06:06:58.1112185Z ##[debug] { +2024-05-29T06:06:58.1112280Z ##[debug] "checkRun": { +2024-05-29T06:06:58.1112389Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:58.1112612Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:58.1112718Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1113084Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:58.1113195Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:58.1113275Z ##[debug] }, +2024-05-29T06:06:58.1113368Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.1113475Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1113582Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:58.1113677Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1113803Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:58.1113913Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1114006Z ##[debug] "workflow": { +2024-05-29T06:06:58.1114130Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:58.1114431Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:58.1114530Z ##[debug] } +2024-05-29T06:06:58.1114612Z ##[debug] }, +2024-05-29T06:06:58.1114705Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.1114808Z ##[debug] "totalCount": 4, +2024-05-29T06:06:58.1114904Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.1115014Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.1115200Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:58.1115283Z ##[debug] }, +2024-05-29T06:06:58.1115372Z ##[debug] "nodes": [ +2024-05-29T06:06:58.1115461Z ##[debug] { +2024-05-29T06:06:58.1115590Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:58.1115723Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:58.1115940Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1116316Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:58.1116447Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:58.1116531Z ##[debug] }, +2024-05-29T06:06:58.1116612Z ##[debug] { +2024-05-29T06:06:58.1116737Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:58.1116842Z ##[debug] "name": "renovate", +2024-05-29T06:06:58.1116960Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1117330Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:58.1117448Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:58.1117535Z ##[debug] }, +2024-05-29T06:06:58.1117619Z ##[debug] { +2024-05-29T06:06:58.1117738Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:58.1117862Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:58.1117975Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1118336Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:58.1118456Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:58.1118539Z ##[debug] }, +2024-05-29T06:06:58.1118624Z ##[debug] { +2024-05-29T06:06:58.1118741Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:58.1118851Z ##[debug] "name": "dependabot", +2024-05-29T06:06:58.1118970Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1119324Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:58.1119552Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:58.1119642Z ##[debug] } +2024-05-29T06:06:58.1119724Z ##[debug] ] +2024-05-29T06:06:58.1119807Z ##[debug] } +2024-05-29T06:06:58.1119892Z ##[debug] }, +2024-05-29T06:06:58.1119982Z ##[debug] "workflow": { +2024-05-29T06:06:58.1120189Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:58.1120473Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:58.1120554Z ##[debug] }, +2024-05-29T06:06:58.1120653Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1120762Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:58.1120869Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1120967Z ##[debug] "workflow": { +2024-05-29T06:06:58.1121064Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:58.1121348Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:58.1121433Z ##[debug] } +2024-05-29T06:06:58.1121523Z ##[debug] } +2024-05-29T06:06:58.1121607Z ##[debug] }, +2024-05-29T06:06:58.1121694Z ##[debug] { +2024-05-29T06:06:58.1121786Z ##[debug] "checkRun": { +2024-05-29T06:06:58.1121897Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:58.1122002Z ##[debug] "name": "renovate", +2024-05-29T06:06:58.1122104Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1122470Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:58.1122576Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:58.1122656Z ##[debug] }, +2024-05-29T06:06:58.1122751Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.1122850Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1122957Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:58.1123060Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1123172Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:58.1123288Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1123382Z ##[debug] "workflow": { +2024-05-29T06:06:58.1123480Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:58.1123767Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:58.1123856Z ##[debug] } +2024-05-29T06:06:58.1123937Z ##[debug] }, +2024-05-29T06:06:58.1124033Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.1124129Z ##[debug] "totalCount": 4, +2024-05-29T06:06:58.1124224Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.1124337Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.1124514Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:58.1124600Z ##[debug] }, +2024-05-29T06:06:58.1124688Z ##[debug] "nodes": [ +2024-05-29T06:06:58.1124769Z ##[debug] { +2024-05-29T06:06:58.1124892Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:58.1125021Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:58.1125135Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1125501Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:58.1125621Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:58.1125706Z ##[debug] }, +2024-05-29T06:06:58.1125889Z ##[debug] { +2024-05-29T06:06:58.1126007Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:58.1126114Z ##[debug] "name": "renovate", +2024-05-29T06:06:58.1126228Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1126586Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:58.1126706Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:58.1126787Z ##[debug] }, +2024-05-29T06:06:58.1126869Z ##[debug] { +2024-05-29T06:06:58.1127128Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:58.1127254Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:58.1127365Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1127732Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:58.1127950Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:58.1128038Z ##[debug] }, +2024-05-29T06:06:58.1128120Z ##[debug] { +2024-05-29T06:06:58.1128234Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:58.1128348Z ##[debug] "name": "dependabot", +2024-05-29T06:06:58.1128463Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1128816Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:58.1128939Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:58.1129026Z ##[debug] } +2024-05-29T06:06:58.1129115Z ##[debug] ] +2024-05-29T06:06:58.1129196Z ##[debug] } +2024-05-29T06:06:58.1129276Z ##[debug] }, +2024-05-29T06:06:58.1129370Z ##[debug] "workflow": { +2024-05-29T06:06:58.1129474Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:58.1129753Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:58.1129839Z ##[debug] }, +2024-05-29T06:06:58.1129934Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1130039Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:58.1130152Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1130242Z ##[debug] "workflow": { +2024-05-29T06:06:58.1130336Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:58.1130623Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:58.1130705Z ##[debug] } +2024-05-29T06:06:58.1130795Z ##[debug] } +2024-05-29T06:06:58.1130876Z ##[debug] }, +2024-05-29T06:06:58.1130956Z ##[debug] { +2024-05-29T06:06:58.1131051Z ##[debug] "checkRun": { +2024-05-29T06:06:58.1131159Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:58.1131264Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:58.1131376Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1131734Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:58.1131837Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:58.1131922Z ##[debug] }, +2024-05-29T06:06:58.1132012Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.1132114Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1132219Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:58.1132315Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1132433Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:58.1132546Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1132640Z ##[debug] "workflow": { +2024-05-29T06:06:58.1132745Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:58.1133025Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:58.1133114Z ##[debug] } +2024-05-29T06:06:58.1133201Z ##[debug] }, +2024-05-29T06:06:58.1133293Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.1133396Z ##[debug] "totalCount": 4, +2024-05-29T06:06:58.1133488Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.1133596Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.1133773Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:58.1133854Z ##[debug] }, +2024-05-29T06:06:58.1133943Z ##[debug] "nodes": [ +2024-05-29T06:06:58.1134029Z ##[debug] { +2024-05-29T06:06:58.1134148Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:58.1134366Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:58.1134489Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1134851Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:58.1135049Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:58.1135133Z ##[debug] }, +2024-05-29T06:06:58.1135215Z ##[debug] { +2024-05-29T06:06:58.1135338Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:58.1135440Z ##[debug] "name": "renovate", +2024-05-29T06:06:58.1135554Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1136021Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:58.1136140Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:58.1136223Z ##[debug] }, +2024-05-29T06:06:58.1136310Z ##[debug] { +2024-05-29T06:06:58.1136433Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:58.1136555Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:58.1136668Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1137021Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:58.1137146Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:58.1137228Z ##[debug] }, +2024-05-29T06:06:58.1137309Z ##[debug] { +2024-05-29T06:06:58.1137429Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:58.1137539Z ##[debug] "name": "dependabot", +2024-05-29T06:06:58.1137651Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1138009Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:58.1138122Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:58.1138213Z ##[debug] } +2024-05-29T06:06:58.1138295Z ##[debug] ] +2024-05-29T06:06:58.1138376Z ##[debug] } +2024-05-29T06:06:58.1138459Z ##[debug] }, +2024-05-29T06:06:58.1138551Z ##[debug] "workflow": { +2024-05-29T06:06:58.1138649Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:58.1138939Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:58.1139020Z ##[debug] }, +2024-05-29T06:06:58.1139112Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1139222Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:58.1139326Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1139421Z ##[debug] "workflow": { +2024-05-29T06:06:58.1139516Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:58.1139798Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:58.1139885Z ##[debug] } +2024-05-29T06:06:58.1139964Z ##[debug] } +2024-05-29T06:06:58.1140051Z ##[debug] }, +2024-05-29T06:06:58.1140138Z ##[debug] { +2024-05-29T06:06:58.1140227Z ##[debug] "checkRun": { +2024-05-29T06:06:58.1140335Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:58.1140442Z ##[debug] "name": "dependabot", +2024-05-29T06:06:58.1140550Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1140922Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:58.1141028Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:58.1141107Z ##[debug] }, +2024-05-29T06:06:58.1141203Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.1141302Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1141408Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:06:58.1141507Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1141619Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:58.1141730Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1141950Z ##[debug] "workflow": { +2024-05-29T06:06:58.1142052Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:58.1142344Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:58.1142532Z ##[debug] } +2024-05-29T06:06:58.1142613Z ##[debug] }, +2024-05-29T06:06:58.1142713Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.1142810Z ##[debug] "totalCount": 4, +2024-05-29T06:06:58.1142902Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.1143017Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.1143191Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:06:58.1143273Z ##[debug] }, +2024-05-29T06:06:58.1143369Z ##[debug] "nodes": [ +2024-05-29T06:06:58.1143449Z ##[debug] { +2024-05-29T06:06:58.1143570Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:06:58.1143700Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:06:58.1143820Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1144186Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:06:58.1144303Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:58.1144392Z ##[debug] }, +2024-05-29T06:06:58.1144480Z ##[debug] { +2024-05-29T06:06:58.1144597Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:06:58.1144700Z ##[debug] "name": "renovate", +2024-05-29T06:06:58.1144819Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1145182Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:06:58.1145303Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:58.1145385Z ##[debug] }, +2024-05-29T06:06:58.1145468Z ##[debug] { +2024-05-29T06:06:58.1145596Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:06:58.1145716Z ##[debug] "name": "selfup-runner", +2024-05-29T06:06:58.1145927Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1146286Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:06:58.1146407Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:58.1146488Z ##[debug] }, +2024-05-29T06:06:58.1146579Z ##[debug] { +2024-05-29T06:06:58.1146693Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:06:58.1146806Z ##[debug] "name": "dependabot", +2024-05-29T06:06:58.1146918Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1147282Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:06:58.1147400Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:06:58.1147482Z ##[debug] } +2024-05-29T06:06:58.1147565Z ##[debug] ] +2024-05-29T06:06:58.1147650Z ##[debug] } +2024-05-29T06:06:58.1147730Z ##[debug] }, +2024-05-29T06:06:58.1147822Z ##[debug] "workflow": { +2024-05-29T06:06:58.1147925Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:58.1148208Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:58.1148290Z ##[debug] }, +2024-05-29T06:06:58.1148383Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1148486Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:06:58.1148596Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1148686Z ##[debug] "workflow": { +2024-05-29T06:06:58.1148782Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:06:58.1149066Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:06:58.1149147Z ##[debug] } +2024-05-29T06:06:58.1149227Z ##[debug] } +2024-05-29T06:06:58.1149310Z ##[debug] }, +2024-05-29T06:06:58.1149514Z ##[debug] { +2024-05-29T06:06:58.1149608Z ##[debug] "checkRun": { +2024-05-29T06:06:58.1149720Z ##[debug] "databaseId": 25536411287, +2024-05-29T06:06:58.1149809Z ##[debug] "name": "echo", +2024-05-29T06:06:58.1149911Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1150402Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", +2024-05-29T06:06:58.1150510Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1150595Z ##[debug] }, +2024-05-29T06:06:58.1150689Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.1150794Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1150905Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:58.1151001Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1151113Z ##[debug] "databaseId": 9281068684, +2024-05-29T06:06:58.1151231Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1151329Z ##[debug] "workflow": { +2024-05-29T06:06:58.1151456Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:58.1151744Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:58.1151826Z ##[debug] } +2024-05-29T06:06:58.1151917Z ##[debug] }, +2024-05-29T06:06:58.1152009Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.1152104Z ##[debug] "totalCount": 1, +2024-05-29T06:06:58.1152199Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.1152306Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.1152485Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpc=" +2024-05-29T06:06:58.1152571Z ##[debug] }, +2024-05-29T06:06:58.1152658Z ##[debug] "nodes": [ +2024-05-29T06:06:58.1152749Z ##[debug] { +2024-05-29T06:06:58.1152872Z ##[debug] "databaseId": 25536411287, +2024-05-29T06:06:58.1152968Z ##[debug] "name": "echo", +2024-05-29T06:06:58.1153095Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1153463Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", +2024-05-29T06:06:58.1153581Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1153675Z ##[debug] } +2024-05-29T06:06:58.1153757Z ##[debug] ] +2024-05-29T06:06:58.1153838Z ##[debug] } +2024-05-29T06:06:58.1153922Z ##[debug] }, +2024-05-29T06:06:58.1154016Z ##[debug] "workflow": { +2024-05-29T06:06:58.1154132Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:58.1154421Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:58.1154500Z ##[debug] }, +2024-05-29T06:06:58.1154596Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1154699Z ##[debug] "databaseId": 9281068684, +2024-05-29T06:06:58.1154806Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1154901Z ##[debug] "workflow": { +2024-05-29T06:06:58.1155016Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:06:58.1155300Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:06:58.1155387Z ##[debug] } +2024-05-29T06:06:58.1155471Z ##[debug] } +2024-05-29T06:06:58.1155553Z ##[debug] }, +2024-05-29T06:06:58.1155638Z ##[debug] { +2024-05-29T06:06:58.1155727Z ##[debug] "checkRun": { +2024-05-29T06:06:58.1155932Z ##[debug] "databaseId": 25536411604, +2024-05-29T06:06:58.1156022Z ##[debug] "name": "wait", +2024-05-29T06:06:58.1156121Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1156490Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", +2024-05-29T06:06:58.1156594Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1156674Z ##[debug] }, +2024-05-29T06:06:58.1156768Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.1157004Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1157114Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:58.1157214Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1157325Z ##[debug] "databaseId": 9281068685, +2024-05-29T06:06:58.1157442Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1157636Z ##[debug] "workflow": { +2024-05-29T06:06:58.1157748Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:58.1158027Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:58.1158110Z ##[debug] } +2024-05-29T06:06:58.1158192Z ##[debug] }, +2024-05-29T06:06:58.1158290Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.1158388Z ##[debug] "totalCount": 1, +2024-05-29T06:06:58.1158478Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.1158589Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.1158762Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWt9Q=" +2024-05-29T06:06:58.1158852Z ##[debug] }, +2024-05-29T06:06:58.1158941Z ##[debug] "nodes": [ +2024-05-29T06:06:58.1159023Z ##[debug] { +2024-05-29T06:06:58.1159147Z ##[debug] "databaseId": 25536411604, +2024-05-29T06:06:58.1159242Z ##[debug] "name": "wait", +2024-05-29T06:06:58.1159360Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1159725Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", +2024-05-29T06:06:58.1159842Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1159923Z ##[debug] } +2024-05-29T06:06:58.1160005Z ##[debug] ] +2024-05-29T06:06:58.1160085Z ##[debug] } +2024-05-29T06:06:58.1160164Z ##[debug] }, +2024-05-29T06:06:58.1160260Z ##[debug] "workflow": { +2024-05-29T06:06:58.1160375Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:58.1160654Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:58.1160735Z ##[debug] }, +2024-05-29T06:06:58.1160828Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1160938Z ##[debug] "databaseId": 9281068685, +2024-05-29T06:06:58.1161043Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1161140Z ##[debug] "workflow": { +2024-05-29T06:06:58.1161250Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:06:58.1161519Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:06:58.1161601Z ##[debug] } +2024-05-29T06:06:58.1161686Z ##[debug] } +2024-05-29T06:06:58.1161765Z ##[debug] }, +2024-05-29T06:06:58.1161848Z ##[debug] { +2024-05-29T06:06:58.1161937Z ##[debug] "checkRun": { +2024-05-29T06:06:58.1162042Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:58.1162154Z ##[debug] "name": "default_logic", +2024-05-29T06:06:58.1162261Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1162633Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:58.1162744Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1162825Z ##[debug] }, +2024-05-29T06:06:58.1162915Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.1163023Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1163125Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:58.1163223Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1163335Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:58.1163445Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1163541Z ##[debug] "workflow": { +2024-05-29T06:06:58.1163638Z ##[debug] "name": "Itself", +2024-05-29T06:06:58.1163894Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:58.1163980Z ##[debug] } +2024-05-29T06:06:58.1164060Z ##[debug] }, +2024-05-29T06:06:58.1164238Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.1164340Z ##[debug] "totalCount": 7, +2024-05-29T06:06:58.1164431Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.1164541Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.1164722Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:58.1164879Z ##[debug] }, +2024-05-29T06:06:58.1164971Z ##[debug] "nodes": [ +2024-05-29T06:06:58.1165052Z ##[debug] { +2024-05-29T06:06:58.1165174Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:58.1165297Z ##[debug] "name": "default_logic", +2024-05-29T06:06:58.1165427Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1165893Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:58.1166016Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1166101Z ##[debug] }, +2024-05-29T06:06:58.1166188Z ##[debug] { +2024-05-29T06:06:58.1166307Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:58.1166424Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:58.1166538Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1166911Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:58.1167051Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1167138Z ##[debug] }, +2024-05-29T06:06:58.1167217Z ##[debug] { +2024-05-29T06:06:58.1167331Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:58.1167502Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:58.1167614Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1167974Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:58.1168090Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1168173Z ##[debug] }, +2024-05-29T06:06:58.1168259Z ##[debug] { +2024-05-29T06:06:58.1168376Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:58.1168486Z ##[debug] "name": "skip-list", +2024-05-29T06:06:58.1168608Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1168966Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:58.1169086Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1169169Z ##[debug] }, +2024-05-29T06:06:58.1169249Z ##[debug] { +2024-05-29T06:06:58.1169369Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:58.1169568Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:58.1169680Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1170036Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:58.1170148Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1170235Z ##[debug] }, +2024-05-29T06:06:58.1170316Z ##[debug] { +2024-05-29T06:06:58.1170435Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:58.1170659Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:58.1170774Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1171126Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:58.1171246Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1171329Z ##[debug] }, +2024-05-29T06:06:58.1171410Z ##[debug] { +2024-05-29T06:06:58.1171532Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:58.1171758Z ##[debug] "name": "wait-list", +2024-05-29T06:06:58.1171879Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1172226Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:58.1172443Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1172529Z ##[debug] } +2024-05-29T06:06:58.1172610Z ##[debug] ] +2024-05-29T06:06:58.1172692Z ##[debug] } +2024-05-29T06:06:58.1172776Z ##[debug] }, +2024-05-29T06:06:58.1172865Z ##[debug] "workflow": { +2024-05-29T06:06:58.1172960Z ##[debug] "name": "Itself", +2024-05-29T06:06:58.1173218Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:58.1173298Z ##[debug] }, +2024-05-29T06:06:58.1173396Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1173501Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:58.1173606Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1173706Z ##[debug] "workflow": { +2024-05-29T06:06:58.1173801Z ##[debug] "name": "Itself", +2024-05-29T06:06:58.1174053Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:58.1174138Z ##[debug] } +2024-05-29T06:06:58.1174224Z ##[debug] } +2024-05-29T06:06:58.1174305Z ##[debug] }, +2024-05-29T06:06:58.1174389Z ##[debug] { +2024-05-29T06:06:58.1174479Z ##[debug] "checkRun": { +2024-05-29T06:06:58.1174586Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:58.1174701Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:58.1174801Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1175170Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:58.1175274Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1175352Z ##[debug] }, +2024-05-29T06:06:58.1175448Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.1175551Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1175655Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:58.1175757Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1175971Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:58.1176086Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1176185Z ##[debug] "workflow": { +2024-05-29T06:06:58.1176284Z ##[debug] "name": "Itself", +2024-05-29T06:06:58.1176548Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:58.1176631Z ##[debug] } +2024-05-29T06:06:58.1176712Z ##[debug] }, +2024-05-29T06:06:58.1176807Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.1176903Z ##[debug] "totalCount": 7, +2024-05-29T06:06:58.1176994Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.1177106Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.1177285Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:58.1177368Z ##[debug] }, +2024-05-29T06:06:58.1177460Z ##[debug] "nodes": [ +2024-05-29T06:06:58.1177542Z ##[debug] { +2024-05-29T06:06:58.1177667Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:58.1177790Z ##[debug] "name": "default_logic", +2024-05-29T06:06:58.1177905Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1178265Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:58.1178381Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1178462Z ##[debug] }, +2024-05-29T06:06:58.1178548Z ##[debug] { +2024-05-29T06:06:58.1178664Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:58.1178781Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:58.1178898Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1179379Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:58.1179501Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1179583Z ##[debug] }, +2024-05-29T06:06:58.1179664Z ##[debug] { +2024-05-29T06:06:58.1179901Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:58.1180069Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:58.1180183Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1180538Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:58.1180657Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1180742Z ##[debug] }, +2024-05-29T06:06:58.1180822Z ##[debug] { +2024-05-29T06:06:58.1180938Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:58.1181049Z ##[debug] "name": "skip-list", +2024-05-29T06:06:58.1181166Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1181536Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:58.1181658Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1181746Z ##[debug] }, +2024-05-29T06:06:58.1181831Z ##[debug] { +2024-05-29T06:06:58.1181946Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:58.1182142Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:58.1182260Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1182619Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:58.1182732Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1182819Z ##[debug] }, +2024-05-29T06:06:58.1182901Z ##[debug] { +2024-05-29T06:06:58.1183019Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:58.1183245Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:58.1183359Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1183717Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:58.1183830Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1183913Z ##[debug] }, +2024-05-29T06:06:58.1184000Z ##[debug] { +2024-05-29T06:06:58.1184116Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:58.1184221Z ##[debug] "name": "wait-list", +2024-05-29T06:06:58.1184338Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1184686Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:58.1184807Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1184889Z ##[debug] } +2024-05-29T06:06:58.1184969Z ##[debug] ] +2024-05-29T06:06:58.1185053Z ##[debug] } +2024-05-29T06:06:58.1185132Z ##[debug] }, +2024-05-29T06:06:58.1185223Z ##[debug] "workflow": { +2024-05-29T06:06:58.1185326Z ##[debug] "name": "Itself", +2024-05-29T06:06:58.1185583Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:58.1185664Z ##[debug] }, +2024-05-29T06:06:58.1185763Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1185966Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:58.1186078Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1186168Z ##[debug] "workflow": { +2024-05-29T06:06:58.1186262Z ##[debug] "name": "Itself", +2024-05-29T06:06:58.1186520Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:58.1186601Z ##[debug] } +2024-05-29T06:06:58.1186801Z ##[debug] } +2024-05-29T06:06:58.1186889Z ##[debug] }, +2024-05-29T06:06:58.1186969Z ##[debug] { +2024-05-29T06:06:58.1187060Z ##[debug] "checkRun": { +2024-05-29T06:06:58.1187171Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:58.1187333Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:58.1187539Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1187909Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:58.1188014Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1188097Z ##[debug] }, +2024-05-29T06:06:58.1188188Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.1188288Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1188397Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:58.1188493Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1188605Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:58.1188722Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1188814Z ##[debug] "workflow": { +2024-05-29T06:06:58.1188911Z ##[debug] "name": "Itself", +2024-05-29T06:06:58.1189174Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:58.1189260Z ##[debug] } +2024-05-29T06:06:58.1189343Z ##[debug] }, +2024-05-29T06:06:58.1189434Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.1189528Z ##[debug] "totalCount": 7, +2024-05-29T06:06:58.1189623Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.1189731Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.1189905Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:58.1189990Z ##[debug] }, +2024-05-29T06:06:58.1190077Z ##[debug] "nodes": [ +2024-05-29T06:06:58.1190158Z ##[debug] { +2024-05-29T06:06:58.1190279Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:58.1190401Z ##[debug] "name": "default_logic", +2024-05-29T06:06:58.1190517Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1190878Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:58.1190998Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1191085Z ##[debug] }, +2024-05-29T06:06:58.1191168Z ##[debug] { +2024-05-29T06:06:58.1191286Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:58.1191410Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:58.1191524Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1191880Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:58.1192004Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1192087Z ##[debug] }, +2024-05-29T06:06:58.1192173Z ##[debug] { +2024-05-29T06:06:58.1192290Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:58.1192456Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:58.1192573Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1192925Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:58.1193038Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1193123Z ##[debug] }, +2024-05-29T06:06:58.1193204Z ##[debug] { +2024-05-29T06:06:58.1193323Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:58.1193429Z ##[debug] "name": "skip-list", +2024-05-29T06:06:58.1193541Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1193899Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:58.1194103Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1194191Z ##[debug] }, +2024-05-29T06:06:58.1194277Z ##[debug] { +2024-05-29T06:06:58.1194392Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:58.1194593Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:58.1194779Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1195127Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:58.1195247Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1195333Z ##[debug] }, +2024-05-29T06:06:58.1195414Z ##[debug] { +2024-05-29T06:06:58.1195533Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:58.1195750Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:58.1195961Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1196336Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:58.1196450Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1196537Z ##[debug] }, +2024-05-29T06:06:58.1196617Z ##[debug] { +2024-05-29T06:06:58.1196739Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:58.1196848Z ##[debug] "name": "wait-list", +2024-05-29T06:06:58.1196960Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1197316Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:58.1197432Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1197513Z ##[debug] } +2024-05-29T06:06:58.1197598Z ##[debug] ] +2024-05-29T06:06:58.1197680Z ##[debug] } +2024-05-29T06:06:58.1197761Z ##[debug] }, +2024-05-29T06:06:58.1197855Z ##[debug] "workflow": { +2024-05-29T06:06:58.1197954Z ##[debug] "name": "Itself", +2024-05-29T06:06:58.1198207Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:58.1198293Z ##[debug] }, +2024-05-29T06:06:58.1198388Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1198499Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:58.1198610Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1198701Z ##[debug] "workflow": { +2024-05-29T06:06:58.1198800Z ##[debug] "name": "Itself", +2024-05-29T06:06:58.1199053Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:58.1199133Z ##[debug] } +2024-05-29T06:06:58.1199218Z ##[debug] } +2024-05-29T06:06:58.1199297Z ##[debug] }, +2024-05-29T06:06:58.1199376Z ##[debug] { +2024-05-29T06:06:58.1199472Z ##[debug] "checkRun": { +2024-05-29T06:06:58.1199578Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:58.1199682Z ##[debug] "name": "skip-list", +2024-05-29T06:06:58.1199788Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1200157Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:58.1200262Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1200351Z ##[debug] }, +2024-05-29T06:06:58.1200443Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.1200546Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1200649Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:58.1200744Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1200864Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:58.1200973Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1201063Z ##[debug] "workflow": { +2024-05-29T06:06:58.1201165Z ##[debug] "name": "Itself", +2024-05-29T06:06:58.1201419Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:58.1201620Z ##[debug] } +2024-05-29T06:06:58.1201709Z ##[debug] }, +2024-05-29T06:06:58.1201801Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.1201900Z ##[debug] "totalCount": 7, +2024-05-29T06:06:58.1201993Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.1202206Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.1202386Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:58.1202467Z ##[debug] }, +2024-05-29T06:06:58.1202555Z ##[debug] "nodes": [ +2024-05-29T06:06:58.1202641Z ##[debug] { +2024-05-29T06:06:58.1202759Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:58.1202876Z ##[debug] "name": "default_logic", +2024-05-29T06:06:58.1202994Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1203357Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:58.1203482Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1203564Z ##[debug] }, +2024-05-29T06:06:58.1203645Z ##[debug] { +2024-05-29T06:06:58.1203766Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:58.1203886Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:58.1204004Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1204359Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:58.1204475Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1204557Z ##[debug] }, +2024-05-29T06:06:58.1204642Z ##[debug] { +2024-05-29T06:06:58.1204760Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:58.1204944Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:58.1205056Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1205407Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:58.1205525Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1205606Z ##[debug] }, +2024-05-29T06:06:58.1205687Z ##[debug] { +2024-05-29T06:06:58.1205906Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:58.1206014Z ##[debug] "name": "skip-list", +2024-05-29T06:06:58.1206128Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1206486Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:58.1206598Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1206684Z ##[debug] }, +2024-05-29T06:06:58.1206764Z ##[debug] { +2024-05-29T06:06:58.1206878Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:58.1207080Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:58.1207195Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1207549Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:58.1207666Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1207753Z ##[debug] }, +2024-05-29T06:06:58.1207838Z ##[debug] { +2024-05-29T06:06:58.1207954Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:58.1208176Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:58.1208300Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1208653Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:58.1208773Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1208856Z ##[debug] }, +2024-05-29T06:06:58.1208937Z ##[debug] { +2024-05-29T06:06:58.1209174Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:58.1209285Z ##[debug] "name": "wait-list", +2024-05-29T06:06:58.1209397Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1209761Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:58.1209997Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1210078Z ##[debug] } +2024-05-29T06:06:58.1210166Z ##[debug] ] +2024-05-29T06:06:58.1210247Z ##[debug] } +2024-05-29T06:06:58.1210330Z ##[debug] }, +2024-05-29T06:06:58.1210422Z ##[debug] "workflow": { +2024-05-29T06:06:58.1210515Z ##[debug] "name": "Itself", +2024-05-29T06:06:58.1210772Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:58.1210854Z ##[debug] }, +2024-05-29T06:06:58.1210948Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1211065Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:58.1211171Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1211260Z ##[debug] "workflow": { +2024-05-29T06:06:58.1211360Z ##[debug] "name": "Itself", +2024-05-29T06:06:58.1211621Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:58.1211729Z ##[debug] } +2024-05-29T06:06:58.1211812Z ##[debug] } +2024-05-29T06:06:58.1211890Z ##[debug] }, +2024-05-29T06:06:58.1211975Z ##[debug] { +2024-05-29T06:06:58.1212064Z ##[debug] "checkRun": { +2024-05-29T06:06:58.1212171Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:58.1212371Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:58.1212472Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1212838Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:58.1212953Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1213033Z ##[debug] }, +2024-05-29T06:06:58.1213126Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.1213231Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1213334Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:58.1213438Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1213549Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:58.1213659Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1213755Z ##[debug] "workflow": { +2024-05-29T06:06:58.1213851Z ##[debug] "name": "Itself", +2024-05-29T06:06:58.1214108Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:58.1214197Z ##[debug] } +2024-05-29T06:06:58.1214275Z ##[debug] }, +2024-05-29T06:06:58.1214367Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.1214468Z ##[debug] "totalCount": 7, +2024-05-29T06:06:58.1214559Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.1214672Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.1214851Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:58.1214933Z ##[debug] }, +2024-05-29T06:06:58.1215024Z ##[debug] "nodes": [ +2024-05-29T06:06:58.1215111Z ##[debug] { +2024-05-29T06:06:58.1215229Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:58.1215352Z ##[debug] "name": "default_logic", +2024-05-29T06:06:58.1215466Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1215920Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:58.1216043Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1216126Z ##[debug] }, +2024-05-29T06:06:58.1216214Z ##[debug] { +2024-05-29T06:06:58.1216331Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:58.1216566Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:58.1216684Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1217044Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:58.1217158Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1217354Z ##[debug] }, +2024-05-29T06:06:58.1217436Z ##[debug] { +2024-05-29T06:06:58.1217549Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:58.1217720Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:58.1217831Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1218186Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:58.1218298Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1218380Z ##[debug] }, +2024-05-29T06:06:58.1218468Z ##[debug] { +2024-05-29T06:06:58.1218589Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:58.1218697Z ##[debug] "name": "skip-list", +2024-05-29T06:06:58.1218815Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1219176Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:58.1219299Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1219381Z ##[debug] }, +2024-05-29T06:06:58.1219462Z ##[debug] { +2024-05-29T06:06:58.1219581Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:58.1219776Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:58.1219887Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1220237Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:58.1220354Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1220438Z ##[debug] }, +2024-05-29T06:06:58.1220518Z ##[debug] { +2024-05-29T06:06:58.1220633Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:58.1220856Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:58.1220982Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1221333Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:58.1221466Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1221548Z ##[debug] }, +2024-05-29T06:06:58.1221633Z ##[debug] { +2024-05-29T06:06:58.1221749Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:58.1221855Z ##[debug] "name": "wait-list", +2024-05-29T06:06:58.1221972Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1222329Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:58.1222444Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1222530Z ##[debug] } +2024-05-29T06:06:58.1222613Z ##[debug] ] +2024-05-29T06:06:58.1222697Z ##[debug] } +2024-05-29T06:06:58.1222783Z ##[debug] }, +2024-05-29T06:06:58.1222873Z ##[debug] "workflow": { +2024-05-29T06:06:58.1222968Z ##[debug] "name": "Itself", +2024-05-29T06:06:58.1223226Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:58.1223307Z ##[debug] }, +2024-05-29T06:06:58.1223417Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1223532Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:58.1223651Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1223749Z ##[debug] "workflow": { +2024-05-29T06:06:58.1223844Z ##[debug] "name": "Itself", +2024-05-29T06:06:58.1224202Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:58.1224292Z ##[debug] } +2024-05-29T06:06:58.1224373Z ##[debug] } +2024-05-29T06:06:58.1224451Z ##[debug] }, +2024-05-29T06:06:58.1224536Z ##[debug] { +2024-05-29T06:06:58.1224625Z ##[debug] "checkRun": { +2024-05-29T06:06:58.1224818Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:58.1225034Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:58.1225135Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1225502Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:58.1225608Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1225688Z ##[debug] }, +2024-05-29T06:06:58.1225785Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.1226221Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1226329Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:58.1226435Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1226550Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:58.1226667Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1226758Z ##[debug] "workflow": { +2024-05-29T06:06:58.1226862Z ##[debug] "name": "Itself", +2024-05-29T06:06:58.1227126Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:58.1227209Z ##[debug] } +2024-05-29T06:06:58.1227291Z ##[debug] }, +2024-05-29T06:06:58.1227389Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.1227486Z ##[debug] "totalCount": 7, +2024-05-29T06:06:58.1227579Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.1227694Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.1227869Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:58.1227957Z ##[debug] }, +2024-05-29T06:06:58.1228044Z ##[debug] "nodes": [ +2024-05-29T06:06:58.1228131Z ##[debug] { +2024-05-29T06:06:58.1228257Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:58.1228376Z ##[debug] "name": "default_logic", +2024-05-29T06:06:58.1228491Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1228873Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:58.1228989Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1229075Z ##[debug] }, +2024-05-29T06:06:58.1229161Z ##[debug] { +2024-05-29T06:06:58.1229279Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:58.1229402Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:58.1229513Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1229871Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:58.1229996Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1230081Z ##[debug] }, +2024-05-29T06:06:58.1230164Z ##[debug] { +2024-05-29T06:06:58.1230284Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:58.1230452Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:58.1230569Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1230921Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:58.1231032Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1231122Z ##[debug] }, +2024-05-29T06:06:58.1231202Z ##[debug] { +2024-05-29T06:06:58.1231315Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:58.1231426Z ##[debug] "name": "skip-list", +2024-05-29T06:06:58.1231542Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1232024Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:58.1232147Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1232228Z ##[debug] }, +2024-05-29T06:06:58.1232314Z ##[debug] { +2024-05-29T06:06:58.1232542Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:58.1232740Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:58.1232854Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1233203Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:58.1233312Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1233396Z ##[debug] }, +2024-05-29T06:06:58.1233476Z ##[debug] { +2024-05-29T06:06:58.1233590Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:58.1233814Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:58.1233929Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1234293Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:58.1234414Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1234496Z ##[debug] }, +2024-05-29T06:06:58.1234579Z ##[debug] { +2024-05-29T06:06:58.1234692Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:58.1234800Z ##[debug] "name": "wait-list", +2024-05-29T06:06:58.1234911Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1235268Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:58.1235389Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1235472Z ##[debug] } +2024-05-29T06:06:58.1235555Z ##[debug] ] +2024-05-29T06:06:58.1235647Z ##[debug] } +2024-05-29T06:06:58.1235731Z ##[debug] }, +2024-05-29T06:06:58.1235923Z ##[debug] "workflow": { +2024-05-29T06:06:58.1236028Z ##[debug] "name": "Itself", +2024-05-29T06:06:58.1236287Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:58.1236377Z ##[debug] }, +2024-05-29T06:06:58.1236470Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1236576Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:58.1236690Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1236780Z ##[debug] "workflow": { +2024-05-29T06:06:58.1236874Z ##[debug] "name": "Itself", +2024-05-29T06:06:58.1237132Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:58.1237212Z ##[debug] } +2024-05-29T06:06:58.1237292Z ##[debug] } +2024-05-29T06:06:58.1237377Z ##[debug] }, +2024-05-29T06:06:58.1237459Z ##[debug] { +2024-05-29T06:06:58.1237552Z ##[debug] "checkRun": { +2024-05-29T06:06:58.1237665Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:58.1237765Z ##[debug] "name": "wait-list", +2024-05-29T06:06:58.1237870Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1238234Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:58.1238345Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1238431Z ##[debug] }, +2024-05-29T06:06:58.1238577Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.1238732Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1238906Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:58.1239034Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1239361Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:58.1239504Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1239628Z ##[debug] "workflow": { +2024-05-29T06:06:58.1239937Z ##[debug] "name": "Itself", +2024-05-29T06:06:58.1240239Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:58.1240354Z ##[debug] } +2024-05-29T06:06:58.1245041Z ##[debug] }, +2024-05-29T06:06:58.1245166Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.1245427Z ##[debug] "totalCount": 7, +2024-05-29T06:06:58.1245527Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.1245651Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.1246036Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:06:58.1246130Z ##[debug] }, +2024-05-29T06:06:58.1246220Z ##[debug] "nodes": [ +2024-05-29T06:06:58.1246303Z ##[debug] { +2024-05-29T06:06:58.1246435Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:06:58.1246557Z ##[debug] "name": "default_logic", +2024-05-29T06:06:58.1246677Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1247085Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:06:58.1247205Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1247289Z ##[debug] }, +2024-05-29T06:06:58.1247377Z ##[debug] { +2024-05-29T06:06:58.1247505Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:06:58.1247629Z ##[debug] "name": "equal_intervals", +2024-05-29T06:06:58.1247745Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1248124Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:06:58.1248249Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1248333Z ##[debug] }, +2024-05-29T06:06:58.1248415Z ##[debug] { +2024-05-29T06:06:58.1248540Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:06:58.1248718Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:06:58.1248840Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1249207Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:06:58.1249324Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1249417Z ##[debug] }, +2024-05-29T06:06:58.1249500Z ##[debug] { +2024-05-29T06:06:58.1249618Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:06:58.1249733Z ##[debug] "name": "skip-list", +2024-05-29T06:06:58.1249850Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1250231Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:06:58.1250349Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1250431Z ##[debug] }, +2024-05-29T06:06:58.1250517Z ##[debug] { +2024-05-29T06:06:58.1250638Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:06:58.1250834Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:06:58.1250954Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1251303Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:06:58.1251428Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1251511Z ##[debug] }, +2024-05-29T06:06:58.1251592Z ##[debug] { +2024-05-29T06:06:58.1251708Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:06:58.1251930Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:06:58.1252045Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1252421Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:06:58.1252655Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1252743Z ##[debug] }, +2024-05-29T06:06:58.1252828Z ##[debug] { +2024-05-29T06:06:58.1252946Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:06:58.1253058Z ##[debug] "name": "wait-list", +2024-05-29T06:06:58.1253300Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1253666Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:06:58.1253785Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1253866Z ##[debug] } +2024-05-29T06:06:58.1253947Z ##[debug] ] +2024-05-29T06:06:58.1254033Z ##[debug] } +2024-05-29T06:06:58.1254113Z ##[debug] }, +2024-05-29T06:06:58.1254205Z ##[debug] "workflow": { +2024-05-29T06:06:58.1254305Z ##[debug] "name": "Itself", +2024-05-29T06:06:58.1254561Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:58.1254651Z ##[debug] }, +2024-05-29T06:06:58.1254746Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1254854Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:06:58.1254964Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1255055Z ##[debug] "workflow": { +2024-05-29T06:06:58.1255158Z ##[debug] "name": "Itself", +2024-05-29T06:06:58.1255417Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:06:58.1255499Z ##[debug] } +2024-05-29T06:06:58.1255580Z ##[debug] } +2024-05-29T06:06:58.1255666Z ##[debug] }, +2024-05-29T06:06:58.1255746Z ##[debug] { +2024-05-29T06:06:58.1255949Z ##[debug] "checkRun": { +2024-05-29T06:06:58.1256067Z ##[debug] "databaseId": 25536411358, +2024-05-29T06:06:58.1256187Z ##[debug] "name": "dependency-review", +2024-05-29T06:06:58.1256293Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1256667Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", +2024-05-29T06:06:58.1256773Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1256858Z ##[debug] }, +2024-05-29T06:06:58.1256949Z ##[debug] "checkSuite": { +2024-05-29T06:06:58.1257056Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1257171Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:06:58.1257266Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1257380Z ##[debug] "databaseId": 9281068690, +2024-05-29T06:06:58.1257496Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1257588Z ##[debug] "workflow": { +2024-05-29T06:06:58.1257694Z ##[debug] "name": "💂➕", +2024-05-29T06:06:58.1258012Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:58.1258097Z ##[debug] } +2024-05-29T06:06:58.1258182Z ##[debug] }, +2024-05-29T06:06:58.1258276Z ##[debug] "checkRuns": { +2024-05-29T06:06:58.1258380Z ##[debug] "totalCount": 1, +2024-05-29T06:06:58.1258477Z ##[debug] "pageInfo": { +2024-05-29T06:06:58.1258586Z ##[debug] "hasNextPage": false, +2024-05-29T06:06:58.1258761Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtt4=" +2024-05-29T06:06:58.1258853Z ##[debug] }, +2024-05-29T06:06:58.1258942Z ##[debug] "nodes": [ +2024-05-29T06:06:58.1259031Z ##[debug] { +2024-05-29T06:06:58.1259152Z ##[debug] "databaseId": 25536411358, +2024-05-29T06:06:58.1259284Z ##[debug] "name": "dependency-review", +2024-05-29T06:06:58.1259403Z ##[debug] "status": "COMPLETED", +2024-05-29T06:06:58.1259773Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", +2024-05-29T06:06:58.1259894Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:06:58.1259979Z ##[debug] } +2024-05-29T06:06:58.1260058Z ##[debug] ] +2024-05-29T06:06:58.1260261Z ##[debug] } +2024-05-29T06:06:58.1260349Z ##[debug] }, +2024-05-29T06:06:58.1260438Z ##[debug] "workflow": { +2024-05-29T06:06:58.1260529Z ##[debug] "name": "💂➕", +2024-05-29T06:06:58.1260844Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:58.1261030Z ##[debug] }, +2024-05-29T06:06:58.1261127Z ##[debug] "workflowRun": { +2024-05-29T06:06:58.1261234Z ##[debug] "databaseId": 9281068690, +2024-05-29T06:06:58.1261339Z ##[debug] "event": "pull_request", +2024-05-29T06:06:58.1261433Z ##[debug] "workflow": { +2024-05-29T06:06:58.1261525Z ##[debug] "name": "💂➕", +2024-05-29T06:06:58.1261833Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:06:58.1261922Z ##[debug] } +2024-05-29T06:06:58.1262003Z ##[debug] } +2024-05-29T06:06:58.1262087Z ##[debug] } +2024-05-29T06:06:58.1262170Z ##[debug] ], +2024-05-29T06:06:58.1262289Z ##[debug] "elapsedMsec": 22213.88276800001 +2024-05-29T06:06:58.1262378Z ##[debug]} +2024-05-29T06:06:58.1263655Z GH-820-graceperiod.yml(quickstarter-success): [suiteStatus: QUEUED][suiteConclusion: (null)][runStatus: COMPLETED][runConclusion: SUCCESS][eventName: pull_request][runURL: https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631] +2024-05-29T06:06:58.1264757Z GH-820-graceperiod.yml(slowstarter-fail): [suiteStatus: QUEUED][suiteConclusion: (null)][runStatus: QUEUED][runConclusion: (null)][eventName: pull_request][runURL: https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821] +2024-05-29T06:06:58.1265600Z ##[debug]{ +2024-05-29T06:06:58.1265695Z ##[debug] "label": "filtered", +2024-05-29T06:06:58.1265785Z ##[debug] "report": { +2024-05-29T06:06:58.1266065Z ##[debug] "progress": "in_progress", +2024-05-29T06:06:58.1266219Z ##[debug] "conclusion": "acceptable", +2024-05-29T06:06:58.1266310Z ##[debug] "summaries": [ +2024-05-29T06:06:58.1266398Z ##[debug] { +2024-05-29T06:06:58.1266500Z ##[debug] "acceptable": true, +2024-05-29T06:06:58.1266646Z ##[debug] "workflowPath": "GH-820-graceperiod.yml", +2024-05-29T06:06:58.1266754Z ##[debug] "isSameWorkflow": true, +2024-05-29T06:06:58.1266885Z ##[debug] "eventName": "pull_request", +2024-05-29T06:06:58.1267008Z ##[debug] "checkSuiteStatus": "QUEUED", +2024-05-29T06:06:58.1267161Z ##[debug] "checkSuiteConclusion": null, +2024-05-29T06:06:58.1267280Z ##[debug] "runDatabaseId": 25536443631, +2024-05-29T06:06:58.1267416Z ##[debug] "jobName": "quickstarter-success", +2024-05-29T06:06:58.1267813Z ##[debug] "checkRunUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:06:58.1267927Z ##[debug] "runStatus": "COMPLETED", +2024-05-29T06:06:58.1268040Z ##[debug] "runConclusion": "SUCCESS" +2024-05-29T06:06:58.1268124Z ##[debug] }, +2024-05-29T06:06:58.1268208Z ##[debug] { +2024-05-29T06:06:58.1268308Z ##[debug] "acceptable": false, +2024-05-29T06:06:58.1268452Z ##[debug] "workflowPath": "GH-820-graceperiod.yml", +2024-05-29T06:06:58.1268558Z ##[debug] "isSameWorkflow": true, +2024-05-29T06:06:58.1268674Z ##[debug] "eventName": "pull_request", +2024-05-29T06:06:58.1268805Z ##[debug] "checkSuiteStatus": "QUEUED", +2024-05-29T06:06:58.1268928Z ##[debug] "checkSuiteConclusion": null, +2024-05-29T06:06:58.1269048Z ##[debug] "runDatabaseId": 25536455821, +2024-05-29T06:06:58.1269174Z ##[debug] "jobName": "slowstarter-fail", +2024-05-29T06:06:58.1269543Z ##[debug] "checkRunUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:06:58.1269648Z ##[debug] "runStatus": "QUEUED", +2024-05-29T06:06:58.1269749Z ##[debug] "runConclusion": null +2024-05-29T06:06:58.1269830Z ##[debug] } +2024-05-29T06:06:58.1269912Z ##[debug] ] +2024-05-29T06:06:58.1269990Z ##[debug] } +2024-05-29T06:06:58.1270205Z ##[debug]} +2024-05-29T06:06:58.1270320Z some jobs still in progress +2024-05-29T06:06:58.1270588Z ::endgroup:: +2024-05-29T06:06:58.1270721Z ##[endgroup] +2024-05-29T06:06:58.1270927Z Wait about 5 seconds before next polling to reduce API calls. +2024-05-29T06:07:03.0685305Z ::group::Polling 6: 2024-05-29T06:07:03.068Z +2024-05-29T06:07:03.0686065Z ##[group]Polling 6: 2024-05-29T06:07:03.068Z +2024-05-29T06:07:03.4756855Z ##[debug]{ +2024-05-29T06:07:03.4757122Z ##[debug] "label": "rawdata", +2024-05-29T06:07:03.4757417Z ##[debug] "checks": [ +2024-05-29T06:07:03.4757664Z ##[debug] { +2024-05-29T06:07:03.4757963Z ##[debug] "checkRun": { +2024-05-29T06:07:03.4758265Z ##[debug] "databaseId": 25536410411, +2024-05-29T06:07:03.4758599Z ##[debug] "name": "gitleaks", +2024-05-29T06:07:03.4758926Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4759551Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", +2024-05-29T06:07:03.4760184Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4760497Z ##[debug] }, +2024-05-29T06:07:03.4760764Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.4761076Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4761419Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:03.4761746Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.4762066Z ##[debug] "databaseId": 9281068413, +2024-05-29T06:07:03.4762397Z ##[debug] "event": "push", +2024-05-29T06:07:03.4762705Z ##[debug] "workflow": { +2024-05-29T06:07:03.4763024Z ##[debug] "name": "💧", +2024-05-29T06:07:03.4763512Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:07:03.4764004Z ##[debug] } +2024-05-29T06:07:03.4764245Z ##[debug] }, +2024-05-29T06:07:03.4764481Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.4764775Z ##[debug] "totalCount": 1, +2024-05-29T06:07:03.4765089Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.4765392Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.4766027Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWsys=" +2024-05-29T06:07:03.4766453Z ##[debug] }, +2024-05-29T06:07:03.4766703Z ##[debug] "nodes": [ +2024-05-29T06:07:03.4766973Z ##[debug] { +2024-05-29T06:07:03.4767256Z ##[debug] "databaseId": 25536410411, +2024-05-29T06:07:03.4767611Z ##[debug] "name": "gitleaks", +2024-05-29T06:07:03.4767949Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4768564Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", +2024-05-29T06:07:03.4769195Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4769557Z ##[debug] } +2024-05-29T06:07:03.4769804Z ##[debug] ] +2024-05-29T06:07:03.4770041Z ##[debug] } +2024-05-29T06:07:03.4770264Z ##[debug] }, +2024-05-29T06:07:03.4770501Z ##[debug] "workflow": { +2024-05-29T06:07:03.4770783Z ##[debug] "name": "💧", +2024-05-29T06:07:03.4771239Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:07:03.4771725Z ##[debug] }, +2024-05-29T06:07:03.4771970Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.4772269Z ##[debug] "databaseId": 9281068413, +2024-05-29T06:07:03.4772600Z ##[debug] "event": "push", +2024-05-29T06:07:03.4772895Z ##[debug] "workflow": { +2024-05-29T06:07:03.4773167Z ##[debug] "name": "💧", +2024-05-29T06:07:03.4773631Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:07:03.4774293Z ##[debug] } +2024-05-29T06:07:03.4774657Z ##[debug] } +2024-05-29T06:07:03.4775036Z ##[debug] }, +2024-05-29T06:07:03.4775354Z ##[debug] { +2024-05-29T06:07:03.4775574Z ##[debug] "checkRun": { +2024-05-29T06:07:03.4776465Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:07:03.4777074Z ##[debug] "name": "build", +2024-05-29T06:07:03.4777586Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4778555Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:07:03.4779807Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4780311Z ##[debug] }, +2024-05-29T06:07:03.4780659Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.4781083Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4781607Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:03.4782089Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.4782565Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:07:03.4783137Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.4783704Z ##[debug] "workflow": { +2024-05-29T06:07:03.4784231Z ##[debug] "name": "TypeScript", +2024-05-29T06:07:03.4785039Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:07:03.4785763Z ##[debug] } +2024-05-29T06:07:03.4786388Z ##[debug] }, +2024-05-29T06:07:03.4786785Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.4787260Z ##[debug] "totalCount": 3, +2024-05-29T06:07:03.4787766Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.4788270Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.4788932Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:07:03.4789576Z ##[debug] }, +2024-05-29T06:07:03.4789970Z ##[debug] "nodes": [ +2024-05-29T06:07:03.4790397Z ##[debug] { +2024-05-29T06:07:03.4790846Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:07:03.4791410Z ##[debug] "name": "build", +2024-05-29T06:07:03.4791958Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4792980Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:07:03.4793998Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4794538Z ##[debug] }, +2024-05-29T06:07:03.4794924Z ##[debug] { +2024-05-29T06:07:03.4795366Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:07:03.4796116Z ##[debug] "name": "test", +2024-05-29T06:07:03.4796648Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4797657Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:07:03.4798696Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4799225Z ##[debug] }, +2024-05-29T06:07:03.4799611Z ##[debug] { +2024-05-29T06:07:03.4800058Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:07:03.4800641Z ##[debug] "name": "typecheck", +2024-05-29T06:07:03.4801203Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4802213Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:07:03.4803242Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4803789Z ##[debug] } +2024-05-29T06:07:03.4804196Z ##[debug] ] +2024-05-29T06:07:03.4804594Z ##[debug] } +2024-05-29T06:07:03.4804953Z ##[debug] }, +2024-05-29T06:07:03.4805326Z ##[debug] "workflow": { +2024-05-29T06:07:03.4805917Z ##[debug] "name": "TypeScript", +2024-05-29T06:07:03.4806673Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:07:03.4807432Z ##[debug] }, +2024-05-29T06:07:03.4807816Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.4808296Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:07:03.4808843Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.4809366Z ##[debug] "workflow": { +2024-05-29T06:07:03.4809822Z ##[debug] "name": "TypeScript", +2024-05-29T06:07:03.4810741Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:07:03.4811507Z ##[debug] } +2024-05-29T06:07:03.4811876Z ##[debug] } +2024-05-29T06:07:03.4812229Z ##[debug] }, +2024-05-29T06:07:03.4812583Z ##[debug] { +2024-05-29T06:07:03.4813098Z ##[debug] "checkRun": { +2024-05-29T06:07:03.4813576Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:07:03.4814110Z ##[debug] "name": "test", +2024-05-29T06:07:03.4814621Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4815624Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:07:03.4816839Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4817321Z ##[debug] }, +2024-05-29T06:07:03.4817548Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.4817937Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4818356Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:03.4818685Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.4819011Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:07:03.4819376Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.4819701Z ##[debug] "workflow": { +2024-05-29T06:07:03.4820006Z ##[debug] "name": "TypeScript", +2024-05-29T06:07:03.4820498Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:07:03.4820959Z ##[debug] } +2024-05-29T06:07:03.4821196Z ##[debug] }, +2024-05-29T06:07:03.4821435Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.4821816Z ##[debug] "totalCount": 3, +2024-05-29T06:07:03.4822140Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.4822449Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.4822865Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:07:03.4823263Z ##[debug] }, +2024-05-29T06:07:03.4823509Z ##[debug] "nodes": [ +2024-05-29T06:07:03.4823782Z ##[debug] { +2024-05-29T06:07:03.4824058Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:07:03.4824403Z ##[debug] "name": "build", +2024-05-29T06:07:03.4824741Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4825366Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:07:03.4826181Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4826512Z ##[debug] }, +2024-05-29T06:07:03.4826746Z ##[debug] { +2024-05-29T06:07:03.4827020Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:07:03.4827360Z ##[debug] "name": "test", +2024-05-29T06:07:03.4827686Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4828289Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:07:03.4828898Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4829221Z ##[debug] }, +2024-05-29T06:07:03.4829455Z ##[debug] { +2024-05-29T06:07:03.4829733Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:07:03.4830090Z ##[debug] "name": "typecheck", +2024-05-29T06:07:03.4830439Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4831046Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:07:03.4831650Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4832064Z ##[debug] } +2024-05-29T06:07:03.4832305Z ##[debug] ] +2024-05-29T06:07:03.4832546Z ##[debug] } +2024-05-29T06:07:03.4832765Z ##[debug] }, +2024-05-29T06:07:03.4833004Z ##[debug] "workflow": { +2024-05-29T06:07:03.4833295Z ##[debug] "name": "TypeScript", +2024-05-29T06:07:03.4833759Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:07:03.4834373Z ##[debug] }, +2024-05-29T06:07:03.4834618Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.4834917Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:07:03.4835257Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.4835580Z ##[debug] "workflow": { +2024-05-29T06:07:03.4836257Z ##[debug] "name": "TypeScript", +2024-05-29T06:07:03.4836760Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:07:03.4837223Z ##[debug] } +2024-05-29T06:07:03.4837451Z ##[debug] } +2024-05-29T06:07:03.4837668Z ##[debug] }, +2024-05-29T06:07:03.4837885Z ##[debug] { +2024-05-29T06:07:03.4838112Z ##[debug] "checkRun": { +2024-05-29T06:07:03.4838404Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:07:03.4838739Z ##[debug] "name": "typecheck", +2024-05-29T06:07:03.4839055Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4839662Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:07:03.4840267Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4840571Z ##[debug] }, +2024-05-29T06:07:03.4840802Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.4841092Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4841427Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:03.4841745Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.4842060Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:07:03.4842412Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.4842734Z ##[debug] "workflow": { +2024-05-29T06:07:03.4843037Z ##[debug] "name": "TypeScript", +2024-05-29T06:07:03.4843512Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:07:03.4843969Z ##[debug] } +2024-05-29T06:07:03.4844198Z ##[debug] }, +2024-05-29T06:07:03.4844439Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.4844737Z ##[debug] "totalCount": 3, +2024-05-29T06:07:03.4845034Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.4845334Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.4845743Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" +2024-05-29T06:07:03.4846337Z ##[debug] }, +2024-05-29T06:07:03.4846583Z ##[debug] "nodes": [ +2024-05-29T06:07:03.4846848Z ##[debug] { +2024-05-29T06:07:03.4847121Z ##[debug] "databaseId": 25536411112, +2024-05-29T06:07:03.4847462Z ##[debug] "name": "build", +2024-05-29T06:07:03.4847793Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4848403Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", +2024-05-29T06:07:03.4849021Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4849346Z ##[debug] }, +2024-05-29T06:07:03.4849581Z ##[debug] { +2024-05-29T06:07:03.4849865Z ##[debug] "databaseId": 25536411611, +2024-05-29T06:07:03.4850207Z ##[debug] "name": "test", +2024-05-29T06:07:03.4850533Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4851135Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", +2024-05-29T06:07:03.4851750Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4852075Z ##[debug] }, +2024-05-29T06:07:03.4852311Z ##[debug] { +2024-05-29T06:07:03.4852590Z ##[debug] "databaseId": 25536412231, +2024-05-29T06:07:03.4852946Z ##[debug] "name": "typecheck", +2024-05-29T06:07:03.4853288Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4853888Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", +2024-05-29T06:07:03.4854494Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4854807Z ##[debug] } +2024-05-29T06:07:03.4855185Z ##[debug] ] +2024-05-29T06:07:03.4855431Z ##[debug] } +2024-05-29T06:07:03.4855651Z ##[debug] }, +2024-05-29T06:07:03.4856089Z ##[debug] "workflow": { +2024-05-29T06:07:03.4856558Z ##[debug] "name": "TypeScript", +2024-05-29T06:07:03.4857400Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:07:03.4857866Z ##[debug] }, +2024-05-29T06:07:03.4858109Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.4858411Z ##[debug] "databaseId": 9281068677, +2024-05-29T06:07:03.4858757Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.4859080Z ##[debug] "workflow": { +2024-05-29T06:07:03.4859374Z ##[debug] "name": "TypeScript", +2024-05-29T06:07:03.4859833Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" +2024-05-29T06:07:03.4860289Z ##[debug] } +2024-05-29T06:07:03.4860515Z ##[debug] } +2024-05-29T06:07:03.4860735Z ##[debug] }, +2024-05-29T06:07:03.4860960Z ##[debug] { +2024-05-29T06:07:03.4861188Z ##[debug] "checkRun": { +2024-05-29T06:07:03.4861477Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:07:03.4861807Z ##[debug] "name": "typos", +2024-05-29T06:07:03.4862112Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4862718Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:07:03.4863326Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4863632Z ##[debug] }, +2024-05-29T06:07:03.4863861Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.4864154Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4864482Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:03.4864797Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.4865109Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:07:03.4865460Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.4865782Z ##[debug] "workflow": { +2024-05-29T06:07:03.4866300Z ##[debug] "name": "👕", +2024-05-29T06:07:03.4866763Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:03.4867239Z ##[debug] } +2024-05-29T06:07:03.4867467Z ##[debug] }, +2024-05-29T06:07:03.4867716Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.4868010Z ##[debug] "totalCount": 4, +2024-05-29T06:07:03.4868307Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.4868613Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.4869028Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:07:03.4869415Z ##[debug] }, +2024-05-29T06:07:03.4869692Z ##[debug] "nodes": [ +2024-05-29T06:07:03.4869957Z ##[debug] { +2024-05-29T06:07:03.4870235Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:07:03.4870583Z ##[debug] "name": "typos", +2024-05-29T06:07:03.4870917Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4871530Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:07:03.4872145Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4872482Z ##[debug] }, +2024-05-29T06:07:03.4872726Z ##[debug] { +2024-05-29T06:07:03.4873001Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:07:03.4873350Z ##[debug] "name": "dprint", +2024-05-29T06:07:03.4873684Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4874283Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:07:03.4874887Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4875208Z ##[debug] }, +2024-05-29T06:07:03.4875440Z ##[debug] { +2024-05-29T06:07:03.4875713Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:07:03.4876342Z ##[debug] "name": "deno_lint", +2024-05-29T06:07:03.4876692Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4877293Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:07:03.4878008Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4878327Z ##[debug] }, +2024-05-29T06:07:03.4878570Z ##[debug] { +2024-05-29T06:07:03.4878852Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:07:03.4879195Z ##[debug] "name": "yamlfmt", +2024-05-29T06:07:03.4879536Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4880153Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:07:03.4880774Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4881095Z ##[debug] } +2024-05-29T06:07:03.4881334Z ##[debug] ] +2024-05-29T06:07:03.4881575Z ##[debug] } +2024-05-29T06:07:03.4881794Z ##[debug] }, +2024-05-29T06:07:03.4882028Z ##[debug] "workflow": { +2024-05-29T06:07:03.4882309Z ##[debug] "name": "👕", +2024-05-29T06:07:03.4882739Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:03.4883213Z ##[debug] }, +2024-05-29T06:07:03.4883451Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.4883757Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:07:03.4884103Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.4884426Z ##[debug] "workflow": { +2024-05-29T06:07:03.4884701Z ##[debug] "name": "👕", +2024-05-29T06:07:03.4885146Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:03.4885611Z ##[debug] } +2024-05-29T06:07:03.4885934Z ##[debug] } +2024-05-29T06:07:03.4886162Z ##[debug] }, +2024-05-29T06:07:03.4886387Z ##[debug] { +2024-05-29T06:07:03.4886609Z ##[debug] "checkRun": { +2024-05-29T06:07:03.4886916Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:07:03.4887251Z ##[debug] "name": "dprint", +2024-05-29T06:07:03.4887551Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4888155Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:07:03.4888766Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4889073Z ##[debug] }, +2024-05-29T06:07:03.4889304Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.4889597Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4889929Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:03.4890245Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.4890560Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:07:03.4890913Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.4891233Z ##[debug] "workflow": { +2024-05-29T06:07:03.4891522Z ##[debug] "name": "👕", +2024-05-29T06:07:03.4891990Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:03.4892460Z ##[debug] } +2024-05-29T06:07:03.4892700Z ##[debug] }, +2024-05-29T06:07:03.4892944Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.4893239Z ##[debug] "totalCount": 4, +2024-05-29T06:07:03.4893547Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.4893850Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.4894257Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:07:03.4894649Z ##[debug] }, +2024-05-29T06:07:03.4894896Z ##[debug] "nodes": [ +2024-05-29T06:07:03.4895160Z ##[debug] { +2024-05-29T06:07:03.4895440Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:07:03.4895893Z ##[debug] "name": "typos", +2024-05-29T06:07:03.4896233Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4896961Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:07:03.4897582Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4897906Z ##[debug] }, +2024-05-29T06:07:03.4898144Z ##[debug] { +2024-05-29T06:07:03.4898420Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:07:03.4898874Z ##[debug] "name": "dprint", +2024-05-29T06:07:03.4899200Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4899800Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:07:03.4900410Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4900725Z ##[debug] }, +2024-05-29T06:07:03.4900961Z ##[debug] { +2024-05-29T06:07:03.4901236Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:07:03.4901578Z ##[debug] "name": "deno_lint", +2024-05-29T06:07:03.4901926Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4902540Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:07:03.4903154Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4903479Z ##[debug] }, +2024-05-29T06:07:03.4903736Z ##[debug] { +2024-05-29T06:07:03.4904016Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:07:03.4904353Z ##[debug] "name": "yamlfmt", +2024-05-29T06:07:03.4904695Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4905310Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:07:03.4906101Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4906430Z ##[debug] } +2024-05-29T06:07:03.4906665Z ##[debug] ] +2024-05-29T06:07:03.4906890Z ##[debug] } +2024-05-29T06:07:03.4907116Z ##[debug] }, +2024-05-29T06:07:03.4907355Z ##[debug] "workflow": { +2024-05-29T06:07:03.4907627Z ##[debug] "name": "👕", +2024-05-29T06:07:03.4908066Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:03.4908531Z ##[debug] }, +2024-05-29T06:07:03.4908773Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.4909078Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:07:03.4909417Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.4909735Z ##[debug] "workflow": { +2024-05-29T06:07:03.4910009Z ##[debug] "name": "👕", +2024-05-29T06:07:03.4910478Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:03.4910949Z ##[debug] } +2024-05-29T06:07:03.4911173Z ##[debug] } +2024-05-29T06:07:03.4911394Z ##[debug] }, +2024-05-29T06:07:03.4911614Z ##[debug] { +2024-05-29T06:07:03.4911833Z ##[debug] "checkRun": { +2024-05-29T06:07:03.4912129Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:07:03.4912474Z ##[debug] "name": "deno_lint", +2024-05-29T06:07:03.4912787Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4913396Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:07:03.4914010Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4914314Z ##[debug] }, +2024-05-29T06:07:03.4914553Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.4914846Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4915172Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:03.4915500Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.4915937Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:07:03.4916309Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.4916655Z ##[debug] "workflow": { +2024-05-29T06:07:03.4916946Z ##[debug] "name": "👕", +2024-05-29T06:07:03.4917531Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:03.4918006Z ##[debug] } +2024-05-29T06:07:03.4918239Z ##[debug] }, +2024-05-29T06:07:03.4918483Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.4918772Z ##[debug] "totalCount": 4, +2024-05-29T06:07:03.4919076Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.4919489Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.4919899Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:07:03.4920296Z ##[debug] }, +2024-05-29T06:07:03.4920541Z ##[debug] "nodes": [ +2024-05-29T06:07:03.4920800Z ##[debug] { +2024-05-29T06:07:03.4921083Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:07:03.4921432Z ##[debug] "name": "typos", +2024-05-29T06:07:03.4921761Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4922471Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:07:03.4923156Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4923479Z ##[debug] }, +2024-05-29T06:07:03.4923726Z ##[debug] { +2024-05-29T06:07:03.4924004Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:07:03.4924351Z ##[debug] "name": "dprint", +2024-05-29T06:07:03.4924692Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4925296Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:07:03.4926076Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4926399Z ##[debug] }, +2024-05-29T06:07:03.4926644Z ##[debug] { +2024-05-29T06:07:03.4926919Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:07:03.4927264Z ##[debug] "name": "deno_lint", +2024-05-29T06:07:03.4927610Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4928215Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:07:03.4928810Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4929131Z ##[debug] }, +2024-05-29T06:07:03.4929370Z ##[debug] { +2024-05-29T06:07:03.4929649Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:07:03.4929989Z ##[debug] "name": "yamlfmt", +2024-05-29T06:07:03.4930329Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4930938Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:07:03.4931544Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4931868Z ##[debug] } +2024-05-29T06:07:03.4932105Z ##[debug] ] +2024-05-29T06:07:03.4932336Z ##[debug] } +2024-05-29T06:07:03.4932565Z ##[debug] }, +2024-05-29T06:07:03.4932796Z ##[debug] "workflow": { +2024-05-29T06:07:03.4933067Z ##[debug] "name": "👕", +2024-05-29T06:07:03.4933509Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:03.4933974Z ##[debug] }, +2024-05-29T06:07:03.4934203Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.4934510Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:07:03.4934856Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.4935170Z ##[debug] "workflow": { +2024-05-29T06:07:03.4935452Z ##[debug] "name": "👕", +2024-05-29T06:07:03.4936000Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:03.4936459Z ##[debug] } +2024-05-29T06:07:03.4936684Z ##[debug] } +2024-05-29T06:07:03.4936904Z ##[debug] }, +2024-05-29T06:07:03.4937119Z ##[debug] { +2024-05-29T06:07:03.4937345Z ##[debug] "checkRun": { +2024-05-29T06:07:03.4937640Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:07:03.4937967Z ##[debug] "name": "yamlfmt", +2024-05-29T06:07:03.4938434Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4939040Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:07:03.4939647Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4939949Z ##[debug] }, +2024-05-29T06:07:03.4940304Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.4940599Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4940922Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:03.4941246Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.4941561Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:07:03.4941906Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.4942234Z ##[debug] "workflow": { +2024-05-29T06:07:03.4942535Z ##[debug] "name": "👕", +2024-05-29T06:07:03.4942987Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:03.4943452Z ##[debug] } +2024-05-29T06:07:03.4943693Z ##[debug] }, +2024-05-29T06:07:03.4943928Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.4944224Z ##[debug] "totalCount": 4, +2024-05-29T06:07:03.4944529Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.4944827Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.4945248Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" +2024-05-29T06:07:03.4945644Z ##[debug] }, +2024-05-29T06:07:03.4945979Z ##[debug] "nodes": [ +2024-05-29T06:07:03.4946245Z ##[debug] { +2024-05-29T06:07:03.4946523Z ##[debug] "databaseId": 25536410993, +2024-05-29T06:07:03.4946868Z ##[debug] "name": "typos", +2024-05-29T06:07:03.4947199Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4947812Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", +2024-05-29T06:07:03.4948429Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4948758Z ##[debug] }, +2024-05-29T06:07:03.4949003Z ##[debug] { +2024-05-29T06:07:03.4949279Z ##[debug] "databaseId": 25536411606, +2024-05-29T06:07:03.4949623Z ##[debug] "name": "dprint", +2024-05-29T06:07:03.4949961Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4950572Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", +2024-05-29T06:07:03.4951177Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4951493Z ##[debug] }, +2024-05-29T06:07:03.4951737Z ##[debug] { +2024-05-29T06:07:03.4952009Z ##[debug] "databaseId": 25536412217, +2024-05-29T06:07:03.4952358Z ##[debug] "name": "deno_lint", +2024-05-29T06:07:03.4952706Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4953303Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", +2024-05-29T06:07:03.4953899Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4954225Z ##[debug] }, +2024-05-29T06:07:03.4954467Z ##[debug] { +2024-05-29T06:07:03.4954733Z ##[debug] "databaseId": 25536412717, +2024-05-29T06:07:03.4955104Z ##[debug] "name": "yamlfmt", +2024-05-29T06:07:03.4955450Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4956146Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", +2024-05-29T06:07:03.4956758Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4957082Z ##[debug] } +2024-05-29T06:07:03.4957315Z ##[debug] ] +2024-05-29T06:07:03.4957540Z ##[debug] } +2024-05-29T06:07:03.4957764Z ##[debug] }, +2024-05-29T06:07:03.4957991Z ##[debug] "workflow": { +2024-05-29T06:07:03.4958259Z ##[debug] "name": "👕", +2024-05-29T06:07:03.4958817Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:03.4959285Z ##[debug] }, +2024-05-29T06:07:03.4959514Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.4959824Z ##[debug] "databaseId": 9281068676, +2024-05-29T06:07:03.4960164Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.4960580Z ##[debug] "workflow": { +2024-05-29T06:07:03.4960859Z ##[debug] "name": "👕", +2024-05-29T06:07:03.4961310Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" +2024-05-29T06:07:03.4961766Z ##[debug] } +2024-05-29T06:07:03.4961989Z ##[debug] } +2024-05-29T06:07:03.4962208Z ##[debug] }, +2024-05-29T06:07:03.4962420Z ##[debug] { +2024-05-29T06:07:03.4962654Z ##[debug] "checkRun": { +2024-05-29T06:07:03.4962944Z ##[debug] "databaseId": 25536411289, +2024-05-29T06:07:03.4963273Z ##[debug] "name": "gitleaks", +2024-05-29T06:07:03.4963588Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4964194Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", +2024-05-29T06:07:03.4964787Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4965090Z ##[debug] }, +2024-05-29T06:07:03.4965327Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.4965615Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4966037Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:03.4966359Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.4966676Z ##[debug] "databaseId": 9281068678, +2024-05-29T06:07:03.4967016Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.4967339Z ##[debug] "workflow": { +2024-05-29T06:07:03.4967627Z ##[debug] "name": "💧", +2024-05-29T06:07:03.4968098Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:07:03.4968580Z ##[debug] } +2024-05-29T06:07:03.4968814Z ##[debug] }, +2024-05-29T06:07:03.4969047Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.4969344Z ##[debug] "totalCount": 1, +2024-05-29T06:07:03.4969677Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.4970009Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.4970558Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpk=" +2024-05-29T06:07:03.4970985Z ##[debug] }, +2024-05-29T06:07:03.4971226Z ##[debug] "nodes": [ +2024-05-29T06:07:03.4971516Z ##[debug] { +2024-05-29T06:07:03.4971796Z ##[debug] "databaseId": 25536411289, +2024-05-29T06:07:03.4972144Z ##[debug] "name": "gitleaks", +2024-05-29T06:07:03.4972497Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4973112Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", +2024-05-29T06:07:03.4973725Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4974046Z ##[debug] } +2024-05-29T06:07:03.4974285Z ##[debug] ] +2024-05-29T06:07:03.4974517Z ##[debug] } +2024-05-29T06:07:03.4974735Z ##[debug] }, +2024-05-29T06:07:03.4974965Z ##[debug] "workflow": { +2024-05-29T06:07:03.4975242Z ##[debug] "name": "💧", +2024-05-29T06:07:03.4975690Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:07:03.4976346Z ##[debug] }, +2024-05-29T06:07:03.4976590Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.4976897Z ##[debug] "databaseId": 9281068678, +2024-05-29T06:07:03.4977236Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.4977558Z ##[debug] "workflow": { +2024-05-29T06:07:03.4977832Z ##[debug] "name": "💧", +2024-05-29T06:07:03.4978295Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" +2024-05-29T06:07:03.4978777Z ##[debug] } +2024-05-29T06:07:03.4978996Z ##[debug] } +2024-05-29T06:07:03.4979215Z ##[debug] }, +2024-05-29T06:07:03.4979436Z ##[debug] { +2024-05-29T06:07:03.4979797Z ##[debug] "checkRun": { +2024-05-29T06:07:03.4980099Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:07:03.4980443Z ##[debug] "name": "intermediate", +2024-05-29T06:07:03.4980766Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4981366Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:07:03.4982083Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4982383Z ##[debug] }, +2024-05-29T06:07:03.4982619Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.4982920Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:03.4983245Z ##[debug] "conclusion": null, +2024-05-29T06:07:03.4983550Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.4983869Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:03.4984219Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.4984541Z ##[debug] "workflow": { +2024-05-29T06:07:03.4984899Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:03.4985488Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:03.4986087Z ##[debug] } +2024-05-29T06:07:03.4986319Z ##[debug] }, +2024-05-29T06:07:03.4986565Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.4986852Z ##[debug] "totalCount": 6, +2024-05-29T06:07:03.4987154Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.4987457Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.4987860Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:07:03.4988250Z ##[debug] }, +2024-05-29T06:07:03.4988495Z ##[debug] "nodes": [ +2024-05-29T06:07:03.4988752Z ##[debug] { +2024-05-29T06:07:03.4989031Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:07:03.4989398Z ##[debug] "name": "intermediate", +2024-05-29T06:07:03.4989753Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4990378Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:07:03.4990991Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4991316Z ##[debug] }, +2024-05-29T06:07:03.4991557Z ##[debug] { +2024-05-29T06:07:03.4991826Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:07:03.4992186Z ##[debug] "name": "wait-success", +2024-05-29T06:07:03.4992536Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:03.4993156Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:07:03.4993755Z ##[debug] "conclusion": null +2024-05-29T06:07:03.4994058Z ##[debug] }, +2024-05-29T06:07:03.4994300Z ##[debug] { +2024-05-29T06:07:03.4994571Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:07:03.4994952Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:07:03.4995343Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.4996048Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:07:03.4996658Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.4996978Z ##[debug] }, +2024-05-29T06:07:03.4997220Z ##[debug] { +2024-05-29T06:07:03.4997491Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:07:03.4997838Z ##[debug] "name": "wait-fail", +2024-05-29T06:07:03.4998192Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:03.4998806Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:07:03.4999402Z ##[debug] "conclusion": null +2024-05-29T06:07:03.4999711Z ##[debug] }, +2024-05-29T06:07:03.4999953Z ##[debug] { +2024-05-29T06:07:03.5000343Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:07:03.5000722Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:07:03.5001144Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5001963Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:07:03.5002783Z ##[debug] "conclusion": "FAILURE" +2024-05-29T06:07:03.5011610Z ##[debug] }, +2024-05-29T06:07:03.5011882Z ##[debug] { +2024-05-29T06:07:03.5012182Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:07:03.5012591Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:07:03.5012994Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:03.5013631Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:07:03.5014242Z ##[debug] "conclusion": null +2024-05-29T06:07:03.5014561Z ##[debug] } +2024-05-29T06:07:03.5014817Z ##[debug] ] +2024-05-29T06:07:03.5015060Z ##[debug] } +2024-05-29T06:07:03.5015281Z ##[debug] }, +2024-05-29T06:07:03.5015518Z ##[debug] "workflow": { +2024-05-29T06:07:03.5015983Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:03.5016563Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:03.5017063Z ##[debug] }, +2024-05-29T06:07:03.5017294Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5017594Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:03.5017945Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5018271Z ##[debug] "workflow": { +2024-05-29T06:07:03.5018611Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:03.5019179Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:03.5019682Z ##[debug] } +2024-05-29T06:07:03.5019913Z ##[debug] } +2024-05-29T06:07:03.5020132Z ##[debug] }, +2024-05-29T06:07:03.5020353Z ##[debug] { +2024-05-29T06:07:03.5020580Z ##[debug] "checkRun": { +2024-05-29T06:07:03.5020870Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:07:03.5021219Z ##[debug] "name": "wait-success", +2024-05-29T06:07:03.5021552Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:03.5022156Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:07:03.5022753Z ##[debug] "conclusion": null +2024-05-29T06:07:03.5023047Z ##[debug] }, +2024-05-29T06:07:03.5023281Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.5023578Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:03.5023908Z ##[debug] "conclusion": null, +2024-05-29T06:07:03.5024214Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5024535Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:03.5024889Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5025213Z ##[debug] "workflow": { +2024-05-29T06:07:03.5025566Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:03.5026245Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:03.5026753Z ##[debug] } +2024-05-29T06:07:03.5026983Z ##[debug] }, +2024-05-29T06:07:03.5027223Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.5027516Z ##[debug] "totalCount": 6, +2024-05-29T06:07:03.5027813Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.5028120Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.5028528Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:07:03.5028918Z ##[debug] }, +2024-05-29T06:07:03.5029161Z ##[debug] "nodes": [ +2024-05-29T06:07:03.5029427Z ##[debug] { +2024-05-29T06:07:03.5029700Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:07:03.5030247Z ##[debug] "name": "intermediate", +2024-05-29T06:07:03.5030631Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5031257Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:07:03.5032015Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5032351Z ##[debug] }, +2024-05-29T06:07:03.5032591Z ##[debug] { +2024-05-29T06:07:03.5032875Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:07:03.5033238Z ##[debug] "name": "wait-success", +2024-05-29T06:07:03.5033597Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:03.5034213Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:07:03.5034818Z ##[debug] "conclusion": null +2024-05-29T06:07:03.5035127Z ##[debug] }, +2024-05-29T06:07:03.5035360Z ##[debug] { +2024-05-29T06:07:03.5035640Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:07:03.5036130Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:07:03.5036512Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5037120Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:07:03.5037738Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5038057Z ##[debug] }, +2024-05-29T06:07:03.5038305Z ##[debug] { +2024-05-29T06:07:03.5038589Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:07:03.5038947Z ##[debug] "name": "wait-fail", +2024-05-29T06:07:03.5039296Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:03.5039908Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:07:03.5040509Z ##[debug] "conclusion": null +2024-05-29T06:07:03.5040823Z ##[debug] }, +2024-05-29T06:07:03.5041067Z ##[debug] { +2024-05-29T06:07:03.5041343Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:07:03.5041711Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:07:03.5042095Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5042701Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:07:03.5043305Z ##[debug] "conclusion": "FAILURE" +2024-05-29T06:07:03.5043624Z ##[debug] }, +2024-05-29T06:07:03.5043866Z ##[debug] { +2024-05-29T06:07:03.5044144Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:07:03.5044522Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:07:03.5044906Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:03.5045516Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:07:03.5046199Z ##[debug] "conclusion": null +2024-05-29T06:07:03.5046512Z ##[debug] } +2024-05-29T06:07:03.5046752Z ##[debug] ] +2024-05-29T06:07:03.5046979Z ##[debug] } +2024-05-29T06:07:03.5047209Z ##[debug] }, +2024-05-29T06:07:03.5047443Z ##[debug] "workflow": { +2024-05-29T06:07:03.5047769Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:03.5048332Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:03.5048829Z ##[debug] }, +2024-05-29T06:07:03.5049062Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5049372Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:03.5049709Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5050019Z ##[debug] "workflow": { +2024-05-29T06:07:03.5050364Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:03.5051056Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:03.5051559Z ##[debug] } +2024-05-29T06:07:03.5051777Z ##[debug] } +2024-05-29T06:07:03.5051995Z ##[debug] }, +2024-05-29T06:07:03.5052212Z ##[debug] { +2024-05-29T06:07:03.5052542Z ##[debug] "checkRun": { +2024-05-29T06:07:03.5052837Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:07:03.5053201Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:07:03.5053556Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5054150Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:07:03.5054753Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5055058Z ##[debug] }, +2024-05-29T06:07:03.5055293Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.5055591Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:03.5056023Z ##[debug] "conclusion": null, +2024-05-29T06:07:03.5056341Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5056674Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:03.5057019Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5057352Z ##[debug] "workflow": { +2024-05-29T06:07:03.5057710Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:03.5058288Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:03.5058787Z ##[debug] } +2024-05-29T06:07:03.5059023Z ##[debug] }, +2024-05-29T06:07:03.5059262Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.5059552Z ##[debug] "totalCount": 6, +2024-05-29T06:07:03.5059858Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.5060167Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.5060571Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:07:03.5060966Z ##[debug] }, +2024-05-29T06:07:03.5061219Z ##[debug] "nodes": [ +2024-05-29T06:07:03.5061486Z ##[debug] { +2024-05-29T06:07:03.5061768Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:07:03.5062138Z ##[debug] "name": "intermediate", +2024-05-29T06:07:03.5062496Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5063117Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:07:03.5063736Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5064058Z ##[debug] }, +2024-05-29T06:07:03.5064303Z ##[debug] { +2024-05-29T06:07:03.5064576Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:07:03.5064938Z ##[debug] "name": "wait-success", +2024-05-29T06:07:03.5065291Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:03.5066112Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:07:03.5066756Z ##[debug] "conclusion": null +2024-05-29T06:07:03.5067062Z ##[debug] }, +2024-05-29T06:07:03.5067304Z ##[debug] { +2024-05-29T06:07:03.5067576Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:07:03.5067954Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:07:03.5068347Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5068950Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:07:03.5069579Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5069896Z ##[debug] }, +2024-05-29T06:07:03.5070131Z ##[debug] { +2024-05-29T06:07:03.5070396Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:07:03.5070733Z ##[debug] "name": "wait-fail", +2024-05-29T06:07:03.5071074Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:03.5071803Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:07:03.5072392Z ##[debug] "conclusion": null +2024-05-29T06:07:03.5072704Z ##[debug] }, +2024-05-29T06:07:03.5072955Z ##[debug] { +2024-05-29T06:07:03.5073499Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:07:03.5073867Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:07:03.5074235Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5074828Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:07:03.5075433Z ##[debug] "conclusion": "FAILURE" +2024-05-29T06:07:03.5075757Z ##[debug] }, +2024-05-29T06:07:03.5076106Z ##[debug] { +2024-05-29T06:07:03.5076369Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:07:03.5076757Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:07:03.5077147Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:03.5077741Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:07:03.5078343Z ##[debug] "conclusion": null +2024-05-29T06:07:03.5078660Z ##[debug] } +2024-05-29T06:07:03.5078887Z ##[debug] ] +2024-05-29T06:07:03.5079117Z ##[debug] } +2024-05-29T06:07:03.5079345Z ##[debug] }, +2024-05-29T06:07:03.5079568Z ##[debug] "workflow": { +2024-05-29T06:07:03.5079902Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:03.5080466Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:03.5080955Z ##[debug] }, +2024-05-29T06:07:03.5081193Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5081500Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:03.5081839Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5082159Z ##[debug] "workflow": { +2024-05-29T06:07:03.5082503Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:03.5083068Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:03.5083560Z ##[debug] } +2024-05-29T06:07:03.5083791Z ##[debug] } +2024-05-29T06:07:03.5084013Z ##[debug] }, +2024-05-29T06:07:03.5084225Z ##[debug] { +2024-05-29T06:07:03.5084449Z ##[debug] "checkRun": { +2024-05-29T06:07:03.5084740Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:07:03.5085067Z ##[debug] "name": "wait-fail", +2024-05-29T06:07:03.5085389Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:03.5086079Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:07:03.5086660Z ##[debug] "conclusion": null +2024-05-29T06:07:03.5086951Z ##[debug] }, +2024-05-29T06:07:03.5087186Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.5087474Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:03.5087794Z ##[debug] "conclusion": null, +2024-05-29T06:07:03.5088116Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5088428Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:03.5088778Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5089104Z ##[debug] "workflow": { +2024-05-29T06:07:03.5089448Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:03.5090021Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:03.5090520Z ##[debug] } +2024-05-29T06:07:03.5090752Z ##[debug] }, +2024-05-29T06:07:03.5090989Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.5091281Z ##[debug] "totalCount": 6, +2024-05-29T06:07:03.5091586Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.5091885Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.5092414Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:07:03.5092811Z ##[debug] }, +2024-05-29T06:07:03.5093050Z ##[debug] "nodes": [ +2024-05-29T06:07:03.5093313Z ##[debug] { +2024-05-29T06:07:03.5093592Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:07:03.5094056Z ##[debug] "name": "intermediate", +2024-05-29T06:07:03.5094415Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5095033Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:07:03.5095642Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5096060Z ##[debug] }, +2024-05-29T06:07:03.5096301Z ##[debug] { +2024-05-29T06:07:03.5096574Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:07:03.5096929Z ##[debug] "name": "wait-success", +2024-05-29T06:07:03.5097282Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:03.5097898Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:07:03.5098485Z ##[debug] "conclusion": null +2024-05-29T06:07:03.5098791Z ##[debug] }, +2024-05-29T06:07:03.5099037Z ##[debug] { +2024-05-29T06:07:03.5099302Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:07:03.5099689Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:07:03.5100073Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5100668Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:07:03.5101271Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5101592Z ##[debug] }, +2024-05-29T06:07:03.5101830Z ##[debug] { +2024-05-29T06:07:03.5102098Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:07:03.5102449Z ##[debug] "name": "wait-fail", +2024-05-29T06:07:03.5102815Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:03.5103414Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:07:03.5104008Z ##[debug] "conclusion": null +2024-05-29T06:07:03.5104317Z ##[debug] }, +2024-05-29T06:07:03.5104553Z ##[debug] { +2024-05-29T06:07:03.5104826Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:07:03.5105198Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:07:03.5105565Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5106262Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:07:03.5106874Z ##[debug] "conclusion": "FAILURE" +2024-05-29T06:07:03.5107190Z ##[debug] }, +2024-05-29T06:07:03.5107424Z ##[debug] { +2024-05-29T06:07:03.5107698Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:07:03.5108082Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:07:03.5108463Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:03.5109061Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:07:03.5109654Z ##[debug] "conclusion": null +2024-05-29T06:07:03.5109954Z ##[debug] } +2024-05-29T06:07:03.5110187Z ##[debug] ] +2024-05-29T06:07:03.5110420Z ##[debug] } +2024-05-29T06:07:03.5110637Z ##[debug] }, +2024-05-29T06:07:03.5110867Z ##[debug] "workflow": { +2024-05-29T06:07:03.5111214Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:03.5111770Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:03.5112270Z ##[debug] }, +2024-05-29T06:07:03.5112507Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5112933Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:03.5113272Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5113591Z ##[debug] "workflow": { +2024-05-29T06:07:03.5113931Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:03.5114615Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:03.5115111Z ##[debug] } +2024-05-29T06:07:03.5115334Z ##[debug] } +2024-05-29T06:07:03.5115551Z ##[debug] }, +2024-05-29T06:07:03.5115766Z ##[debug] { +2024-05-29T06:07:03.5116088Z ##[debug] "checkRun": { +2024-05-29T06:07:03.5116373Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:07:03.5116726Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:07:03.5117069Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5117651Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:07:03.5118256Z ##[debug] "conclusion": "FAILURE" +2024-05-29T06:07:03.5118567Z ##[debug] }, +2024-05-29T06:07:03.5118795Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.5119099Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:03.5119423Z ##[debug] "conclusion": null, +2024-05-29T06:07:03.5119731Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5120043Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:03.5120387Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5120706Z ##[debug] "workflow": { +2024-05-29T06:07:03.5121057Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:03.5121630Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:03.5122129Z ##[debug] } +2024-05-29T06:07:03.5122358Z ##[debug] }, +2024-05-29T06:07:03.5122596Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.5122886Z ##[debug] "totalCount": 6, +2024-05-29T06:07:03.5123188Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.5123490Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.5123896Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:07:03.5124280Z ##[debug] }, +2024-05-29T06:07:03.5124531Z ##[debug] "nodes": [ +2024-05-29T06:07:03.5124793Z ##[debug] { +2024-05-29T06:07:03.5125068Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:07:03.5125433Z ##[debug] "name": "intermediate", +2024-05-29T06:07:03.5125883Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5126487Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:07:03.5127119Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5127457Z ##[debug] }, +2024-05-29T06:07:03.5127724Z ##[debug] { +2024-05-29T06:07:03.5127989Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:07:03.5128348Z ##[debug] "name": "wait-success", +2024-05-29T06:07:03.5128700Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:03.5129300Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:07:03.5129904Z ##[debug] "conclusion": null +2024-05-29T06:07:03.5130211Z ##[debug] }, +2024-05-29T06:07:03.5130443Z ##[debug] { +2024-05-29T06:07:03.5130714Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:07:03.5131092Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:07:03.5131471Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5132072Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:07:03.5132681Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5133003Z ##[debug] }, +2024-05-29T06:07:03.5133234Z ##[debug] { +2024-05-29T06:07:03.5133624Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:07:03.5133977Z ##[debug] "name": "wait-fail", +2024-05-29T06:07:03.5134317Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:03.5134918Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:07:03.5135619Z ##[debug] "conclusion": null +2024-05-29T06:07:03.5136012Z ##[debug] }, +2024-05-29T06:07:03.5136257Z ##[debug] { +2024-05-29T06:07:03.5136527Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:07:03.5136889Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:07:03.5137262Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5137858Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:07:03.5138464Z ##[debug] "conclusion": "FAILURE" +2024-05-29T06:07:03.5138783Z ##[debug] }, +2024-05-29T06:07:03.5139021Z ##[debug] { +2024-05-29T06:07:03.5139287Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:07:03.5139661Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:07:03.5140049Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:03.5140652Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:07:03.5141235Z ##[debug] "conclusion": null +2024-05-29T06:07:03.5141541Z ##[debug] } +2024-05-29T06:07:03.5141773Z ##[debug] ] +2024-05-29T06:07:03.5141999Z ##[debug] } +2024-05-29T06:07:03.5142221Z ##[debug] }, +2024-05-29T06:07:03.5142447Z ##[debug] "workflow": { +2024-05-29T06:07:03.5142771Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:03.5143336Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:03.5143832Z ##[debug] }, +2024-05-29T06:07:03.5144067Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5144368Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:03.5144706Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5145024Z ##[debug] "workflow": { +2024-05-29T06:07:03.5145355Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:03.5146009Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:03.5146504Z ##[debug] } +2024-05-29T06:07:03.5146721Z ##[debug] } +2024-05-29T06:07:03.5146940Z ##[debug] }, +2024-05-29T06:07:03.5147153Z ##[debug] { +2024-05-29T06:07:03.5147369Z ##[debug] "checkRun": { +2024-05-29T06:07:03.5147660Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:07:03.5148016Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:07:03.5148364Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:03.5148956Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:07:03.5149546Z ##[debug] "conclusion": null +2024-05-29T06:07:03.5149832Z ##[debug] }, +2024-05-29T06:07:03.5150066Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.5150361Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:03.5150679Z ##[debug] "conclusion": null, +2024-05-29T06:07:03.5150986Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5151303Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:03.5151642Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5151972Z ##[debug] "workflow": { +2024-05-29T06:07:03.5152323Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:03.5152895Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:03.5153386Z ##[debug] } +2024-05-29T06:07:03.5153618Z ##[debug] }, +2024-05-29T06:07:03.5153980Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.5154270Z ##[debug] "totalCount": 6, +2024-05-29T06:07:03.5154573Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.5154876Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.5155384Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" +2024-05-29T06:07:03.5155772Z ##[debug] }, +2024-05-29T06:07:03.5156112Z ##[debug] "nodes": [ +2024-05-29T06:07:03.5156370Z ##[debug] { +2024-05-29T06:07:03.5156648Z ##[debug] "databaseId": 25536443331, +2024-05-29T06:07:03.5157011Z ##[debug] "name": "intermediate", +2024-05-29T06:07:03.5157363Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5157965Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", +2024-05-29T06:07:03.5158576Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5158896Z ##[debug] }, +2024-05-29T06:07:03.5159139Z ##[debug] { +2024-05-29T06:07:03.5159410Z ##[debug] "databaseId": 25536443476, +2024-05-29T06:07:03.5159527Z ##[debug] "name": "wait-success", +2024-05-29T06:07:03.5159650Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:03.5160016Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", +2024-05-29T06:07:03.5160123Z ##[debug] "conclusion": null +2024-05-29T06:07:03.5160213Z ##[debug] }, +2024-05-29T06:07:03.5160297Z ##[debug] { +2024-05-29T06:07:03.5160417Z ##[debug] "databaseId": 25536443631, +2024-05-29T06:07:03.5160563Z ##[debug] "name": "quickstarter-success", +2024-05-29T06:07:03.5160679Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5161030Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:07:03.5161148Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5161235Z ##[debug] }, +2024-05-29T06:07:03.5161322Z ##[debug] { +2024-05-29T06:07:03.5161442Z ##[debug] "databaseId": 25536443811, +2024-05-29T06:07:03.5161550Z ##[debug] "name": "wait-fail", +2024-05-29T06:07:03.5161678Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:03.5162042Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", +2024-05-29T06:07:03.5162154Z ##[debug] "conclusion": null +2024-05-29T06:07:03.5162237Z ##[debug] }, +2024-05-29T06:07:03.5162323Z ##[debug] { +2024-05-29T06:07:03.5162451Z ##[debug] "databaseId": 25536455821, +2024-05-29T06:07:03.5162578Z ##[debug] "name": "slowstarter-fail", +2024-05-29T06:07:03.5162692Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5163053Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:07:03.5163167Z ##[debug] "conclusion": "FAILURE" +2024-05-29T06:07:03.5163255Z ##[debug] }, +2024-05-29T06:07:03.5163338Z ##[debug] { +2024-05-29T06:07:03.5163460Z ##[debug] "databaseId": 25536456021, +2024-05-29T06:07:03.5163603Z ##[debug] "name": "slowstarter-success", +2024-05-29T06:07:03.5163721Z ##[debug] "status": "IN_PROGRESS", +2024-05-29T06:07:03.5164072Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", +2024-05-29T06:07:03.5164180Z ##[debug] "conclusion": null +2024-05-29T06:07:03.5164262Z ##[debug] } +2024-05-29T06:07:03.5164346Z ##[debug] ] +2024-05-29T06:07:03.5164433Z ##[debug] } +2024-05-29T06:07:03.5164514Z ##[debug] }, +2024-05-29T06:07:03.5164608Z ##[debug] "workflow": { +2024-05-29T06:07:03.5164882Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:03.5165172Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:03.5165259Z ##[debug] }, +2024-05-29T06:07:03.5165355Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5165567Z ##[debug] "databaseId": 9281068681, +2024-05-29T06:07:03.5165677Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5165770Z ##[debug] "workflow": { +2024-05-29T06:07:03.5166021Z ##[debug] "name": "GH-820 - Margin for wait-list", +2024-05-29T06:07:03.5166313Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" +2024-05-29T06:07:03.5166394Z ##[debug] } +2024-05-29T06:07:03.5166479Z ##[debug] } +2024-05-29T06:07:03.5166561Z ##[debug] }, +2024-05-29T06:07:03.5166641Z ##[debug] { +2024-05-29T06:07:03.5166737Z ##[debug] "checkRun": { +2024-05-29T06:07:03.5166847Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:07:03.5166973Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:07:03.5167083Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5167445Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:07:03.5167560Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:03.5167645Z ##[debug] }, +2024-05-29T06:07:03.5167739Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.5167840Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5167953Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:07:03.5168050Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5168170Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:07:03.5168281Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5168376Z ##[debug] "workflow": { +2024-05-29T06:07:03.5168502Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:03.5168814Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:03.5168899Z ##[debug] } +2024-05-29T06:07:03.5168986Z ##[debug] }, +2024-05-29T06:07:03.5169081Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.5169178Z ##[debug] "totalCount": 4, +2024-05-29T06:07:03.5169284Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.5169396Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.5169607Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:07:03.5169692Z ##[debug] }, +2024-05-29T06:07:03.5169785Z ##[debug] "nodes": [ +2024-05-29T06:07:03.5169875Z ##[debug] { +2024-05-29T06:07:03.5169997Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:07:03.5170127Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:07:03.5170251Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5170629Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:07:03.5170748Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:03.5170836Z ##[debug] }, +2024-05-29T06:07:03.5170918Z ##[debug] { +2024-05-29T06:07:03.5171041Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:07:03.5171149Z ##[debug] "name": "renovate", +2024-05-29T06:07:03.5171265Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5171640Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:07:03.5171759Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:03.5171843Z ##[debug] }, +2024-05-29T06:07:03.5171934Z ##[debug] { +2024-05-29T06:07:03.5172056Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:07:03.5172175Z ##[debug] "name": "selfup-runner", +2024-05-29T06:07:03.5172295Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5172785Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:07:03.5172909Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:03.5172993Z ##[debug] }, +2024-05-29T06:07:03.5173075Z ##[debug] { +2024-05-29T06:07:03.5173302Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:07:03.5173415Z ##[debug] "name": "dependabot", +2024-05-29T06:07:03.5173528Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5173888Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:07:03.5174007Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:03.5174094Z ##[debug] } +2024-05-29T06:07:03.5174176Z ##[debug] ] +2024-05-29T06:07:03.5174257Z ##[debug] } +2024-05-29T06:07:03.5174343Z ##[debug] }, +2024-05-29T06:07:03.5174436Z ##[debug] "workflow": { +2024-05-29T06:07:03.5174542Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:03.5174834Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:03.5174918Z ##[debug] }, +2024-05-29T06:07:03.5175013Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5175134Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:07:03.5175240Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5175338Z ##[debug] "workflow": { +2024-05-29T06:07:03.5175437Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:03.5175724Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:03.5175907Z ##[debug] } +2024-05-29T06:07:03.5175989Z ##[debug] } +2024-05-29T06:07:03.5176070Z ##[debug] }, +2024-05-29T06:07:03.5176154Z ##[debug] { +2024-05-29T06:07:03.5176246Z ##[debug] "checkRun": { +2024-05-29T06:07:03.5176355Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:07:03.5176463Z ##[debug] "name": "renovate", +2024-05-29T06:07:03.5176565Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5176925Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:07:03.5177036Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:03.5177126Z ##[debug] }, +2024-05-29T06:07:03.5177223Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.5177325Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5177431Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:07:03.5177530Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5177643Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:07:03.5177750Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5177848Z ##[debug] "workflow": { +2024-05-29T06:07:03.5177950Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:03.5178237Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:03.5178330Z ##[debug] } +2024-05-29T06:07:03.5178416Z ##[debug] }, +2024-05-29T06:07:03.5178515Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.5178611Z ##[debug] "totalCount": 4, +2024-05-29T06:07:03.5178704Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.5178824Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.5179000Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:07:03.5179084Z ##[debug] }, +2024-05-29T06:07:03.5179177Z ##[debug] "nodes": [ +2024-05-29T06:07:03.5179260Z ##[debug] { +2024-05-29T06:07:03.5179381Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:07:03.5179512Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:07:03.5179628Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5180000Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:07:03.5180242Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:03.5180331Z ##[debug] }, +2024-05-29T06:07:03.5180420Z ##[debug] { +2024-05-29T06:07:03.5180538Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:07:03.5180642Z ##[debug] "name": "renovate", +2024-05-29T06:07:03.5180865Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5181230Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:07:03.5181347Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:03.5181435Z ##[debug] }, +2024-05-29T06:07:03.5181517Z ##[debug] { +2024-05-29T06:07:03.5181640Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:07:03.5181759Z ##[debug] "name": "selfup-runner", +2024-05-29T06:07:03.5181872Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5182233Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:07:03.5182348Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:03.5182430Z ##[debug] }, +2024-05-29T06:07:03.5182518Z ##[debug] { +2024-05-29T06:07:03.5182640Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:07:03.5182754Z ##[debug] "name": "dependabot", +2024-05-29T06:07:03.5182868Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5183221Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:07:03.5183340Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:03.5183423Z ##[debug] } +2024-05-29T06:07:03.5183506Z ##[debug] ] +2024-05-29T06:07:03.5183592Z ##[debug] } +2024-05-29T06:07:03.5183672Z ##[debug] }, +2024-05-29T06:07:03.5183764Z ##[debug] "workflow": { +2024-05-29T06:07:03.5183871Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:03.5184152Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:03.5184237Z ##[debug] }, +2024-05-29T06:07:03.5184331Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5184436Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:07:03.5184555Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5184646Z ##[debug] "workflow": { +2024-05-29T06:07:03.5184743Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:03.5185034Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:03.5185117Z ##[debug] } +2024-05-29T06:07:03.5185198Z ##[debug] } +2024-05-29T06:07:03.5185286Z ##[debug] }, +2024-05-29T06:07:03.5185368Z ##[debug] { +2024-05-29T06:07:03.5185459Z ##[debug] "checkRun": { +2024-05-29T06:07:03.5185572Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:07:03.5185679Z ##[debug] "name": "selfup-runner", +2024-05-29T06:07:03.5185889Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5186253Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:07:03.5186360Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:03.5186451Z ##[debug] }, +2024-05-29T06:07:03.5186544Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.5186644Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5186756Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:07:03.5186852Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5186965Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:07:03.5187079Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5187171Z ##[debug] "workflow": { +2024-05-29T06:07:03.5187275Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:03.5187557Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:03.5187762Z ##[debug] } +2024-05-29T06:07:03.5187849Z ##[debug] }, +2024-05-29T06:07:03.5187942Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.5188038Z ##[debug] "totalCount": 4, +2024-05-29T06:07:03.5188136Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.5188351Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.5188528Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:07:03.5188616Z ##[debug] }, +2024-05-29T06:07:03.5188704Z ##[debug] "nodes": [ +2024-05-29T06:07:03.5188786Z ##[debug] { +2024-05-29T06:07:03.5188909Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:07:03.5189036Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:07:03.5189156Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5189515Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:07:03.5189638Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:03.5189727Z ##[debug] }, +2024-05-29T06:07:03.5189808Z ##[debug] { +2024-05-29T06:07:03.5189928Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:07:03.5190040Z ##[debug] "name": "renovate", +2024-05-29T06:07:03.5190161Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5190526Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:07:03.5190642Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:03.5190726Z ##[debug] }, +2024-05-29T06:07:03.5190813Z ##[debug] { +2024-05-29T06:07:03.5190935Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:07:03.5191055Z ##[debug] "name": "selfup-runner", +2024-05-29T06:07:03.5191175Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5191528Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:07:03.5191647Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:03.5191730Z ##[debug] }, +2024-05-29T06:07:03.5191811Z ##[debug] { +2024-05-29T06:07:03.5191933Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:07:03.5192050Z ##[debug] "name": "dependabot", +2024-05-29T06:07:03.5192162Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5192519Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:07:03.5192636Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:03.5192719Z ##[debug] } +2024-05-29T06:07:03.5192807Z ##[debug] ] +2024-05-29T06:07:03.5192889Z ##[debug] } +2024-05-29T06:07:03.5192972Z ##[debug] }, +2024-05-29T06:07:03.5193069Z ##[debug] "workflow": { +2024-05-29T06:07:03.5193167Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:03.5193460Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:03.5193543Z ##[debug] }, +2024-05-29T06:07:03.5193638Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5193749Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:07:03.5193860Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5193952Z ##[debug] "workflow": { +2024-05-29T06:07:03.5194054Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:03.5194341Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:03.5194423Z ##[debug] } +2024-05-29T06:07:03.5194506Z ##[debug] } +2024-05-29T06:07:03.5194585Z ##[debug] }, +2024-05-29T06:07:03.5194668Z ##[debug] { +2024-05-29T06:07:03.5194758Z ##[debug] "checkRun": { +2024-05-29T06:07:03.5194866Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:07:03.5194972Z ##[debug] "name": "dependabot", +2024-05-29T06:07:03.5195165Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5195535Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:07:03.5195645Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:03.5195897Z ##[debug] }, +2024-05-29T06:07:03.5195992Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.5196098Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5196206Z ##[debug] "conclusion": "SKIPPED", +2024-05-29T06:07:03.5196307Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5196420Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:07:03.5196535Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5196631Z ##[debug] "workflow": { +2024-05-29T06:07:03.5196732Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:03.5197018Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:03.5197106Z ##[debug] } +2024-05-29T06:07:03.5197196Z ##[debug] }, +2024-05-29T06:07:03.5197289Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.5197392Z ##[debug] "totalCount": 4, +2024-05-29T06:07:03.5197485Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.5197594Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.5197782Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" +2024-05-29T06:07:03.5197866Z ##[debug] }, +2024-05-29T06:07:03.5197959Z ##[debug] "nodes": [ +2024-05-29T06:07:03.5198041Z ##[debug] { +2024-05-29T06:07:03.5198161Z ##[debug] "databaseId": 25536411589, +2024-05-29T06:07:03.5198294Z ##[debug] "name": "judge-dependabot", +2024-05-29T06:07:03.5198410Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5198770Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", +2024-05-29T06:07:03.5198893Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:03.5198981Z ##[debug] }, +2024-05-29T06:07:03.5199064Z ##[debug] { +2024-05-29T06:07:03.5199188Z ##[debug] "databaseId": 25536412202, +2024-05-29T06:07:03.5199293Z ##[debug] "name": "renovate", +2024-05-29T06:07:03.5199420Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5199786Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", +2024-05-29T06:07:03.5199906Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:03.5199997Z ##[debug] }, +2024-05-29T06:07:03.5200078Z ##[debug] { +2024-05-29T06:07:03.5200199Z ##[debug] "databaseId": 25536412708, +2024-05-29T06:07:03.5200323Z ##[debug] "name": "selfup-runner", +2024-05-29T06:07:03.5200436Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5200795Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", +2024-05-29T06:07:03.5200912Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:03.5200995Z ##[debug] }, +2024-05-29T06:07:03.5201083Z ##[debug] { +2024-05-29T06:07:03.5201200Z ##[debug] "databaseId": 25536413130, +2024-05-29T06:07:03.5201316Z ##[debug] "name": "dependabot", +2024-05-29T06:07:03.5201436Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5201791Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", +2024-05-29T06:07:03.5201910Z ##[debug] "conclusion": "SKIPPED" +2024-05-29T06:07:03.5201993Z ##[debug] } +2024-05-29T06:07:03.5202076Z ##[debug] ] +2024-05-29T06:07:03.5202164Z ##[debug] } +2024-05-29T06:07:03.5202246Z ##[debug] }, +2024-05-29T06:07:03.5202338Z ##[debug] "workflow": { +2024-05-29T06:07:03.5202443Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:03.5202861Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:03.5202947Z ##[debug] }, +2024-05-29T06:07:03.5203047Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5203153Z ##[debug] "databaseId": 9281068680, +2024-05-29T06:07:03.5203368Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5203466Z ##[debug] "workflow": { +2024-05-29T06:07:03.5203564Z ##[debug] "name": "🤖👌🤖", +2024-05-29T06:07:03.5203854Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" +2024-05-29T06:07:03.5203935Z ##[debug] } +2024-05-29T06:07:03.5204017Z ##[debug] } +2024-05-29T06:07:03.5204106Z ##[debug] }, +2024-05-29T06:07:03.5204188Z ##[debug] { +2024-05-29T06:07:03.5204280Z ##[debug] "checkRun": { +2024-05-29T06:07:03.5204394Z ##[debug] "databaseId": 25536411287, +2024-05-29T06:07:03.5204486Z ##[debug] "name": "echo", +2024-05-29T06:07:03.5204588Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5204963Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", +2024-05-29T06:07:03.5205070Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5205157Z ##[debug] }, +2024-05-29T06:07:03.5205258Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.5205359Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5205470Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:03.5205566Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5205681Z ##[debug] "databaseId": 9281068684, +2024-05-29T06:07:03.5205893Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5205988Z ##[debug] "workflow": { +2024-05-29T06:07:03.5206112Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:07:03.5206411Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:07:03.5206494Z ##[debug] } +2024-05-29T06:07:03.5206581Z ##[debug] }, +2024-05-29T06:07:03.5206679Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.5206775Z ##[debug] "totalCount": 1, +2024-05-29T06:07:03.5206872Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.5206982Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.5207164Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpc=" +2024-05-29T06:07:03.5207250Z ##[debug] }, +2024-05-29T06:07:03.5207338Z ##[debug] "nodes": [ +2024-05-29T06:07:03.5207420Z ##[debug] { +2024-05-29T06:07:03.5207545Z ##[debug] "databaseId": 25536411287, +2024-05-29T06:07:03.5207642Z ##[debug] "name": "echo", +2024-05-29T06:07:03.5207756Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5208122Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", +2024-05-29T06:07:03.5208238Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5208328Z ##[debug] } +2024-05-29T06:07:03.5208410Z ##[debug] ] +2024-05-29T06:07:03.5208492Z ##[debug] } +2024-05-29T06:07:03.5208578Z ##[debug] }, +2024-05-29T06:07:03.5208670Z ##[debug] "workflow": { +2024-05-29T06:07:03.5208785Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:07:03.5209080Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:07:03.5209163Z ##[debug] }, +2024-05-29T06:07:03.5209258Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5209368Z ##[debug] "databaseId": 9281068684, +2024-05-29T06:07:03.5209474Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5209567Z ##[debug] "workflow": { +2024-05-29T06:07:03.5209689Z ##[debug] "name": "GH-771 - Targets", +2024-05-29T06:07:03.5209974Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" +2024-05-29T06:07:03.5210062Z ##[debug] } +2024-05-29T06:07:03.5210143Z ##[debug] } +2024-05-29T06:07:03.5210347Z ##[debug] }, +2024-05-29T06:07:03.5210436Z ##[debug] { +2024-05-29T06:07:03.5210527Z ##[debug] "checkRun": { +2024-05-29T06:07:03.5210637Z ##[debug] "databaseId": 25536411604, +2024-05-29T06:07:03.5210732Z ##[debug] "name": "wait", +2024-05-29T06:07:03.5210935Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5211303Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", +2024-05-29T06:07:03.5211414Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5211495Z ##[debug] }, +2024-05-29T06:07:03.5211590Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.5211690Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5211795Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:03.5211896Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5212008Z ##[debug] "databaseId": 9281068685, +2024-05-29T06:07:03.5212118Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5212220Z ##[debug] "workflow": { +2024-05-29T06:07:03.5212335Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:07:03.5212614Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:07:03.5212708Z ##[debug] } +2024-05-29T06:07:03.5212846Z ##[debug] }, +2024-05-29T06:07:03.5213016Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.5213191Z ##[debug] "totalCount": 1, +2024-05-29T06:07:03.5213334Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.5213514Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.5213729Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWt9Q=" +2024-05-29T06:07:03.5213812Z ##[debug] }, +2024-05-29T06:07:03.5213906Z ##[debug] "nodes": [ +2024-05-29T06:07:03.5213989Z ##[debug] { +2024-05-29T06:07:03.5214110Z ##[debug] "databaseId": 25536411604, +2024-05-29T06:07:03.5214213Z ##[debug] "name": "wait", +2024-05-29T06:07:03.5214334Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5214710Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", +2024-05-29T06:07:03.5214829Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5214917Z ##[debug] } +2024-05-29T06:07:03.5215003Z ##[debug] ] +2024-05-29T06:07:03.5215088Z ##[debug] } +2024-05-29T06:07:03.5215169Z ##[debug] }, +2024-05-29T06:07:03.5215263Z ##[debug] "workflow": { +2024-05-29T06:07:03.5215367Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:07:03.5215638Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:07:03.5215723Z ##[debug] }, +2024-05-29T06:07:03.5215921Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5216032Z ##[debug] "databaseId": 9281068685, +2024-05-29T06:07:03.5216146Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5216239Z ##[debug] "workflow": { +2024-05-29T06:07:03.5216350Z ##[debug] "name": "GH-771 - Wait", +2024-05-29T06:07:03.5216623Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" +2024-05-29T06:07:03.5216706Z ##[debug] } +2024-05-29T06:07:03.5216796Z ##[debug] } +2024-05-29T06:07:03.5216876Z ##[debug] }, +2024-05-29T06:07:03.5216956Z ##[debug] { +2024-05-29T06:07:03.5217049Z ##[debug] "checkRun": { +2024-05-29T06:07:03.5217156Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:07:03.5217259Z ##[debug] "name": "default_logic", +2024-05-29T06:07:03.5217365Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5217730Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:07:03.5217839Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5217920Z ##[debug] }, +2024-05-29T06:07:03.5218012Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.5218255Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5218364Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:03.5218459Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5218578Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:03.5218793Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5218885Z ##[debug] "workflow": { +2024-05-29T06:07:03.5218988Z ##[debug] "name": "Itself", +2024-05-29T06:07:03.5219248Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:03.5219336Z ##[debug] } +2024-05-29T06:07:03.5219418Z ##[debug] }, +2024-05-29T06:07:03.5219511Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.5219610Z ##[debug] "totalCount": 7, +2024-05-29T06:07:03.5219704Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.5219812Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.5219995Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:07:03.5220080Z ##[debug] }, +2024-05-29T06:07:03.5220168Z ##[debug] "nodes": [ +2024-05-29T06:07:03.5220255Z ##[debug] { +2024-05-29T06:07:03.5220377Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:07:03.5220500Z ##[debug] "name": "default_logic", +2024-05-29T06:07:03.5220620Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5220985Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:07:03.5221107Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5221190Z ##[debug] }, +2024-05-29T06:07:03.5221275Z ##[debug] { +2024-05-29T06:07:03.5221405Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:07:03.5221527Z ##[debug] "name": "equal_intervals", +2024-05-29T06:07:03.5221641Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5222001Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:07:03.5222120Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5222207Z ##[debug] }, +2024-05-29T06:07:03.5222289Z ##[debug] { +2024-05-29T06:07:03.5222426Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:07:03.5222601Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:07:03.5222715Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5223063Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:07:03.5223185Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5223269Z ##[debug] }, +2024-05-29T06:07:03.5223353Z ##[debug] { +2024-05-29T06:07:03.5223477Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:07:03.5223584Z ##[debug] "name": "skip-list", +2024-05-29T06:07:03.5223707Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5224069Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:07:03.5224186Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5224277Z ##[debug] }, +2024-05-29T06:07:03.5224358Z ##[debug] { +2024-05-29T06:07:03.5224475Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:07:03.5224677Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:07:03.5224791Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5225144Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:07:03.5225259Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5225343Z ##[debug] }, +2024-05-29T06:07:03.5225429Z ##[debug] { +2024-05-29T06:07:03.5225630Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:07:03.5225951Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:07:03.5226081Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5226589Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:07:03.5226710Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5226793Z ##[debug] }, +2024-05-29T06:07:03.5226875Z ##[debug] { +2024-05-29T06:07:03.5226997Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:07:03.5227106Z ##[debug] "name": "wait-list", +2024-05-29T06:07:03.5227222Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5227593Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:07:03.5227714Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5227801Z ##[debug] } +2024-05-29T06:07:03.5227883Z ##[debug] ] +2024-05-29T06:07:03.5227964Z ##[debug] } +2024-05-29T06:07:03.5228071Z ##[debug] }, +2024-05-29T06:07:03.5228175Z ##[debug] "workflow": { +2024-05-29T06:07:03.5228277Z ##[debug] "name": "Itself", +2024-05-29T06:07:03.5228540Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:03.5228622Z ##[debug] }, +2024-05-29T06:07:03.5228719Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5228830Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:03.5228937Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5229029Z ##[debug] "workflow": { +2024-05-29T06:07:03.5229131Z ##[debug] "name": "Itself", +2024-05-29T06:07:03.5229387Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:03.5229474Z ##[debug] } +2024-05-29T06:07:03.5229561Z ##[debug] } +2024-05-29T06:07:03.5229642Z ##[debug] }, +2024-05-29T06:07:03.5229725Z ##[debug] { +2024-05-29T06:07:03.5229815Z ##[debug] "checkRun": { +2024-05-29T06:07:03.5229924Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:07:03.5230039Z ##[debug] "name": "equal_intervals", +2024-05-29T06:07:03.5230146Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5230512Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:07:03.5230624Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5230706Z ##[debug] }, +2024-05-29T06:07:03.5230798Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.5230904Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5231009Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:03.5231110Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5231224Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:03.5231338Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5231436Z ##[debug] "workflow": { +2024-05-29T06:07:03.5231533Z ##[debug] "name": "Itself", +2024-05-29T06:07:03.5231791Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:03.5231882Z ##[debug] } +2024-05-29T06:07:03.5231963Z ##[debug] }, +2024-05-29T06:07:03.5232056Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.5232157Z ##[debug] "totalCount": 7, +2024-05-29T06:07:03.5232250Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.5232366Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.5232546Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:07:03.5232629Z ##[debug] }, +2024-05-29T06:07:03.5232723Z ##[debug] "nodes": [ +2024-05-29T06:07:03.5232806Z ##[debug] { +2024-05-29T06:07:03.5232928Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:07:03.5233186Z ##[debug] "name": "default_logic", +2024-05-29T06:07:03.5233307Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5233672Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:07:03.5233893Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5233981Z ##[debug] }, +2024-05-29T06:07:03.5234066Z ##[debug] { +2024-05-29T06:07:03.5234186Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:07:03.5234305Z ##[debug] "name": "equal_intervals", +2024-05-29T06:07:03.5234422Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5234785Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:07:03.5234900Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5234990Z ##[debug] }, +2024-05-29T06:07:03.5235074Z ##[debug] { +2024-05-29T06:07:03.5235211Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:07:03.5235393Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:07:03.5235506Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5236054Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:07:03.5236181Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5236265Z ##[debug] }, +2024-05-29T06:07:03.5236352Z ##[debug] { +2024-05-29T06:07:03.5236468Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:07:03.5236576Z ##[debug] "name": "skip-list", +2024-05-29T06:07:03.5236694Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5237053Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:07:03.5237174Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5237261Z ##[debug] }, +2024-05-29T06:07:03.5237343Z ##[debug] { +2024-05-29T06:07:03.5237465Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:07:03.5237665Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:07:03.5237781Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5238145Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:07:03.5238259Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5238345Z ##[debug] }, +2024-05-29T06:07:03.5238426Z ##[debug] { +2024-05-29T06:07:03.5238542Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:07:03.5238768Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:07:03.5238885Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5239240Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:07:03.5239359Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5239441Z ##[debug] }, +2024-05-29T06:07:03.5239526Z ##[debug] { +2024-05-29T06:07:03.5239648Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:07:03.5239756Z ##[debug] "name": "wait-list", +2024-05-29T06:07:03.5239873Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5240226Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:07:03.5240343Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5240435Z ##[debug] } +2024-05-29T06:07:03.5240517Z ##[debug] ] +2024-05-29T06:07:03.5240598Z ##[debug] } +2024-05-29T06:07:03.5240685Z ##[debug] }, +2024-05-29T06:07:03.5240776Z ##[debug] "workflow": { +2024-05-29T06:07:03.5240997Z ##[debug] "name": "Itself", +2024-05-29T06:07:03.5241259Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:03.5241341Z ##[debug] }, +2024-05-29T06:07:03.5241442Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5241549Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:03.5241760Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5241855Z ##[debug] "workflow": { +2024-05-29T06:07:03.5241949Z ##[debug] "name": "Itself", +2024-05-29T06:07:03.5242206Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:03.5242293Z ##[debug] } +2024-05-29T06:07:03.5242375Z ##[debug] } +2024-05-29T06:07:03.5242457Z ##[debug] }, +2024-05-29T06:07:03.5242547Z ##[debug] { +2024-05-29T06:07:03.5242640Z ##[debug] "checkRun": { +2024-05-29T06:07:03.5242753Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:07:03.5242920Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:07:03.5243023Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5243392Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:07:03.5243497Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5243588Z ##[debug] }, +2024-05-29T06:07:03.5243684Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.5243784Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5243889Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:03.5243988Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5244101Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:03.5244215Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5244306Z ##[debug] "workflow": { +2024-05-29T06:07:03.5244404Z ##[debug] "name": "Itself", +2024-05-29T06:07:03.5244667Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:03.5244753Z ##[debug] } +2024-05-29T06:07:03.5244836Z ##[debug] }, +2024-05-29T06:07:03.5244935Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.5245031Z ##[debug] "totalCount": 7, +2024-05-29T06:07:03.5245124Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.5245242Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.5245416Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:07:03.5245503Z ##[debug] }, +2024-05-29T06:07:03.5245595Z ##[debug] "nodes": [ +2024-05-29T06:07:03.5245678Z ##[debug] { +2024-05-29T06:07:03.5245903Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:07:03.5246024Z ##[debug] "name": "default_logic", +2024-05-29T06:07:03.5246139Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5246502Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:07:03.5246625Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5246708Z ##[debug] }, +2024-05-29T06:07:03.5246794Z ##[debug] { +2024-05-29T06:07:03.5246913Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:07:03.5247036Z ##[debug] "name": "equal_intervals", +2024-05-29T06:07:03.5247155Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5247515Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:07:03.5247632Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5247714Z ##[debug] }, +2024-05-29T06:07:03.5247795Z ##[debug] { +2024-05-29T06:07:03.5247913Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:07:03.5248078Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:07:03.5248194Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5248663Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:07:03.5248782Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5248870Z ##[debug] }, +2024-05-29T06:07:03.5248950Z ##[debug] { +2024-05-29T06:07:03.5249167Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:07:03.5249277Z ##[debug] "name": "skip-list", +2024-05-29T06:07:03.5249394Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5249751Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:07:03.5249873Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5249957Z ##[debug] }, +2024-05-29T06:07:03.5250047Z ##[debug] { +2024-05-29T06:07:03.5250164Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:07:03.5250361Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:07:03.5250483Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5250832Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:07:03.5250946Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5251039Z ##[debug] }, +2024-05-29T06:07:03.5251121Z ##[debug] { +2024-05-29T06:07:03.5251241Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:07:03.5251461Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:07:03.5251575Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5251932Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:07:03.5252047Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5252131Z ##[debug] }, +2024-05-29T06:07:03.5252218Z ##[debug] { +2024-05-29T06:07:03.5252338Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:07:03.5252449Z ##[debug] "name": "wait-list", +2024-05-29T06:07:03.5252560Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5252912Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:07:03.5253036Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5253118Z ##[debug] } +2024-05-29T06:07:03.5253200Z ##[debug] ] +2024-05-29T06:07:03.5253286Z ##[debug] } +2024-05-29T06:07:03.5253367Z ##[debug] }, +2024-05-29T06:07:03.5253459Z ##[debug] "workflow": { +2024-05-29T06:07:03.5253561Z ##[debug] "name": "Itself", +2024-05-29T06:07:03.5253815Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:03.5253903Z ##[debug] }, +2024-05-29T06:07:03.5253998Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5254110Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:03.5254221Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5254311Z ##[debug] "workflow": { +2024-05-29T06:07:03.5254408Z ##[debug] "name": "Itself", +2024-05-29T06:07:03.5254667Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:03.5254756Z ##[debug] } +2024-05-29T06:07:03.5254841Z ##[debug] } +2024-05-29T06:07:03.5254928Z ##[debug] }, +2024-05-29T06:07:03.5255008Z ##[debug] { +2024-05-29T06:07:03.5255100Z ##[debug] "checkRun": { +2024-05-29T06:07:03.5255214Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:07:03.5255314Z ##[debug] "name": "skip-list", +2024-05-29T06:07:03.5255421Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5255880Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:07:03.5255991Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5256193Z ##[debug] }, +2024-05-29T06:07:03.5256290Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.5256391Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5256502Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:03.5256597Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5256832Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:03.5256948Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5257042Z ##[debug] "workflow": { +2024-05-29T06:07:03.5257143Z ##[debug] "name": "Itself", +2024-05-29T06:07:03.5257400Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:03.5257482Z ##[debug] } +2024-05-29T06:07:03.5257567Z ##[debug] }, +2024-05-29T06:07:03.5257659Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.5257754Z ##[debug] "totalCount": 7, +2024-05-29T06:07:03.5257850Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.5257965Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.5258141Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:07:03.5262238Z ##[debug] }, +2024-05-29T06:07:03.5262343Z ##[debug] "nodes": [ +2024-05-29T06:07:03.5262429Z ##[debug] { +2024-05-29T06:07:03.5262578Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:07:03.5262704Z ##[debug] "name": "default_logic", +2024-05-29T06:07:03.5262829Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5263218Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:07:03.5263338Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5263427Z ##[debug] }, +2024-05-29T06:07:03.5263510Z ##[debug] { +2024-05-29T06:07:03.5263633Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:07:03.5263760Z ##[debug] "name": "equal_intervals", +2024-05-29T06:07:03.5263886Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5264270Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:07:03.5264393Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5264485Z ##[debug] }, +2024-05-29T06:07:03.5264573Z ##[debug] { +2024-05-29T06:07:03.5264699Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:07:03.5264866Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:07:03.5264993Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5265361Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:07:03.5265485Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5265569Z ##[debug] }, +2024-05-29T06:07:03.5265650Z ##[debug] { +2024-05-29T06:07:03.5265774Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:07:03.5266031Z ##[debug] "name": "skip-list", +2024-05-29T06:07:03.5266148Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5266516Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:07:03.5266637Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5266718Z ##[debug] }, +2024-05-29T06:07:03.5266805Z ##[debug] { +2024-05-29T06:07:03.5266922Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:07:03.5267123Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:07:03.5267250Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5267615Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:07:03.5267738Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5267972Z ##[debug] }, +2024-05-29T06:07:03.5268059Z ##[debug] { +2024-05-29T06:07:03.5268180Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:07:03.5268400Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:07:03.5268622Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5268989Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:07:03.5269105Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5269193Z ##[debug] }, +2024-05-29T06:07:03.5269274Z ##[debug] { +2024-05-29T06:07:03.5269393Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:07:03.5269504Z ##[debug] "name": "wait-list", +2024-05-29T06:07:03.5269652Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5270028Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:07:03.5270145Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5270229Z ##[debug] } +2024-05-29T06:07:03.5270316Z ##[debug] ] +2024-05-29T06:07:03.5270397Z ##[debug] } +2024-05-29T06:07:03.5270482Z ##[debug] }, +2024-05-29T06:07:03.5270579Z ##[debug] "workflow": { +2024-05-29T06:07:03.5270676Z ##[debug] "name": "Itself", +2024-05-29T06:07:03.5270934Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:03.5271022Z ##[debug] }, +2024-05-29T06:07:03.5271119Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5271228Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:03.5271343Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5271435Z ##[debug] "workflow": { +2024-05-29T06:07:03.5271535Z ##[debug] "name": "Itself", +2024-05-29T06:07:03.5271802Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:03.5271885Z ##[debug] } +2024-05-29T06:07:03.5271969Z ##[debug] } +2024-05-29T06:07:03.5272048Z ##[debug] }, +2024-05-29T06:07:03.5272127Z ##[debug] { +2024-05-29T06:07:03.5272223Z ##[debug] "checkRun": { +2024-05-29T06:07:03.5272337Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:07:03.5272534Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:07:03.5272643Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5273017Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:07:03.5273127Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5273208Z ##[debug] }, +2024-05-29T06:07:03.5273307Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.5273415Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5273524Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:03.5273623Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5273743Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:03.5273854Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5273948Z ##[debug] "workflow": { +2024-05-29T06:07:03.5274050Z ##[debug] "name": "Itself", +2024-05-29T06:07:03.5274317Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:03.5274404Z ##[debug] } +2024-05-29T06:07:03.5274484Z ##[debug] }, +2024-05-29T06:07:03.5274576Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.5274678Z ##[debug] "totalCount": 7, +2024-05-29T06:07:03.5274771Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.5274880Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.5275061Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:07:03.5275142Z ##[debug] }, +2024-05-29T06:07:03.5275230Z ##[debug] "nodes": [ +2024-05-29T06:07:03.5275317Z ##[debug] { +2024-05-29T06:07:03.5275528Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:07:03.5275651Z ##[debug] "name": "default_logic", +2024-05-29T06:07:03.5275770Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5276241Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:07:03.5276482Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5276565Z ##[debug] }, +2024-05-29T06:07:03.5276646Z ##[debug] { +2024-05-29T06:07:03.5276771Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:07:03.5276896Z ##[debug] "name": "equal_intervals", +2024-05-29T06:07:03.5277008Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5277368Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:07:03.5277482Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5277572Z ##[debug] }, +2024-05-29T06:07:03.5277653Z ##[debug] { +2024-05-29T06:07:03.5277768Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:07:03.5277940Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:07:03.5278057Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5278402Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:07:03.5278520Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5278603Z ##[debug] }, +2024-05-29T06:07:03.5278691Z ##[debug] { +2024-05-29T06:07:03.5278806Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:07:03.5278913Z ##[debug] "name": "skip-list", +2024-05-29T06:07:03.5279032Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5279394Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:07:03.5279510Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5279595Z ##[debug] }, +2024-05-29T06:07:03.5279675Z ##[debug] { +2024-05-29T06:07:03.5279792Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:07:03.5279998Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:07:03.5280108Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5280459Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:07:03.5280572Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5280657Z ##[debug] }, +2024-05-29T06:07:03.5280746Z ##[debug] { +2024-05-29T06:07:03.5280861Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:07:03.5281082Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:07:03.5281202Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5281559Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:07:03.5281679Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5281765Z ##[debug] }, +2024-05-29T06:07:03.5281845Z ##[debug] { +2024-05-29T06:07:03.5281965Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:07:03.5282072Z ##[debug] "name": "wait-list", +2024-05-29T06:07:03.5282185Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5282552Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:07:03.5282666Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5282751Z ##[debug] } +2024-05-29T06:07:03.5282832Z ##[debug] ] +2024-05-29T06:07:03.5282914Z ##[debug] } +2024-05-29T06:07:03.5283202Z ##[debug] }, +2024-05-29T06:07:03.5283298Z ##[debug] "workflow": { +2024-05-29T06:07:03.5283392Z ##[debug] "name": "Itself", +2024-05-29T06:07:03.5283662Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:03.5283837Z ##[debug] }, +2024-05-29T06:07:03.5283932Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5284041Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:03.5284147Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5284237Z ##[debug] "workflow": { +2024-05-29T06:07:03.5284337Z ##[debug] "name": "Itself", +2024-05-29T06:07:03.5284594Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:03.5284676Z ##[debug] } +2024-05-29T06:07:03.5284755Z ##[debug] } +2024-05-29T06:07:03.5284835Z ##[debug] }, +2024-05-29T06:07:03.5284917Z ##[debug] { +2024-05-29T06:07:03.5285006Z ##[debug] "checkRun": { +2024-05-29T06:07:03.5285120Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:07:03.5285344Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:07:03.5285445Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5285936Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:07:03.5286053Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5286132Z ##[debug] }, +2024-05-29T06:07:03.5286226Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.5286325Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5286429Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:03.5286528Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5286639Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:03.5286748Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5286845Z ##[debug] "workflow": { +2024-05-29T06:07:03.5286945Z ##[debug] "name": "Itself", +2024-05-29T06:07:03.5287202Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:03.5287286Z ##[debug] } +2024-05-29T06:07:03.5287365Z ##[debug] }, +2024-05-29T06:07:03.5287460Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.5287560Z ##[debug] "totalCount": 7, +2024-05-29T06:07:03.5287652Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.5287765Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.5287942Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:07:03.5288033Z ##[debug] }, +2024-05-29T06:07:03.5288137Z ##[debug] "nodes": [ +2024-05-29T06:07:03.5288221Z ##[debug] { +2024-05-29T06:07:03.5288342Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:07:03.5288467Z ##[debug] "name": "default_logic", +2024-05-29T06:07:03.5288583Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5288953Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:07:03.5289068Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5289149Z ##[debug] }, +2024-05-29T06:07:03.5289233Z ##[debug] { +2024-05-29T06:07:03.5289355Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:07:03.5289472Z ##[debug] "name": "equal_intervals", +2024-05-29T06:07:03.5289587Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5289945Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:07:03.5290059Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5290144Z ##[debug] }, +2024-05-29T06:07:03.5290225Z ##[debug] { +2024-05-29T06:07:03.5290343Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:07:03.5290648Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:07:03.5290765Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5291123Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:07:03.5291233Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5291422Z ##[debug] }, +2024-05-29T06:07:03.5291508Z ##[debug] { +2024-05-29T06:07:03.5291629Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:07:03.5291740Z ##[debug] "name": "skip-list", +2024-05-29T06:07:03.5291853Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5292218Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:07:03.5292335Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5292417Z ##[debug] }, +2024-05-29T06:07:03.5292497Z ##[debug] { +2024-05-29T06:07:03.5292622Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:07:03.5292817Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:07:03.5292927Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5293281Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:07:03.5293398Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5293488Z ##[debug] }, +2024-05-29T06:07:03.5293570Z ##[debug] { +2024-05-29T06:07:03.5293684Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:07:03.5293905Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:07:03.5294018Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5294381Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:07:03.5294499Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5294582Z ##[debug] }, +2024-05-29T06:07:03.5294666Z ##[debug] { +2024-05-29T06:07:03.5294784Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:07:03.5294889Z ##[debug] "name": "wait-list", +2024-05-29T06:07:03.5295011Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5295362Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:07:03.5295477Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5295563Z ##[debug] } +2024-05-29T06:07:03.5295642Z ##[debug] ] +2024-05-29T06:07:03.5295724Z ##[debug] } +2024-05-29T06:07:03.5295932Z ##[debug] }, +2024-05-29T06:07:03.5296023Z ##[debug] "workflow": { +2024-05-29T06:07:03.5296121Z ##[debug] "name": "Itself", +2024-05-29T06:07:03.5296375Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:03.5296461Z ##[debug] }, +2024-05-29T06:07:03.5296560Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5296667Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:03.5296777Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5296875Z ##[debug] "workflow": { +2024-05-29T06:07:03.5296971Z ##[debug] "name": "Itself", +2024-05-29T06:07:03.5297225Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:03.5297310Z ##[debug] } +2024-05-29T06:07:03.5297392Z ##[debug] } +2024-05-29T06:07:03.5297475Z ##[debug] }, +2024-05-29T06:07:03.5297555Z ##[debug] { +2024-05-29T06:07:03.5297645Z ##[debug] "checkRun": { +2024-05-29T06:07:03.5297756Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:07:03.5297856Z ##[debug] "name": "wait-list", +2024-05-29T06:07:03.5297955Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5298443Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:07:03.5298552Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5298633Z ##[debug] }, +2024-05-29T06:07:03.5298727Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.5298826Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5299035Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:03.5299132Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5299245Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:03.5299359Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5299451Z ##[debug] "workflow": { +2024-05-29T06:07:03.5299547Z ##[debug] "name": "Itself", +2024-05-29T06:07:03.5299809Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:03.5299892Z ##[debug] } +2024-05-29T06:07:03.5299973Z ##[debug] }, +2024-05-29T06:07:03.5300069Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.5300168Z ##[debug] "totalCount": 7, +2024-05-29T06:07:03.5300262Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.5300374Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.5300549Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" +2024-05-29T06:07:03.5300640Z ##[debug] }, +2024-05-29T06:07:03.5300727Z ##[debug] "nodes": [ +2024-05-29T06:07:03.5300809Z ##[debug] { +2024-05-29T06:07:03.5300933Z ##[debug] "databaseId": 25536411790, +2024-05-29T06:07:03.5301052Z ##[debug] "name": "default_logic", +2024-05-29T06:07:03.5301170Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5301540Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", +2024-05-29T06:07:03.5301663Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5301747Z ##[debug] }, +2024-05-29T06:07:03.5301833Z ##[debug] { +2024-05-29T06:07:03.5301956Z ##[debug] "databaseId": 25536412208, +2024-05-29T06:07:03.5302080Z ##[debug] "name": "equal_intervals", +2024-05-29T06:07:03.5302195Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5302572Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", +2024-05-29T06:07:03.5302695Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5302776Z ##[debug] }, +2024-05-29T06:07:03.5302857Z ##[debug] { +2024-05-29T06:07:03.5302977Z ##[debug] "databaseId": 25536412716, +2024-05-29T06:07:03.5303146Z ##[debug] "name": "exponential_backoff_allow_failure", +2024-05-29T06:07:03.5303276Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5303628Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", +2024-05-29T06:07:03.5303740Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5303827Z ##[debug] }, +2024-05-29T06:07:03.5303908Z ##[debug] { +2024-05-29T06:07:03.5304021Z ##[debug] "databaseId": 25536413112, +2024-05-29T06:07:03.5304131Z ##[debug] "name": "skip-list", +2024-05-29T06:07:03.5304247Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5304610Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", +2024-05-29T06:07:03.5304722Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5304803Z ##[debug] }, +2024-05-29T06:07:03.5304885Z ##[debug] { +2024-05-29T06:07:03.5304999Z ##[debug] "databaseId": 25536413531, +2024-05-29T06:07:03.5305195Z ##[debug] "name": "validation_example_basic_errors_allow_failure", +2024-05-29T06:07:03.5305308Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5305745Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", +2024-05-29T06:07:03.5305964Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5306046Z ##[debug] }, +2024-05-29T06:07:03.5306125Z ##[debug] { +2024-05-29T06:07:03.5306240Z ##[debug] "databaseId": 25536413792, +2024-05-29T06:07:03.5306578Z ##[debug] "name": "validation_example_combination_errors_allow_failure", +2024-05-29T06:07:03.5306689Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5307059Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", +2024-05-29T06:07:03.5307170Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5307250Z ##[debug] }, +2024-05-29T06:07:03.5307333Z ##[debug] { +2024-05-29T06:07:03.5307445Z ##[debug] "databaseId": 25536414001, +2024-05-29T06:07:03.5307551Z ##[debug] "name": "wait-list", +2024-05-29T06:07:03.5307664Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5308021Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", +2024-05-29T06:07:03.5308138Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5308224Z ##[debug] } +2024-05-29T06:07:03.5308305Z ##[debug] ] +2024-05-29T06:07:03.5308391Z ##[debug] } +2024-05-29T06:07:03.5308470Z ##[debug] }, +2024-05-29T06:07:03.5308561Z ##[debug] "workflow": { +2024-05-29T06:07:03.5308661Z ##[debug] "name": "Itself", +2024-05-29T06:07:03.5308918Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:03.5309004Z ##[debug] }, +2024-05-29T06:07:03.5309097Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5309202Z ##[debug] "databaseId": 9281068686, +2024-05-29T06:07:03.5309314Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5309403Z ##[debug] "workflow": { +2024-05-29T06:07:03.5309502Z ##[debug] "name": "Itself", +2024-05-29T06:07:03.5309760Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" +2024-05-29T06:07:03.5309841Z ##[debug] } +2024-05-29T06:07:03.5309922Z ##[debug] } +2024-05-29T06:07:03.5310009Z ##[debug] }, +2024-05-29T06:07:03.5310086Z ##[debug] { +2024-05-29T06:07:03.5310174Z ##[debug] "checkRun": { +2024-05-29T06:07:03.5310285Z ##[debug] "databaseId": 25536411358, +2024-05-29T06:07:03.5310405Z ##[debug] "name": "dependency-review", +2024-05-29T06:07:03.5310509Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5310877Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", +2024-05-29T06:07:03.5310982Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5311069Z ##[debug] }, +2024-05-29T06:07:03.5311161Z ##[debug] "checkSuite": { +2024-05-29T06:07:03.5311260Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5311372Z ##[debug] "conclusion": "SUCCESS", +2024-05-29T06:07:03.5311467Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5311578Z ##[debug] "databaseId": 9281068690, +2024-05-29T06:07:03.5311694Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5311790Z ##[debug] "workflow": { +2024-05-29T06:07:03.5311894Z ##[debug] "name": "💂➕", +2024-05-29T06:07:03.5312214Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:07:03.5312298Z ##[debug] } +2024-05-29T06:07:03.5312383Z ##[debug] }, +2024-05-29T06:07:03.5312476Z ##[debug] "checkRuns": { +2024-05-29T06:07:03.5312568Z ##[debug] "totalCount": 1, +2024-05-29T06:07:03.5312663Z ##[debug] "pageInfo": { +2024-05-29T06:07:03.5312771Z ##[debug] "hasNextPage": false, +2024-05-29T06:07:03.5312946Z ##[debug] "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtt4=" +2024-05-29T06:07:03.5313154Z ##[debug] }, +2024-05-29T06:07:03.5313246Z ##[debug] "nodes": [ +2024-05-29T06:07:03.5313333Z ##[debug] { +2024-05-29T06:07:03.5313451Z ##[debug] "databaseId": 25536411358, +2024-05-29T06:07:03.5313581Z ##[debug] "name": "dependency-review", +2024-05-29T06:07:03.5313878Z ##[debug] "status": "COMPLETED", +2024-05-29T06:07:03.5314309Z ##[debug] "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", +2024-05-29T06:07:03.5314426Z ##[debug] "conclusion": "SUCCESS" +2024-05-29T06:07:03.5314510Z ##[debug] } +2024-05-29T06:07:03.5314594Z ##[debug] ] +2024-05-29T06:07:03.5314674Z ##[debug] } +2024-05-29T06:07:03.5314758Z ##[debug] }, +2024-05-29T06:07:03.5314848Z ##[debug] "workflow": { +2024-05-29T06:07:03.5314943Z ##[debug] "name": "💂➕", +2024-05-29T06:07:03.5315268Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:07:03.5315349Z ##[debug] }, +2024-05-29T06:07:03.5315444Z ##[debug] "workflowRun": { +2024-05-29T06:07:03.5315550Z ##[debug] "databaseId": 9281068690, +2024-05-29T06:07:03.5315656Z ##[debug] "event": "pull_request", +2024-05-29T06:07:03.5315755Z ##[debug] "workflow": { +2024-05-29T06:07:03.5315945Z ##[debug] "name": "💂➕", +2024-05-29T06:07:03.5316256Z ##[debug] "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" +2024-05-29T06:07:03.5316340Z ##[debug] } +2024-05-29T06:07:03.5316420Z ##[debug] } +2024-05-29T06:07:03.5316500Z ##[debug] } +2024-05-29T06:07:03.5316582Z ##[debug] ], +2024-05-29T06:07:03.5316692Z ##[debug] "elapsedMsec": 27615.61213900009 +2024-05-29T06:07:03.5316774Z ##[debug]} +2024-05-29T06:07:03.5318091Z GH-820-graceperiod.yml(quickstarter-success): [suiteStatus: IN_PROGRESS][suiteConclusion: (null)][runStatus: COMPLETED][runConclusion: SUCCESS][eventName: pull_request][runURL: https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631] +2024-05-29T06:07:03.5319223Z GH-820-graceperiod.yml(slowstarter-fail): [suiteStatus: IN_PROGRESS][suiteConclusion: (null)][runStatus: COMPLETED][runConclusion: FAILURE][eventName: pull_request][runURL: https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821] +2024-05-29T06:07:03.5320011Z ##[debug]{ +2024-05-29T06:07:03.5320108Z ##[debug] "label": "filtered", +2024-05-29T06:07:03.5320198Z ##[debug] "report": { +2024-05-29T06:07:03.5320295Z ##[debug] "progress": "done", +2024-05-29T06:07:03.5320395Z ##[debug] "conclusion": "bad", +2024-05-29T06:07:03.5320487Z ##[debug] "summaries": [ +2024-05-29T06:07:03.5320567Z ##[debug] { +2024-05-29T06:07:03.5320667Z ##[debug] "acceptable": true, +2024-05-29T06:07:03.5320814Z ##[debug] "workflowPath": "GH-820-graceperiod.yml", +2024-05-29T06:07:03.5320923Z ##[debug] "isSameWorkflow": true, +2024-05-29T06:07:03.5321049Z ##[debug] "eventName": "pull_request", +2024-05-29T06:07:03.5321184Z ##[debug] "checkSuiteStatus": "IN_PROGRESS", +2024-05-29T06:07:03.5321310Z ##[debug] "checkSuiteConclusion": null, +2024-05-29T06:07:03.5321431Z ##[debug] "runDatabaseId": 25536443631, +2024-05-29T06:07:03.5321568Z ##[debug] "jobName": "quickstarter-success", +2024-05-29T06:07:03.5321947Z ##[debug] "checkRunUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", +2024-05-29T06:07:03.5322060Z ##[debug] "runStatus": "COMPLETED", +2024-05-29T06:07:03.5322171Z ##[debug] "runConclusion": "SUCCESS" +2024-05-29T06:07:03.5322255Z ##[debug] }, +2024-05-29T06:07:03.5322335Z ##[debug] { +2024-05-29T06:07:03.5322437Z ##[debug] "acceptable": false, +2024-05-29T06:07:03.5322580Z ##[debug] "workflowPath": "GH-820-graceperiod.yml", +2024-05-29T06:07:03.5322687Z ##[debug] "isSameWorkflow": true, +2024-05-29T06:07:03.5322805Z ##[debug] "eventName": "pull_request", +2024-05-29T06:07:03.5323107Z ##[debug] "checkSuiteStatus": "IN_PROGRESS", +2024-05-29T06:07:03.5323236Z ##[debug] "checkSuiteConclusion": null, +2024-05-29T06:07:03.5323355Z ##[debug] "runDatabaseId": 25536455821, +2024-05-29T06:07:03.5323480Z ##[debug] "jobName": "slowstarter-fail", +2024-05-29T06:07:03.5323949Z ##[debug] "checkRunUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", +2024-05-29T06:07:03.5324068Z ##[debug] "runStatus": "COMPLETED", +2024-05-29T06:07:03.5324178Z ##[debug] "runConclusion": "FAILURE" +2024-05-29T06:07:03.5324258Z ##[debug] } +2024-05-29T06:07:03.5324341Z ##[debug] ] +2024-05-29T06:07:03.5324419Z ##[debug] } +2024-05-29T06:07:03.5324496Z ##[debug]} +2024-05-29T06:07:03.5348020Z ##[error]some jobs failed +2024-05-29T06:07:03.5354512Z ::endgroup:: +2024-05-29T06:07:03.5354619Z ##[endgroup] +2024-05-29T06:07:03.5355534Z ##[debug]Node Action run completed with exit code 1 +2024-05-29T06:07:03.5361041Z ##[debug]Finishing: Run /./ +2024-05-29T06:07:03.5380077Z ##[debug]Evaluating condition for step: 'Post Run actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633' +2024-05-29T06:07:03.5382949Z ##[debug]Evaluating: always() +2024-05-29T06:07:03.5383163Z ##[debug]Evaluating always: +2024-05-29T06:07:03.5383918Z ##[debug]=> true +2024-05-29T06:07:03.5384268Z ##[debug]Result: true +2024-05-29T06:07:03.5385037Z ##[debug]Starting: Post Run actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 +2024-05-29T06:07:03.5418747Z ##[debug]Loading inputs +2024-05-29T06:07:03.5419744Z ##[debug]Evaluating: github.repository +2024-05-29T06:07:03.5419983Z ##[debug]Evaluating Index: +2024-05-29T06:07:03.5420137Z ##[debug]..Evaluating github: +2024-05-29T06:07:03.5420255Z ##[debug]..=> Object +2024-05-29T06:07:03.5420382Z ##[debug]..Evaluating String: +2024-05-29T06:07:03.5420493Z ##[debug]..=> 'repository' +2024-05-29T06:07:03.5420663Z ##[debug]=> 'kachick/wait-other-jobs' +2024-05-29T06:07:03.5420806Z ##[debug]Result: 'kachick/wait-other-jobs' +2024-05-29T06:07:03.5422183Z ##[debug]Evaluating: github.token +2024-05-29T06:07:03.5422293Z ##[debug]Evaluating Index: +2024-05-29T06:07:03.5422403Z ##[debug]..Evaluating github: +2024-05-29T06:07:03.5422514Z ##[debug]..=> Object +2024-05-29T06:07:03.5422633Z ##[debug]..Evaluating String: +2024-05-29T06:07:03.5422736Z ##[debug]..=> 'token' +2024-05-29T06:07:03.5423236Z ##[debug]=> '***' +2024-05-29T06:07:03.5423544Z ##[debug]Result: '***' +2024-05-29T06:07:03.5432045Z ##[debug]Loading env +2024-05-29T06:07:03.5436659Z Post job cleanup. +2024-05-29T06:07:03.6139309Z ##[debug]Getting git version +2024-05-29T06:07:03.6152252Z [command]/usr/bin/git version +2024-05-29T06:07:03.6191593Z git version 2.45.1 +2024-05-29T06:07:03.6213071Z ##[debug]0 +2024-05-29T06:07:03.6213526Z ##[debug]git version 2.45.1 +2024-05-29T06:07:03.6213662Z ##[debug] +2024-05-29T06:07:03.6216017Z ##[debug]Set git useragent to: git/2.45.1 (github-actions-checkout) +2024-05-29T06:07:03.6218884Z ::add-mask::*** +2024-05-29T06:07:03.6233783Z Temporarily overriding HOME='/home/runner/work/_temp/99ae36c8-d3d5-4a04-a32d-401797c77bdf' before making global git config changes +2024-05-29T06:07:03.6234295Z Adding repository directory to the temporary git global config as a safe directory +2024-05-29T06:07:03.6239682Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/wait-other-jobs/wait-other-jobs +2024-05-29T06:07:03.6265762Z ##[debug]0 +2024-05-29T06:07:03.6266788Z ##[debug] +2024-05-29T06:07:03.6272564Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2024-05-29T06:07:03.6297493Z ##[debug]1 +2024-05-29T06:07:03.6298625Z ##[debug] +2024-05-29T06:07:03.6304309Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2024-05-29T06:07:03.6526896Z ##[debug]0 +2024-05-29T06:07:03.6527242Z ##[debug] +2024-05-29T06:07:03.6530256Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2024-05-29T06:07:03.6548803Z http.https://github.com/.extraheader +2024-05-29T06:07:03.6554701Z ##[debug]0 +2024-05-29T06:07:03.6555273Z ##[debug]http.https://github.com/.extraheader +2024-05-29T06:07:03.6555405Z ##[debug] +2024-05-29T06:07:03.6559664Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader +2024-05-29T06:07:03.6581922Z ##[debug]0 +2024-05-29T06:07:03.6582550Z ##[debug] +2024-05-29T06:07:03.6587803Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2024-05-29T06:07:03.6799271Z ##[debug]0 +2024-05-29T06:07:03.6800026Z ##[debug] +2024-05-29T06:07:03.6800787Z ##[debug]Unsetting HOME override +2024-05-29T06:07:03.6885167Z ##[debug]Node Action run completed with exit code 0 +2024-05-29T06:07:03.6887845Z ##[debug]Finishing: Post Run actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 +2024-05-29T06:07:03.7051942Z ##[debug]Starting: Complete job +2024-05-29T06:07:03.7053668Z Uploading runner diagnostic logs +2024-05-29T06:07:03.7101969Z ##[debug]Starting diagnostic file upload. +2024-05-29T06:07:03.7102465Z ##[debug]Setting up diagnostic log folders. +2024-05-29T06:07:03.7104529Z ##[debug]Creating diagnostic log files folder. +2024-05-29T06:07:03.7122241Z ##[debug]Copying 1 worker diagnostic logs. +2024-05-29T06:07:03.7139109Z ##[debug]Copying 1 runner diagnostic logs. +2024-05-29T06:07:03.7140267Z ##[debug]Zipping diagnostic files. +2024-05-29T06:07:03.7196591Z ##[debug]Uploading diagnostic metadata file. +2024-05-29T06:07:03.7222718Z ##[debug]Diagnostic file upload complete. +2024-05-29T06:07:03.7223425Z Completed runner diagnostic log upload +2024-05-29T06:07:03.7223788Z Cleaning up orphan processes +2024-05-29T06:07:03.7565460Z ##[debug]Finishing: Complete job +2024-05-29T06:07:03.7681159Z ##[debug]Finishing: wait-fail diff --git a/snapshots/run-9281068681/README.md b/snapshots/run-9281068681/README.md new file mode 100644 index 00000000..680ec0a7 --- /dev/null +++ b/snapshots/run-9281068681/README.md @@ -0,0 +1,20 @@ +# How to extract checks from debug log + +Source: https://github.com/kachick/wait-other-jobs/actions/runs/9281068681 + +This file recorded snapshot checks for GH-820 in the debug log + +How to use in testing code + +1. Create 2 arrays for each checks in first and last polling. In first, mandatory check is not yet appeared. +2. Extract JSON with trimming the timestamp and debug prefix +3. (optional) Extract checks related to GH-820 for readability + +```bash +mkdir -p tmp +cat ./snapshots/run-9281068681/1_wait-success.txt | sd '^(\S+ ##\[debug\])(.+)' '$2' > ./tmp/trimmed_prefix-wait-success.txt + +# Manually extract JSON array with `"label": "rawdata"` as `./tmp/wait-success-polling1-rawdata.json` + +cat ./tmp/wait-success-polling1-rawdata.json | jq '[.checks[] | select (.workflow.name | contains("GH-820"))]' +``` diff --git a/snapshots/run-9281068681/extracted/wait-success-polling1-rawdata.json b/snapshots/run-9281068681/extracted/wait-success-polling1-rawdata.json new file mode 100644 index 00000000..fa9d8e08 --- /dev/null +++ b/snapshots/run-9281068681/extracted/wait-success-polling1-rawdata.json @@ -0,0 +1,1917 @@ +{ + "label": "rawdata", + "checks": [ + { + "checkRun": { + "databaseId": 25536410411, + "name": "gitleaks", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068413, + "event": "push", + "workflow": { + "name": "💧", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" + } + }, + "checkRuns": { + "totalCount": 1, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWsys=" + }, + "nodes": [ + { + "databaseId": 25536410411, + "name": "gitleaks", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "💧", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" + }, + "workflowRun": { + "databaseId": 9281068413, + "event": "push", + "workflow": { + "name": "💧", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536411112, + "name": "build", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068677, + "event": "pull_request", + "workflow": { + "name": "TypeScript", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" + } + }, + "checkRuns": { + "totalCount": 3, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" + }, + "nodes": [ + { + "databaseId": 25536411112, + "name": "build", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536411611, + "name": "test", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412231, + "name": "typecheck", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "TypeScript", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" + }, + "workflowRun": { + "databaseId": 9281068677, + "event": "pull_request", + "workflow": { + "name": "TypeScript", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536411611, + "name": "test", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068677, + "event": "pull_request", + "workflow": { + "name": "TypeScript", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" + } + }, + "checkRuns": { + "totalCount": 3, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" + }, + "nodes": [ + { + "databaseId": 25536411112, + "name": "build", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536411611, + "name": "test", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412231, + "name": "typecheck", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "TypeScript", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" + }, + "workflowRun": { + "databaseId": 9281068677, + "event": "pull_request", + "workflow": { + "name": "TypeScript", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536412231, + "name": "typecheck", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068677, + "event": "pull_request", + "workflow": { + "name": "TypeScript", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" + } + }, + "checkRuns": { + "totalCount": 3, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" + }, + "nodes": [ + { + "databaseId": 25536411112, + "name": "build", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536411611, + "name": "test", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412231, + "name": "typecheck", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "TypeScript", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" + }, + "workflowRun": { + "databaseId": 9281068677, + "event": "pull_request", + "workflow": { + "name": "TypeScript", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536410993, + "name": "typos", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068676, + "event": "pull_request", + "workflow": { + "name": "👕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" + } + }, + "checkRuns": { + "totalCount": 4, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" + }, + "nodes": [ + { + "databaseId": 25536410993, + "name": "typos", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536411606, + "name": "dprint", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412217, + "name": "deno_lint", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412717, + "name": "yamlfmt", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "👕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" + }, + "workflowRun": { + "databaseId": 9281068676, + "event": "pull_request", + "workflow": { + "name": "👕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536411606, + "name": "dprint", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068676, + "event": "pull_request", + "workflow": { + "name": "👕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" + } + }, + "checkRuns": { + "totalCount": 4, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" + }, + "nodes": [ + { + "databaseId": 25536410993, + "name": "typos", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536411606, + "name": "dprint", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412217, + "name": "deno_lint", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412717, + "name": "yamlfmt", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "👕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" + }, + "workflowRun": { + "databaseId": 9281068676, + "event": "pull_request", + "workflow": { + "name": "👕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536412217, + "name": "deno_lint", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068676, + "event": "pull_request", + "workflow": { + "name": "👕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" + } + }, + "checkRuns": { + "totalCount": 4, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" + }, + "nodes": [ + { + "databaseId": 25536410993, + "name": "typos", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536411606, + "name": "dprint", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412217, + "name": "deno_lint", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412717, + "name": "yamlfmt", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "👕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" + }, + "workflowRun": { + "databaseId": 9281068676, + "event": "pull_request", + "workflow": { + "name": "👕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536412717, + "name": "yamlfmt", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068676, + "event": "pull_request", + "workflow": { + "name": "👕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" + } + }, + "checkRuns": { + "totalCount": 4, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" + }, + "nodes": [ + { + "databaseId": 25536410993, + "name": "typos", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536411606, + "name": "dprint", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412217, + "name": "deno_lint", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412717, + "name": "yamlfmt", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "👕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" + }, + "workflowRun": { + "databaseId": 9281068676, + "event": "pull_request", + "workflow": { + "name": "👕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536411289, + "name": "gitleaks", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068678, + "event": "pull_request", + "workflow": { + "name": "💧", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" + } + }, + "checkRuns": { + "totalCount": 1, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpk=" + }, + "nodes": [ + { + "databaseId": 25536411289, + "name": "gitleaks", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "💧", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" + }, + "workflowRun": { + "databaseId": 9281068678, + "event": "pull_request", + "workflow": { + "name": "💧", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536443331, + "name": "intermediate", + "status": "IN_PROGRESS", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", + "conclusion": null + }, + "checkSuite": { + "status": "QUEUED", + "conclusion": null, + "workflowRun": { + "databaseId": 9281068681, + "event": "pull_request", + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + } + }, + "checkRuns": { + "totalCount": 4, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXNaM=" + }, + "nodes": [ + { + "databaseId": 25536443331, + "name": "intermediate", + "status": "IN_PROGRESS", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", + "conclusion": null + }, + { + "databaseId": 25536443476, + "name": "wait-success", + "status": "IN_PROGRESS", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", + "conclusion": null + }, + { + "databaseId": 25536443631, + "name": "quickstarter-success", + "status": "QUEUED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", + "conclusion": null + }, + { + "databaseId": 25536443811, + "name": "wait-fail", + "status": "IN_PROGRESS", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", + "conclusion": null + } + ] + } + }, + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + }, + "workflowRun": { + "databaseId": 9281068681, + "event": "pull_request", + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536443476, + "name": "wait-success", + "status": "IN_PROGRESS", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", + "conclusion": null + }, + "checkSuite": { + "status": "QUEUED", + "conclusion": null, + "workflowRun": { + "databaseId": 9281068681, + "event": "pull_request", + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + } + }, + "checkRuns": { + "totalCount": 4, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXNaM=" + }, + "nodes": [ + { + "databaseId": 25536443331, + "name": "intermediate", + "status": "IN_PROGRESS", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", + "conclusion": null + }, + { + "databaseId": 25536443476, + "name": "wait-success", + "status": "IN_PROGRESS", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", + "conclusion": null + }, + { + "databaseId": 25536443631, + "name": "quickstarter-success", + "status": "QUEUED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", + "conclusion": null + }, + { + "databaseId": 25536443811, + "name": "wait-fail", + "status": "IN_PROGRESS", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", + "conclusion": null + } + ] + } + }, + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + }, + "workflowRun": { + "databaseId": 9281068681, + "event": "pull_request", + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536443631, + "name": "quickstarter-success", + "status": "QUEUED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", + "conclusion": null + }, + "checkSuite": { + "status": "QUEUED", + "conclusion": null, + "workflowRun": { + "databaseId": 9281068681, + "event": "pull_request", + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + } + }, + "checkRuns": { + "totalCount": 4, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXNaM=" + }, + "nodes": [ + { + "databaseId": 25536443331, + "name": "intermediate", + "status": "IN_PROGRESS", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", + "conclusion": null + }, + { + "databaseId": 25536443476, + "name": "wait-success", + "status": "IN_PROGRESS", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", + "conclusion": null + }, + { + "databaseId": 25536443631, + "name": "quickstarter-success", + "status": "QUEUED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", + "conclusion": null + }, + { + "databaseId": 25536443811, + "name": "wait-fail", + "status": "IN_PROGRESS", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", + "conclusion": null + } + ] + } + }, + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + }, + "workflowRun": { + "databaseId": 9281068681, + "event": "pull_request", + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536443811, + "name": "wait-fail", + "status": "IN_PROGRESS", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", + "conclusion": null + }, + "checkSuite": { + "status": "QUEUED", + "conclusion": null, + "workflowRun": { + "databaseId": 9281068681, + "event": "pull_request", + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + } + }, + "checkRuns": { + "totalCount": 4, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXNaM=" + }, + "nodes": [ + { + "databaseId": 25536443331, + "name": "intermediate", + "status": "IN_PROGRESS", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", + "conclusion": null + }, + { + "databaseId": 25536443476, + "name": "wait-success", + "status": "IN_PROGRESS", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", + "conclusion": null + }, + { + "databaseId": 25536443631, + "name": "quickstarter-success", + "status": "QUEUED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", + "conclusion": null + }, + { + "databaseId": 25536443811, + "name": "wait-fail", + "status": "IN_PROGRESS", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", + "conclusion": null + } + ] + } + }, + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + }, + "workflowRun": { + "databaseId": 9281068681, + "event": "pull_request", + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536411589, + "name": "judge-dependabot", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", + "conclusion": "SKIPPED" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SKIPPED", + "workflowRun": { + "databaseId": 9281068680, + "event": "pull_request", + "workflow": { + "name": "🤖👌🤖", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" + } + }, + "checkRuns": { + "totalCount": 4, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" + }, + "nodes": [ + { + "databaseId": 25536411589, + "name": "judge-dependabot", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", + "conclusion": "SKIPPED" + }, + { + "databaseId": 25536412202, + "name": "renovate", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", + "conclusion": "SKIPPED" + }, + { + "databaseId": 25536412708, + "name": "selfup-runner", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", + "conclusion": "SKIPPED" + }, + { + "databaseId": 25536413130, + "name": "dependabot", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", + "conclusion": "SKIPPED" + } + ] + } + }, + "workflow": { + "name": "🤖👌🤖", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" + }, + "workflowRun": { + "databaseId": 9281068680, + "event": "pull_request", + "workflow": { + "name": "🤖👌🤖", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536412202, + "name": "renovate", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", + "conclusion": "SKIPPED" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SKIPPED", + "workflowRun": { + "databaseId": 9281068680, + "event": "pull_request", + "workflow": { + "name": "🤖👌🤖", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" + } + }, + "checkRuns": { + "totalCount": 4, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" + }, + "nodes": [ + { + "databaseId": 25536411589, + "name": "judge-dependabot", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", + "conclusion": "SKIPPED" + }, + { + "databaseId": 25536412202, + "name": "renovate", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", + "conclusion": "SKIPPED" + }, + { + "databaseId": 25536412708, + "name": "selfup-runner", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", + "conclusion": "SKIPPED" + }, + { + "databaseId": 25536413130, + "name": "dependabot", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", + "conclusion": "SKIPPED" + } + ] + } + }, + "workflow": { + "name": "🤖👌🤖", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" + }, + "workflowRun": { + "databaseId": 9281068680, + "event": "pull_request", + "workflow": { + "name": "🤖👌🤖", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536412708, + "name": "selfup-runner", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", + "conclusion": "SKIPPED" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SKIPPED", + "workflowRun": { + "databaseId": 9281068680, + "event": "pull_request", + "workflow": { + "name": "🤖👌🤖", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" + } + }, + "checkRuns": { + "totalCount": 4, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" + }, + "nodes": [ + { + "databaseId": 25536411589, + "name": "judge-dependabot", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", + "conclusion": "SKIPPED" + }, + { + "databaseId": 25536412202, + "name": "renovate", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", + "conclusion": "SKIPPED" + }, + { + "databaseId": 25536412708, + "name": "selfup-runner", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", + "conclusion": "SKIPPED" + }, + { + "databaseId": 25536413130, + "name": "dependabot", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", + "conclusion": "SKIPPED" + } + ] + } + }, + "workflow": { + "name": "🤖👌🤖", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" + }, + "workflowRun": { + "databaseId": 9281068680, + "event": "pull_request", + "workflow": { + "name": "🤖👌🤖", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536413130, + "name": "dependabot", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", + "conclusion": "SKIPPED" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SKIPPED", + "workflowRun": { + "databaseId": 9281068680, + "event": "pull_request", + "workflow": { + "name": "🤖👌🤖", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" + } + }, + "checkRuns": { + "totalCount": 4, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" + }, + "nodes": [ + { + "databaseId": 25536411589, + "name": "judge-dependabot", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", + "conclusion": "SKIPPED" + }, + { + "databaseId": 25536412202, + "name": "renovate", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", + "conclusion": "SKIPPED" + }, + { + "databaseId": 25536412708, + "name": "selfup-runner", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", + "conclusion": "SKIPPED" + }, + { + "databaseId": 25536413130, + "name": "dependabot", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", + "conclusion": "SKIPPED" + } + ] + } + }, + "workflow": { + "name": "🤖👌🤖", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" + }, + "workflowRun": { + "databaseId": 9281068680, + "event": "pull_request", + "workflow": { + "name": "🤖👌🤖", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536411287, + "name": "echo", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068684, + "event": "pull_request", + "workflow": { + "name": "GH-771 - Targets", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" + } + }, + "checkRuns": { + "totalCount": 1, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpc=" + }, + "nodes": [ + { + "databaseId": 25536411287, + "name": "echo", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "GH-771 - Targets", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" + }, + "workflowRun": { + "databaseId": 9281068684, + "event": "pull_request", + "workflow": { + "name": "GH-771 - Targets", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536411604, + "name": "wait", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068685, + "event": "pull_request", + "workflow": { + "name": "GH-771 - Wait", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" + } + }, + "checkRuns": { + "totalCount": 1, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWt9Q=" + }, + "nodes": [ + { + "databaseId": 25536411604, + "name": "wait", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "GH-771 - Wait", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" + }, + "workflowRun": { + "databaseId": 9281068685, + "event": "pull_request", + "workflow": { + "name": "GH-771 - Wait", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536411790, + "name": "default_logic", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068686, + "event": "pull_request", + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + } + }, + "checkRuns": { + "totalCount": 7, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" + }, + "nodes": [ + { + "databaseId": 25536411790, + "name": "default_logic", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412208, + "name": "equal_intervals", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412716, + "name": "exponential_backoff_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413112, + "name": "skip-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413531, + "name": "validation_example_basic_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413792, + "name": "validation_example_combination_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536414001, + "name": "wait-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + }, + "workflowRun": { + "databaseId": 9281068686, + "event": "pull_request", + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536412208, + "name": "equal_intervals", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068686, + "event": "pull_request", + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + } + }, + "checkRuns": { + "totalCount": 7, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" + }, + "nodes": [ + { + "databaseId": 25536411790, + "name": "default_logic", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412208, + "name": "equal_intervals", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412716, + "name": "exponential_backoff_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413112, + "name": "skip-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413531, + "name": "validation_example_basic_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413792, + "name": "validation_example_combination_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536414001, + "name": "wait-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + }, + "workflowRun": { + "databaseId": 9281068686, + "event": "pull_request", + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536412716, + "name": "exponential_backoff_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068686, + "event": "pull_request", + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + } + }, + "checkRuns": { + "totalCount": 7, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" + }, + "nodes": [ + { + "databaseId": 25536411790, + "name": "default_logic", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412208, + "name": "equal_intervals", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412716, + "name": "exponential_backoff_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413112, + "name": "skip-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413531, + "name": "validation_example_basic_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413792, + "name": "validation_example_combination_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536414001, + "name": "wait-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + }, + "workflowRun": { + "databaseId": 9281068686, + "event": "pull_request", + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536413112, + "name": "skip-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068686, + "event": "pull_request", + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + } + }, + "checkRuns": { + "totalCount": 7, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" + }, + "nodes": [ + { + "databaseId": 25536411790, + "name": "default_logic", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412208, + "name": "equal_intervals", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412716, + "name": "exponential_backoff_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413112, + "name": "skip-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413531, + "name": "validation_example_basic_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413792, + "name": "validation_example_combination_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536414001, + "name": "wait-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + }, + "workflowRun": { + "databaseId": 9281068686, + "event": "pull_request", + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536413531, + "name": "validation_example_basic_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068686, + "event": "pull_request", + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + } + }, + "checkRuns": { + "totalCount": 7, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" + }, + "nodes": [ + { + "databaseId": 25536411790, + "name": "default_logic", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412208, + "name": "equal_intervals", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412716, + "name": "exponential_backoff_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413112, + "name": "skip-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413531, + "name": "validation_example_basic_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413792, + "name": "validation_example_combination_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536414001, + "name": "wait-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + }, + "workflowRun": { + "databaseId": 9281068686, + "event": "pull_request", + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536413792, + "name": "validation_example_combination_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068686, + "event": "pull_request", + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + } + }, + "checkRuns": { + "totalCount": 7, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" + }, + "nodes": [ + { + "databaseId": 25536411790, + "name": "default_logic", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412208, + "name": "equal_intervals", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412716, + "name": "exponential_backoff_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413112, + "name": "skip-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413531, + "name": "validation_example_basic_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413792, + "name": "validation_example_combination_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536414001, + "name": "wait-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + }, + "workflowRun": { + "databaseId": 9281068686, + "event": "pull_request", + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536414001, + "name": "wait-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068686, + "event": "pull_request", + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + } + }, + "checkRuns": { + "totalCount": 7, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" + }, + "nodes": [ + { + "databaseId": 25536411790, + "name": "default_logic", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412208, + "name": "equal_intervals", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412716, + "name": "exponential_backoff_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413112, + "name": "skip-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413531, + "name": "validation_example_basic_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413792, + "name": "validation_example_combination_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536414001, + "name": "wait-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + }, + "workflowRun": { + "databaseId": 9281068686, + "event": "pull_request", + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536411358, + "name": "dependency-review", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068690, + "event": "pull_request", + "workflow": { + "name": "💂➕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" + } + }, + "checkRuns": { + "totalCount": 1, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtt4=" + }, + "nodes": [ + { + "databaseId": 25536411358, + "name": "dependency-review", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "💂➕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" + }, + "workflowRun": { + "databaseId": 9281068690, + "event": "pull_request", + "workflow": { + "name": "💂➕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" + } + } + } + ], + "elapsedMsec": 986.9570700004697 +} diff --git a/snapshots/run-9281068681/extracted/wait-success-polling7-rawdata.json b/snapshots/run-9281068681/extracted/wait-success-polling7-rawdata.json new file mode 100644 index 00000000..be0e4898 --- /dev/null +++ b/snapshots/run-9281068681/extracted/wait-success-polling7-rawdata.json @@ -0,0 +1,2141 @@ +{ + "label": "rawdata", + "checks": [ + { + "checkRun": { + "databaseId": 25536410411, + "name": "gitleaks", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068413, + "event": "push", + "workflow": { + "name": "💧", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" + } + }, + "checkRuns": { + "totalCount": 1, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWsys=" + }, + "nodes": [ + { + "databaseId": 25536410411, + "name": "gitleaks", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068413/job/25536410411", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "💧", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" + }, + "workflowRun": { + "databaseId": 9281068413, + "event": "push", + "workflow": { + "name": "💧", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536411112, + "name": "build", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068677, + "event": "pull_request", + "workflow": { + "name": "TypeScript", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" + } + }, + "checkRuns": { + "totalCount": 3, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" + }, + "nodes": [ + { + "databaseId": 25536411112, + "name": "build", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536411611, + "name": "test", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412231, + "name": "typecheck", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "TypeScript", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" + }, + "workflowRun": { + "databaseId": 9281068677, + "event": "pull_request", + "workflow": { + "name": "TypeScript", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536411611, + "name": "test", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068677, + "event": "pull_request", + "workflow": { + "name": "TypeScript", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" + } + }, + "checkRuns": { + "totalCount": 3, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" + }, + "nodes": [ + { + "databaseId": 25536411112, + "name": "build", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536411611, + "name": "test", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412231, + "name": "typecheck", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "TypeScript", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" + }, + "workflowRun": { + "databaseId": 9281068677, + "event": "pull_request", + "workflow": { + "name": "TypeScript", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536412231, + "name": "typecheck", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068677, + "event": "pull_request", + "workflow": { + "name": "TypeScript", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" + } + }, + "checkRuns": { + "totalCount": 3, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWukc=" + }, + "nodes": [ + { + "databaseId": 25536411112, + "name": "build", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411112", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536411611, + "name": "test", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536411611", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412231, + "name": "typecheck", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068677/job/25536412231", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "TypeScript", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" + }, + "workflowRun": { + "databaseId": 9281068677, + "event": "pull_request", + "workflow": { + "name": "TypeScript", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/ci.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536410993, + "name": "typos", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068676, + "event": "pull_request", + "workflow": { + "name": "👕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" + } + }, + "checkRuns": { + "totalCount": 4, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" + }, + "nodes": [ + { + "databaseId": 25536410993, + "name": "typos", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536411606, + "name": "dprint", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412217, + "name": "deno_lint", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412717, + "name": "yamlfmt", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "👕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" + }, + "workflowRun": { + "databaseId": 9281068676, + "event": "pull_request", + "workflow": { + "name": "👕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536411606, + "name": "dprint", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068676, + "event": "pull_request", + "workflow": { + "name": "👕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" + } + }, + "checkRuns": { + "totalCount": 4, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" + }, + "nodes": [ + { + "databaseId": 25536410993, + "name": "typos", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536411606, + "name": "dprint", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412217, + "name": "deno_lint", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412717, + "name": "yamlfmt", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "👕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" + }, + "workflowRun": { + "databaseId": 9281068676, + "event": "pull_request", + "workflow": { + "name": "👕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536412217, + "name": "deno_lint", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068676, + "event": "pull_request", + "workflow": { + "name": "👕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" + } + }, + "checkRuns": { + "totalCount": 4, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" + }, + "nodes": [ + { + "databaseId": 25536410993, + "name": "typos", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536411606, + "name": "dprint", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412217, + "name": "deno_lint", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412717, + "name": "yamlfmt", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "👕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" + }, + "workflowRun": { + "databaseId": 9281068676, + "event": "pull_request", + "workflow": { + "name": "👕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536412717, + "name": "yamlfmt", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068676, + "event": "pull_request", + "workflow": { + "name": "👕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" + } + }, + "checkRuns": { + "totalCount": 4, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvC0=" + }, + "nodes": [ + { + "databaseId": 25536410993, + "name": "typos", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536410993", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536411606, + "name": "dprint", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536411606", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412217, + "name": "deno_lint", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412217", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412717, + "name": "yamlfmt", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068676/job/25536412717", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "👕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" + }, + "workflowRun": { + "databaseId": 9281068676, + "event": "pull_request", + "workflow": { + "name": "👕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/lint.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536411289, + "name": "gitleaks", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068678, + "event": "pull_request", + "workflow": { + "name": "💧", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" + } + }, + "checkRuns": { + "totalCount": 1, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpk=" + }, + "nodes": [ + { + "databaseId": 25536411289, + "name": "gitleaks", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068678/job/25536411289", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "💧", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" + }, + "workflowRun": { + "databaseId": 9281068678, + "event": "pull_request", + "workflow": { + "name": "💧", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/gitleaks.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536443331, + "name": "intermediate", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "IN_PROGRESS", + "conclusion": null, + "workflowRun": { + "databaseId": 9281068681, + "event": "pull_request", + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + } + }, + "checkRuns": { + "totalCount": 6, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" + }, + "nodes": [ + { + "databaseId": 25536443331, + "name": "intermediate", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536443476, + "name": "wait-success", + "status": "IN_PROGRESS", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", + "conclusion": null + }, + { + "databaseId": 25536443631, + "name": "quickstarter-success", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536443811, + "name": "wait-fail", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", + "conclusion": "FAILURE" + }, + { + "databaseId": 25536455821, + "name": "slowstarter-fail", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", + "conclusion": "FAILURE" + }, + { + "databaseId": 25536456021, + "name": "slowstarter-success", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + }, + "workflowRun": { + "databaseId": 9281068681, + "event": "pull_request", + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536443476, + "name": "wait-success", + "status": "IN_PROGRESS", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", + "conclusion": null + }, + "checkSuite": { + "status": "IN_PROGRESS", + "conclusion": null, + "workflowRun": { + "databaseId": 9281068681, + "event": "pull_request", + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + } + }, + "checkRuns": { + "totalCount": 6, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" + }, + "nodes": [ + { + "databaseId": 25536443331, + "name": "intermediate", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536443476, + "name": "wait-success", + "status": "IN_PROGRESS", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", + "conclusion": null + }, + { + "databaseId": 25536443631, + "name": "quickstarter-success", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536443811, + "name": "wait-fail", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", + "conclusion": "FAILURE" + }, + { + "databaseId": 25536455821, + "name": "slowstarter-fail", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", + "conclusion": "FAILURE" + }, + { + "databaseId": 25536456021, + "name": "slowstarter-success", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + }, + "workflowRun": { + "databaseId": 9281068681, + "event": "pull_request", + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536443631, + "name": "quickstarter-success", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "IN_PROGRESS", + "conclusion": null, + "workflowRun": { + "databaseId": 9281068681, + "event": "pull_request", + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + } + }, + "checkRuns": { + "totalCount": 6, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" + }, + "nodes": [ + { + "databaseId": 25536443331, + "name": "intermediate", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536443476, + "name": "wait-success", + "status": "IN_PROGRESS", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", + "conclusion": null + }, + { + "databaseId": 25536443631, + "name": "quickstarter-success", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536443811, + "name": "wait-fail", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", + "conclusion": "FAILURE" + }, + { + "databaseId": 25536455821, + "name": "slowstarter-fail", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", + "conclusion": "FAILURE" + }, + { + "databaseId": 25536456021, + "name": "slowstarter-success", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + }, + "workflowRun": { + "databaseId": 9281068681, + "event": "pull_request", + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536443811, + "name": "wait-fail", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", + "conclusion": "FAILURE" + }, + "checkSuite": { + "status": "IN_PROGRESS", + "conclusion": null, + "workflowRun": { + "databaseId": 9281068681, + "event": "pull_request", + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + } + }, + "checkRuns": { + "totalCount": 6, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" + }, + "nodes": [ + { + "databaseId": 25536443331, + "name": "intermediate", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536443476, + "name": "wait-success", + "status": "IN_PROGRESS", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", + "conclusion": null + }, + { + "databaseId": 25536443631, + "name": "quickstarter-success", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536443811, + "name": "wait-fail", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", + "conclusion": "FAILURE" + }, + { + "databaseId": 25536455821, + "name": "slowstarter-fail", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", + "conclusion": "FAILURE" + }, + { + "databaseId": 25536456021, + "name": "slowstarter-success", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + }, + "workflowRun": { + "databaseId": 9281068681, + "event": "pull_request", + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536455821, + "name": "slowstarter-fail", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", + "conclusion": "FAILURE" + }, + "checkSuite": { + "status": "IN_PROGRESS", + "conclusion": null, + "workflowRun": { + "databaseId": 9281068681, + "event": "pull_request", + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + } + }, + "checkRuns": { + "totalCount": 6, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" + }, + "nodes": [ + { + "databaseId": 25536443331, + "name": "intermediate", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536443476, + "name": "wait-success", + "status": "IN_PROGRESS", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", + "conclusion": null + }, + { + "databaseId": 25536443631, + "name": "quickstarter-success", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536443811, + "name": "wait-fail", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", + "conclusion": "FAILURE" + }, + { + "databaseId": 25536455821, + "name": "slowstarter-fail", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", + "conclusion": "FAILURE" + }, + { + "databaseId": 25536456021, + "name": "slowstarter-success", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + }, + "workflowRun": { + "databaseId": 9281068681, + "event": "pull_request", + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536456021, + "name": "slowstarter-success", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "IN_PROGRESS", + "conclusion": null, + "workflowRun": { + "databaseId": 9281068681, + "event": "pull_request", + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + } + }, + "checkRuns": { + "totalCount": 6, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIXZVU=" + }, + "nodes": [ + { + "databaseId": 25536443331, + "name": "intermediate", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536443476, + "name": "wait-success", + "status": "IN_PROGRESS", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476", + "conclusion": null + }, + { + "databaseId": 25536443631, + "name": "quickstarter-success", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536443811, + "name": "wait-fail", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811", + "conclusion": "FAILURE" + }, + { + "databaseId": 25536455821, + "name": "slowstarter-fail", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821", + "conclusion": "FAILURE" + }, + { + "databaseId": 25536456021, + "name": "slowstarter-success", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + }, + "workflowRun": { + "databaseId": 9281068681, + "event": "pull_request", + "workflow": { + "name": "GH-820 - Margin for wait-list", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536411589, + "name": "judge-dependabot", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", + "conclusion": "SKIPPED" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SKIPPED", + "workflowRun": { + "databaseId": 9281068680, + "event": "pull_request", + "workflow": { + "name": "🤖👌🤖", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" + } + }, + "checkRuns": { + "totalCount": 4, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" + }, + "nodes": [ + { + "databaseId": 25536411589, + "name": "judge-dependabot", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", + "conclusion": "SKIPPED" + }, + { + "databaseId": 25536412202, + "name": "renovate", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", + "conclusion": "SKIPPED" + }, + { + "databaseId": 25536412708, + "name": "selfup-runner", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", + "conclusion": "SKIPPED" + }, + { + "databaseId": 25536413130, + "name": "dependabot", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", + "conclusion": "SKIPPED" + } + ] + } + }, + "workflow": { + "name": "🤖👌🤖", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" + }, + "workflowRun": { + "databaseId": 9281068680, + "event": "pull_request", + "workflow": { + "name": "🤖👌🤖", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536412202, + "name": "renovate", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", + "conclusion": "SKIPPED" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SKIPPED", + "workflowRun": { + "databaseId": 9281068680, + "event": "pull_request", + "workflow": { + "name": "🤖👌🤖", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" + } + }, + "checkRuns": { + "totalCount": 4, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" + }, + "nodes": [ + { + "databaseId": 25536411589, + "name": "judge-dependabot", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", + "conclusion": "SKIPPED" + }, + { + "databaseId": 25536412202, + "name": "renovate", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", + "conclusion": "SKIPPED" + }, + { + "databaseId": 25536412708, + "name": "selfup-runner", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", + "conclusion": "SKIPPED" + }, + { + "databaseId": 25536413130, + "name": "dependabot", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", + "conclusion": "SKIPPED" + } + ] + } + }, + "workflow": { + "name": "🤖👌🤖", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" + }, + "workflowRun": { + "databaseId": 9281068680, + "event": "pull_request", + "workflow": { + "name": "🤖👌🤖", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536412708, + "name": "selfup-runner", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", + "conclusion": "SKIPPED" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SKIPPED", + "workflowRun": { + "databaseId": 9281068680, + "event": "pull_request", + "workflow": { + "name": "🤖👌🤖", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" + } + }, + "checkRuns": { + "totalCount": 4, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" + }, + "nodes": [ + { + "databaseId": 25536411589, + "name": "judge-dependabot", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", + "conclusion": "SKIPPED" + }, + { + "databaseId": 25536412202, + "name": "renovate", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", + "conclusion": "SKIPPED" + }, + { + "databaseId": 25536412708, + "name": "selfup-runner", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", + "conclusion": "SKIPPED" + }, + { + "databaseId": 25536413130, + "name": "dependabot", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", + "conclusion": "SKIPPED" + } + ] + } + }, + "workflow": { + "name": "🤖👌🤖", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" + }, + "workflowRun": { + "databaseId": 9281068680, + "event": "pull_request", + "workflow": { + "name": "🤖👌🤖", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536413130, + "name": "dependabot", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", + "conclusion": "SKIPPED" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SKIPPED", + "workflowRun": { + "databaseId": 9281068680, + "event": "pull_request", + "workflow": { + "name": "🤖👌🤖", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" + } + }, + "checkRuns": { + "totalCount": 4, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWvco=" + }, + "nodes": [ + { + "databaseId": 25536411589, + "name": "judge-dependabot", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536411589", + "conclusion": "SKIPPED" + }, + { + "databaseId": 25536412202, + "name": "renovate", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412202", + "conclusion": "SKIPPED" + }, + { + "databaseId": 25536412708, + "name": "selfup-runner", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536412708", + "conclusion": "SKIPPED" + }, + { + "databaseId": 25536413130, + "name": "dependabot", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068680/job/25536413130", + "conclusion": "SKIPPED" + } + ] + } + }, + "workflow": { + "name": "🤖👌🤖", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" + }, + "workflowRun": { + "databaseId": 9281068680, + "event": "pull_request", + "workflow": { + "name": "🤖👌🤖", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/merge-bot-pr.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536411287, + "name": "echo", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068684, + "event": "pull_request", + "workflow": { + "name": "GH-771 - Targets", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" + } + }, + "checkRuns": { + "totalCount": 1, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtpc=" + }, + "nodes": [ + { + "databaseId": 25536411287, + "name": "echo", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068684/job/25536411287", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "GH-771 - Targets", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" + }, + "workflowRun": { + "databaseId": 9281068684, + "event": "pull_request", + "workflow": { + "name": "GH-771 - Targets", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-targets.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536411604, + "name": "wait", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068685, + "event": "pull_request", + "workflow": { + "name": "GH-771 - Wait", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" + } + }, + "checkRuns": { + "totalCount": 1, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWt9Q=" + }, + "nodes": [ + { + "databaseId": 25536411604, + "name": "wait", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068685/job/25536411604", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "GH-771 - Wait", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" + }, + "workflowRun": { + "databaseId": 9281068685, + "event": "pull_request", + "workflow": { + "name": "GH-771 - Wait", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/GH-771-wait.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536411790, + "name": "default_logic", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068686, + "event": "pull_request", + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + } + }, + "checkRuns": { + "totalCount": 7, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" + }, + "nodes": [ + { + "databaseId": 25536411790, + "name": "default_logic", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412208, + "name": "equal_intervals", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412716, + "name": "exponential_backoff_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413112, + "name": "skip-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413531, + "name": "validation_example_basic_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413792, + "name": "validation_example_combination_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536414001, + "name": "wait-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + }, + "workflowRun": { + "databaseId": 9281068686, + "event": "pull_request", + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536412208, + "name": "equal_intervals", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068686, + "event": "pull_request", + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + } + }, + "checkRuns": { + "totalCount": 7, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" + }, + "nodes": [ + { + "databaseId": 25536411790, + "name": "default_logic", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412208, + "name": "equal_intervals", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412716, + "name": "exponential_backoff_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413112, + "name": "skip-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413531, + "name": "validation_example_basic_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413792, + "name": "validation_example_combination_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536414001, + "name": "wait-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + }, + "workflowRun": { + "databaseId": 9281068686, + "event": "pull_request", + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536412716, + "name": "exponential_backoff_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068686, + "event": "pull_request", + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + } + }, + "checkRuns": { + "totalCount": 7, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" + }, + "nodes": [ + { + "databaseId": 25536411790, + "name": "default_logic", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412208, + "name": "equal_intervals", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412716, + "name": "exponential_backoff_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413112, + "name": "skip-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413531, + "name": "validation_example_basic_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413792, + "name": "validation_example_combination_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536414001, + "name": "wait-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + }, + "workflowRun": { + "databaseId": 9281068686, + "event": "pull_request", + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536413112, + "name": "skip-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068686, + "event": "pull_request", + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + } + }, + "checkRuns": { + "totalCount": 7, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" + }, + "nodes": [ + { + "databaseId": 25536411790, + "name": "default_logic", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412208, + "name": "equal_intervals", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412716, + "name": "exponential_backoff_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413112, + "name": "skip-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413531, + "name": "validation_example_basic_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413792, + "name": "validation_example_combination_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536414001, + "name": "wait-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + }, + "workflowRun": { + "databaseId": 9281068686, + "event": "pull_request", + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536413531, + "name": "validation_example_basic_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068686, + "event": "pull_request", + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + } + }, + "checkRuns": { + "totalCount": 7, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" + }, + "nodes": [ + { + "databaseId": 25536411790, + "name": "default_logic", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412208, + "name": "equal_intervals", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412716, + "name": "exponential_backoff_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413112, + "name": "skip-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413531, + "name": "validation_example_basic_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413792, + "name": "validation_example_combination_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536414001, + "name": "wait-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + }, + "workflowRun": { + "databaseId": 9281068686, + "event": "pull_request", + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536413792, + "name": "validation_example_combination_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068686, + "event": "pull_request", + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + } + }, + "checkRuns": { + "totalCount": 7, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" + }, + "nodes": [ + { + "databaseId": 25536411790, + "name": "default_logic", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412208, + "name": "equal_intervals", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412716, + "name": "exponential_backoff_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413112, + "name": "skip-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413531, + "name": "validation_example_basic_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413792, + "name": "validation_example_combination_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536414001, + "name": "wait-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + }, + "workflowRun": { + "databaseId": 9281068686, + "event": "pull_request", + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536414001, + "name": "wait-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068686, + "event": "pull_request", + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + } + }, + "checkRuns": { + "totalCount": 7, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWwTE=" + }, + "nodes": [ + { + "databaseId": 25536411790, + "name": "default_logic", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536411790", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412208, + "name": "equal_intervals", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412208", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536412716, + "name": "exponential_backoff_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536412716", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413112, + "name": "skip-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413112", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413531, + "name": "validation_example_basic_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413531", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536413792, + "name": "validation_example_combination_errors_allow_failure", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536413792", + "conclusion": "SUCCESS" + }, + { + "databaseId": 25536414001, + "name": "wait-list", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068686/job/25536414001", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + }, + "workflowRun": { + "databaseId": 9281068686, + "event": "pull_request", + "workflow": { + "name": "Itself", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/itself.yml" + } + } + }, + { + "checkRun": { + "databaseId": 25536411358, + "name": "dependency-review", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", + "conclusion": "SUCCESS" + }, + "checkSuite": { + "status": "COMPLETED", + "conclusion": "SUCCESS", + "workflowRun": { + "databaseId": 9281068690, + "event": "pull_request", + "workflow": { + "name": "💂➕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" + } + }, + "checkRuns": { + "totalCount": 1, + "pageInfo": { + "hasNextPage": false, + "endCursor": "Y3Vyc29yOnYyOpHPAAAABfIWtt4=" + }, + "nodes": [ + { + "databaseId": 25536411358, + "name": "dependency-review", + "status": "COMPLETED", + "detailsUrl": "https://github.com/kachick/wait-other-jobs/actions/runs/9281068690/job/25536411358", + "conclusion": "SUCCESS" + } + ] + } + }, + "workflow": { + "name": "💂➕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" + }, + "workflowRun": { + "databaseId": 9281068690, + "event": "pull_request", + "workflow": { + "name": "💂➕", + "resourcePath": "/kachick/wait-other-jobs/actions/workflows/dependency-review.yml" + } + } + } + ], + "elapsedMsec": 33880.05268900003 +} diff --git a/src/input.ts b/src/input.ts index 61462709..75c166e5 100644 --- a/src/input.ts +++ b/src/input.ts @@ -21,7 +21,7 @@ export function parseInput(): { trigger: Trigger; options: Options; githubToken: } else { if (isDebug()) { // Do not print secret even for debug code - debug(JSON.stringify(pr, null, 2)); + debug(JSON.stringify({ label: 'PullRequestContext', pr }, null, 2)); } error('github context has unexpected format: missing context.payload.pull_request.head.sha'); } diff --git a/src/main.ts b/src/main.ts index 237aba07..107e80fc 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,20 +1,41 @@ import { debug, info, setFailed, isDebug, startGroup, endGroup } from '@actions/core'; import styles from 'ansi-styles'; -const errorMessage = (body: string) => (`${styles.red.open}${body}${styles.red.close}`); -const succeededMessage = (body: string) => (`${styles.green.open}${body}${styles.green.close}`); -const colorize = (body: string, ok: boolean) => (ok ? succeededMessage(body) : errorMessage(body)); + +function colorize(severity: Severity, message: string): string { + switch (severity) { + case 'error': { + return `${styles.red.open}${message}${styles.red.close}`; + } + case 'warning': { + return `${styles.yellow.open}${message}${styles.yellow.close}`; + } + case 'notice': { + return `${styles.green.open}${message}${styles.green.close}`; + } + case 'info': { + return message; + } + default: { + const _unexpectedSeverity: never = severity; + return message; + } + } +} import { parseInput } from './input.ts'; import { fetchChecks } from './github-api.ts'; -import { generateReport } from './report.ts'; +import { Severity, generateReport, getSummaries } from './report.ts'; import { readableDuration, wait, getIdleMilliseconds } from './wait.ts'; +import { Temporal } from 'temporal-polyfill'; async function run(): Promise { + const startedAt = performance.now(); startGroup('Parameters'); const { trigger, options, githubToken } = parseInput(); info(JSON.stringify( { trigger, + startedAt, options, // Do NOT include secrets }, null, @@ -32,7 +53,7 @@ async function run(): Promise { for (;;) { attempts += 1; if (attempts > options.attemptLimits) { - setFailed(errorMessage(`reached to given attempt limits "${options.attemptLimits}"`)); + setFailed(colorize('error', `reached to given attempt limits "${options.attemptLimits}"`)); break; } @@ -46,87 +67,76 @@ async function run(): Promise { await wait(msec); } - startGroup(`Polling ${attempts}: ${(new Date()).toISOString()}`); + // Put getting elapsed time before of fetchChecks to keep accuracy of the purpose + const elapsed = Temporal.Duration.from({ milliseconds: Math.ceil(performance.now() - startedAt) }); + startGroup(`Polling ${attempts}: ${(new Date()).toISOString()}(${elapsed.toString()}) ~`); const checks = await fetchChecks(githubToken, trigger); if (isDebug()) { - debug(JSON.stringify(checks, null, 2)); + debug(JSON.stringify({ label: 'rawdata', checks, elapsed }, null, 2)); } const report = generateReport( - checks, + getSummaries(checks, trigger), trigger, + elapsed, options, ); for (const summary of report.summaries) { const { - acceptable, - checkSuiteStatus, - checkSuiteConclusion, runStatus, runConclusion, jobName, - workflowPath, + workflowBasename, checkRunUrl, eventName, + severity, } = summary; const nullStr = '(null)'; info( - `${workflowPath}(${colorize(`${jobName}`, acceptable)}): [suiteStatus: ${checkSuiteStatus}][suiteConclusion: ${ - checkSuiteConclusion ?? nullStr - }][runStatus: ${runStatus}][runConclusion: ${ + `${workflowBasename}(${ + colorize(severity, jobName) + }): [eventName: ${eventName}][runStatus: ${runStatus}][runConclusion: ${ runConclusion ?? nullStr - }][eventName: ${eventName}][runURL: ${checkRunUrl}]`, + }][runURL: ${checkRunUrl}]`, ); } if (isDebug()) { - debug(JSON.stringify(report, null, 2)); + debug(JSON.stringify({ label: 'filtered', report }, null, 2)); } - const { progress, conclusion } = report; + const { ok, done, logs } = report; - switch (progress) { - case 'in_progress': { - if (conclusion === 'bad' && options.isEarlyExit) { - shouldStop = true; - setFailed(errorMessage('some jobs failed')); - } - - info('some jobs still in progress'); - break; + for (const { severity, message, resource } of logs) { + info(colorize(severity, message)); + if ((severity != 'info') && resource) { + info(JSON.stringify(resource, null, 2)); } - case 'done': { - shouldStop = true; + } - switch (conclusion) { - case 'acceptable': { - info(succeededMessage('all jobs passed')); - break; - } - case 'bad': { - setFailed(errorMessage('some jobs failed')); - break; - } - default: { - const unexpectedConclusion: never = conclusion; - setFailed(errorMessage(`got unexpected conclusion: ${unexpectedConclusion}`)); - break; - } - } - break; - } - default: { + if (done) { + shouldStop = true; + } + if (!ok) { + if (!done && !options.isEarlyExit) { + info( + colorize('warning', 'found bad conditions, but will continue rest pollings because of disabled early-exit'), + ); + } else { shouldStop = true; - const unexpectedProgress: never = progress; - setFailed(errorMessage(`got unexpected progress: ${unexpectedProgress}`)); - break; } } endGroup(); if (shouldStop) { + if (ok) { + info(colorize('notice', 'all jobs passed')); + } else { + setFailed(colorize('error', 'failed to wait for job success')); + } + break; } } diff --git a/src/report.test.ts b/src/report.test.ts index 06599058..1fb31ee9 100644 --- a/src/report.test.ts +++ b/src/report.test.ts @@ -1,111 +1,389 @@ import test from 'node:test'; import assert from 'node:assert'; -import { snapshotChecks } from './snapshot.ts'; -import { generateReport } from './report.ts'; - -// https://stackoverflow.com/a/56162151 -function pick( - obj: T, - paths: Array, -): Pick { - const ret = Object.create({}); - for (const k of paths) { - ret[k] = obj[k]; - } - return ret; -} - -test('wait-list', () => { - const report = generateReport( - snapshotChecks, - { +import { checks8679817057, checks92810686811WaitSuccessPolling1 } from './snapshot.ts'; +import { Report, Summary, generateReport, getSummaries } from './report.ts'; +import { omit } from './util.ts'; +import { Temporal } from 'temporal-polyfill'; + +const exampleSummary = Object.freeze( + { + acceptable: false, + workflowBasename: '.github/workflows/example.yml', + isSameWorkflow: false, + + eventName: 'pull_request', + + checkSuiteStatus: 'IN_PROGRESS', + checkSuiteConclusion: 'FAILURE', + + runDatabaseId: 42, + jobName: 'An example job', + checkRunUrl: 'https://example.com', + runStatus: 'IN_PROGRESS', + runConclusion: 'FAILURE', + severity: 'error', + } satisfies Summary, +); + +test('wait-list', async (t) => { + await t.test('basics', (_t) => { + const trigger = { owner: 'kachick', repo: 'wait-other-jobs', 'runId': 8679817057, ref: '760074f4f419b55cb864030c29ece58a689a42a2', jobName: 'wait-list', eventName: 'pull_request', - }, - { - waitList: [ + }; + const report = generateReport( + getSummaries(checks8679817057, trigger), + trigger, + Temporal.Duration.from({ seconds: 420 }), + { + waitList: [ + { + 'workflowFile': 'lint.yml', + 'optional': false, + 'eventName': 'pull_request', + startupGracePeriod: { seconds: 10 }, + }, + { + 'workflowFile': 'merge-bot-pr.yml', + 'jobName': 'dependabot', + 'optional': true, + startupGracePeriod: { seconds: 10 }, + }, + { + 'workflowFile': 'THERE_ARE_NO_FILES_AS_THIS.yml', + 'optional': true, + startupGracePeriod: { seconds: 10 }, + }, + ], + skipList: [], + shouldSkipSameWorkflow: false, + }, + ); + + assert.deepStrictEqual(omit(report, ['summaries']), { + done: true, + logs: [], + ok: true, + }); + }); + + await t.test('startupGracePeriod', async (t) => { + const trigger = Object.freeze({ + owner: 'kachick', + repo: 'wait-other-jobs', + 'runId': 92810686811, + ref: '8c14d2a44d6dff4e69b0a3cacc2a14e416b44137', + jobName: 'wait-success', + eventName: 'pull_request', + }); + await t.test('required slowstarting job and set enough grace period', (_t) => { + const report = generateReport( + getSummaries(checks92810686811WaitSuccessPolling1, trigger), + trigger, + Temporal.Duration.from({ milliseconds: Math.ceil(986.9570700004697) }), { - 'workflowFile': 'lint.yml', - 'optional': false, - 'eventName': 'pull_request', + 'waitList': [ + { + 'workflowFile': 'GH-820-graceperiod.yml', + 'jobName': 'quickstarter-success', + 'optional': false, + 'startupGracePeriod': { seconds: 10 }, + }, + { + 'workflowFile': 'GH-820-graceperiod.yml', + 'jobName': 'slowstarter-success', + 'optional': false, + 'startupGracePeriod': { seconds: 60 }, + }, + ], + skipList: [], + shouldSkipSameWorkflow: false, }, + ); + + assert.deepStrictEqual(omit(report, ['summaries']), { + done: false, + logs: [ + { + message: 'some jobs still in progress', + severity: 'info', + resource: [ + { + acceptable: false, + checkRunUrl: 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631', + checkSuiteConclusion: null, + checkSuiteStatus: 'QUEUED', + eventName: 'pull_request', + isSameWorkflow: false, + jobName: 'quickstarter-success', + runConclusion: null, + runDatabaseId: 25536443631, + runStatus: 'QUEUED', + severity: 'error', + workflowBasename: 'GH-820-graceperiod.yml', + }, + ], + }, + { + message: 'Some expected jobs were not started', + resource: [ + { + found: false, + jobName: 'slowstarter-success', + optional: false, + startupGracePeriod: { + seconds: 60, + }, + workflowFile: 'GH-820-graceperiod.yml', + }, + ], + severity: 'warning', + }, + ], + ok: true, + }); + }); + + await t.test('slowstarting job has been expired to the given period', (_t) => { + const grace = Temporal.Duration.from({ seconds: 60 }); + const report = generateReport( + getSummaries(checks92810686811WaitSuccessPolling1, trigger), + trigger, + grace.add({ milliseconds: 1 }), { - 'workflowFile': 'merge-bot-pr.yml', - 'jobName': 'dependabot', - 'optional': true, + 'waitList': [ + { + 'workflowFile': 'GH-820-graceperiod.yml', + 'jobName': 'quickstarter-success', + 'optional': false, + 'startupGracePeriod': { seconds: 10 }, + }, + { + 'workflowFile': 'GH-820-graceperiod.yml', + 'jobName': 'slowstarter-success', + 'optional': false, + 'startupGracePeriod': grace.toString(), + }, + ], + skipList: [], + shouldSkipSameWorkflow: false, }, + ); + + assert.deepStrictEqual(omit(report, ['summaries']), { + done: false, + logs: [ + { + message: 'some jobs still in progress', + severity: 'info', + resource: [ + { + acceptable: false, + checkRunUrl: 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631', + checkSuiteConclusion: null, + checkSuiteStatus: 'QUEUED', + eventName: 'pull_request', + isSameWorkflow: false, + jobName: 'quickstarter-success', + runConclusion: null, + runDatabaseId: 25536443631, + runStatus: 'QUEUED', + severity: 'error', + workflowBasename: 'GH-820-graceperiod.yml', + }, + ], + }, + { + message: 'Failed to meet some runs on your specified wait-list', + resource: [ + { + found: false, + jobName: 'slowstarter-success', + optional: false, + startupGracePeriod: 'PT60S', + workflowFile: 'GH-820-graceperiod.yml', + }, + ], + severity: 'error', + }, + ], + ok: false, + }); + }); + + await t.test('judges as expired for same durations', (_t) => { + const report = generateReport( + getSummaries(checks92810686811WaitSuccessPolling1, trigger), + trigger, + Temporal.Duration.from({ seconds: 60 }), { - 'workflowFile': 'THERE_ARE_NO_FILES_AS_THIS.yml', - 'optional': true, + 'waitList': [ + { + 'workflowFile': 'GH-820-graceperiod.yml', + 'jobName': 'quickstarter-success', + 'optional': false, + 'startupGracePeriod': { seconds: 10 }, + }, + { + 'workflowFile': 'GH-820-graceperiod.yml', + 'jobName': 'slowstarter-success', + 'optional': false, + 'startupGracePeriod': { seconds: 60 }, + }, + ], + skipList: [], + shouldSkipSameWorkflow: false, }, - ], - skipList: [], - shouldSkipSameWorkflow: false, - }, - ); + ); - assert.deepStrictEqual({ - conclusion: 'acceptable', - progress: 'done', - summaries: [ - { - acceptable: true, - checkRunUrl: 'https://github.com/kachick/wait-other-jobs/actions/runs/8679817058/job/23799347237', - checkSuiteConclusion: 'SUCCESS', - checkSuiteStatus: 'COMPLETED', - isSameWorkflow: false, - jobName: 'dprint', - runConclusion: 'SUCCESS', - runDatabaseId: 23799347237, - runStatus: 'COMPLETED', - workflowPath: 'lint.yml', - eventName: 'pull_request', - }, - { - acceptable: true, - checkRunUrl: 'https://github.com/kachick/wait-other-jobs/actions/runs/8679817058/job/23799347295', - checkSuiteConclusion: 'SUCCESS', - checkSuiteStatus: 'COMPLETED', - isSameWorkflow: false, - jobName: 'typos', - runConclusion: 'SUCCESS', - runDatabaseId: 23799347295, - runStatus: 'COMPLETED', - workflowPath: 'lint.yml', - eventName: 'pull_request', - }, - { - acceptable: true, - checkRunUrl: 'https://github.com/kachick/wait-other-jobs/actions/runs/8679817059/job/23799347394', - checkSuiteConclusion: 'SKIPPED', - checkSuiteStatus: 'COMPLETED', - isSameWorkflow: false, - jobName: 'dependabot', - runConclusion: 'NEUTRAL', - runDatabaseId: 23799347394, - runStatus: 'COMPLETED', - workflowPath: 'merge-bot-pr.yml', - eventName: 'pull_request', - }, - ], - }, report); + assert.deepStrictEqual(omit(report, ['summaries']), { + done: false, + logs: [ + { + message: 'some jobs still in progress', + severity: 'info', + resource: [ + { + acceptable: false, + checkRunUrl: 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631', + checkSuiteConclusion: null, + checkSuiteStatus: 'QUEUED', + eventName: 'pull_request', + isSameWorkflow: false, + jobName: 'quickstarter-success', + runConclusion: null, + runDatabaseId: 25536443631, + runStatus: 'QUEUED', + severity: 'error', + workflowBasename: 'GH-820-graceperiod.yml', + }, + ], + }, + { + message: 'Failed to meet some runs on your specified wait-list', + resource: [ + { + found: false, + jobName: 'slowstarter-success', + optional: false, + startupGracePeriod: { + seconds: 60, + }, + workflowFile: 'GH-820-graceperiod.yml', + }, + ], + severity: 'error', + }, + ], + ok: false, + }); + }); + + await t.test('mark bad for failures even if several runs are still in progress', (_t) => { + const report = generateReport( + [{ + ...exampleSummary, + acceptable: true, + runStatus: 'COMPLETED', + workflowBasename: 'ci.yml', + jobName: 'quickstarter-success', + }, { + ...exampleSummary, + acceptable: false, + runStatus: 'COMPLETED', + workflowBasename: 'ci.yml', + jobName: 'quickstarter-fail', + }], + trigger, + Temporal.Duration.from({ minutes: 2 }), + { + 'waitList': [ + { + 'workflowFile': 'ci.yml', + 'jobName': 'quickstarter-success', + 'optional': false, + 'startupGracePeriod': { minutes: 5 }, + }, + { + 'workflowFile': 'ci.yml', + 'jobName': 'quickstarter-fail', + 'optional': false, + 'startupGracePeriod': { minutes: 5 }, + }, + { + 'workflowFile': 'ci.yml', + 'jobName': 'slowstarter-missing', + 'optional': false, + 'startupGracePeriod': { minutes: 5 }, + }, + ], + skipList: [], + shouldSkipSameWorkflow: false, + }, + ); + + assert.deepStrictEqual(omit(report, ['summaries']), { + done: false, + logs: [ + { + message: 'some jobs failed', + severity: 'error', + resource: [ + { + acceptable: false, + checkRunUrl: 'https://example.com', + checkSuiteConclusion: 'FAILURE', + checkSuiteStatus: 'IN_PROGRESS', + eventName: 'pull_request', + isSameWorkflow: false, + jobName: 'quickstarter-fail', + runConclusion: 'FAILURE', + runDatabaseId: 42, + runStatus: 'COMPLETED', + severity: 'error', + workflowBasename: 'ci.yml', + }, + ], + }, + { + message: 'Some expected jobs were not started', + resource: [ + { + found: false, + jobName: 'slowstarter-missing', + optional: false, + startupGracePeriod: { + minutes: 5, + }, + workflowFile: 'ci.yml', + }, + ], + severity: 'warning', + }, + ], + ok: false, + }); + }); + }); }); test('skip-list', () => { + const trigger = { + owner: 'kachick', + repo: 'wait-other-jobs', + 'runId': 8679817057, + ref: '760074f4f419b55cb864030c29ece58a689a42a2', + jobName: 'skip-list', + eventName: 'pull_request', + }; const report = generateReport( - snapshotChecks, - { - owner: 'kachick', - repo: 'wait-other-jobs', - 'runId': 8679817057, - ref: '760074f4f419b55cb864030c29ece58a689a42a2', - jobName: 'skip-list', - eventName: 'pull_request', - }, + getSummaries(checks8679817057, trigger), + trigger, + Temporal.Duration.from({ seconds: 420 }), { waitList: [], skipList: [ @@ -127,39 +405,9 @@ test('skip-list', () => { }, ); - assert.deepEqual({ - conclusion: 'acceptable', - progress: 'done', - summaries: [ - { - acceptable: true, - jobName: 'dprint', - workflowPath: 'lint.yml', - }, - { - acceptable: true, - jobName: 'typos', - workflowPath: 'lint.yml', - }, - { - acceptable: true, - jobName: 'judge-dependabot', - workflowPath: 'merge-bot-pr.yml', - }, - { - acceptable: true, - jobName: 'renovate', - workflowPath: 'merge-bot-pr.yml', - }, - { - acceptable: true, - jobName: 'selfup-runner', - workflowPath: 'merge-bot-pr.yml', - }, - ], - }, { - conclusion: 'acceptable', - progress: 'done', - summaries: report.summaries.map((summary) => pick(summary, ['workflowPath', 'jobName', 'acceptable'])), + assert.deepStrictEqual(omit(report, ['summaries']), { + done: true, + logs: [], + ok: true, }); }); diff --git a/src/report.ts b/src/report.ts index 38a11b8b..ab0132a5 100644 --- a/src/report.ts +++ b/src/report.ts @@ -1,10 +1,13 @@ import { CheckRun, CheckSuite, WorkflowRun } from '@octokit/graphql-schema'; -import { Check, Options, Trigger } from './schema.ts'; +import { Check, Options, Trigger, WaitList, getDuration } from './schema.ts'; import { join, relative } from 'path'; +import { Temporal } from 'temporal-polyfill'; +import { groupBy } from './util.ts'; -interface Summary { +export interface Summary { acceptable: boolean; - workflowPath: string; + severity: Severity; + workflowBasename: string; isSameWorkflow: boolean; eventName: WorkflowRun['event']; @@ -19,19 +22,16 @@ interface Summary { runConclusion: CheckRun['conclusion']; // null if status is in progress } -export interface Report { - progress: 'in_progress' | 'done'; - conclusion: 'acceptable' | 'bad'; - summaries: Summary[]; -} - function summarize(check: Check, trigger: Trigger): Summary { const { checkRun: run, checkSuite: suite, workflow, workflowRun } = check; + const acceptable = (run.conclusion == 'SUCCESS') + || (run.conclusion === 'SKIPPED') + || (run.conclusion === 'NEUTRAL' && (suite.conclusion === 'SUCCESS' || suite.conclusion === 'SKIPPED')); + return { - acceptable: run.conclusion == 'SUCCESS' || run.conclusion === 'SKIPPED' - || (run.conclusion === 'NEUTRAL' - && (suite.conclusion === 'SUCCESS' || suite.conclusion === 'SKIPPED')), - workflowPath: relative(`/${trigger.owner}/${trigger.repo}/actions/workflows/`, workflow.resourcePath), + acceptable, + severity: acceptable ? (run.status === 'COMPLETED' ? 'notice' : 'warning') : 'error', + workflowBasename: relative(`/${trigger.owner}/${trigger.repo}/actions/workflows/`, workflow.resourcePath), // Another file can set same workflow name. So you should filter workfrows from runId or the filename isSameWorkflow: suite.workflowRun?.databaseId === trigger.runId, @@ -48,56 +48,142 @@ function summarize(check: Check, trigger: Trigger): Summary { }; } +export function getSummaries(checks: readonly Check[], trigger: Trigger): Summary[] { + return checks.map((check) => summarize(check, trigger)).toSorted((a, b) => + join(a.workflowBasename, a.jobName).localeCompare(join(b.workflowBasename, b.jobName)) + ); +} + +export type Severity = 'error' | 'warning' | 'notice' | 'info'; + +interface Log { + severity: Severity; + message: string; + resource?: Summary[] | WaitList; +} + +export type Report = { + ok: boolean; + done: boolean; + logs: readonly Log[]; + summaries: readonly Summary[]; +}; + +function seekWaitList( + summaries: readonly Summary[], + waitList: WaitList, + elapsed: Temporal.Duration, +): { filtered: Summary[]; unmatches: WaitList; unstarted: WaitList } { + const seeker = waitList.map((condition) => ({ ...condition, found: false })); + const filtered = summaries.filter((summary) => + seeker.some((target) => { + const isMatchPath = target.workflowFile === summary.workflowBasename + && (target.jobName ? (target.jobName === summary.jobName) : true); + const isMatchEvent = target.eventName ? (target.eventName === summary.eventName) : true; + if (isMatchPath && isMatchEvent) { + target.found = true; + return true; + } else { + return false; + } + }) + ); + + const unmatches = seeker.filter((result) => (!(result.found)) && (!(result.optional))); + const unstarted = unmatches.filter((result) => + Temporal.Duration.compare(elapsed, getDuration(result.startupGracePeriod)) === -1 + ); + + return { filtered, unmatches, unstarted }; +} + +function judge(summaries: readonly Summary[]): { done: boolean; ok: boolean; logs: Log[] } { + const summariesByCompleted = groupBy(summaries, (summary) => summary.runStatus === 'COMPLETED'); + const completed = summariesByCompleted.get(true) || []; + const incompleted = summariesByCompleted.get(false) || []; + const done = incompleted.length === 0; + const failures = completed.filter((summary) => !summary.acceptable); + const ok = failures.length === 0; + const logs: Log[] = []; + + if (!ok) { + logs.push({ + severity: 'error', + message: 'some jobs failed', + resource: failures, + }); + } + + if (!done) { + logs.push({ + severity: 'info', + message: 'some jobs still in progress', + resource: incompleted, + }); + } + + return { + done, + ok, + logs, + }; +} + export function generateReport( - checks: readonly Check[], + summaries: readonly Summary[], trigger: Trigger, + elapsed: Temporal.Duration, { waitList, skipList, shouldSkipSameWorkflow }: Pick, ): Report { - const summaries = checks.map((check) => summarize(check, trigger)).toSorted((a, b) => - join(a.workflowPath, a.jobName).localeCompare(join(b.workflowPath, b.jobName)) - ); - const others = summaries.filter((summary) => !(summary.isSameWorkflow && (trigger.jobName === summary.jobName))); - let filtered = others.filter((summary) => !(summary.isSameWorkflow && shouldSkipSameWorkflow)); + const targets = others.filter((summary) => !(summary.isSameWorkflow && shouldSkipSameWorkflow)); if (waitList.length > 0) { - const seeker = waitList.map((condition) => ({ ...condition, found: false })); - filtered = filtered.filter((summary) => - seeker.some((target) => { - const isMatchPath = target.workflowFile === summary.workflowPath - && (target.jobName ? (target.jobName === summary.jobName) : true); - const isMatchEvent = target.eventName ? (target.eventName === summary.eventName) : true; - if (isMatchPath && isMatchEvent) { - target.found = true; - return true; - } else { - return false; - } - }) + const { filtered, unmatches, unstarted } = seekWaitList(targets, waitList, elapsed); + const { ok, done, logs } = judge(filtered); + const defaultReport = Object.freeze( + { + ok, + done, + summaries: filtered, + logs, + } satisfies Report, ); - const unmatches = seeker.filter((result) => (!(result.found)) && (!(result.optional))); - - if (unmatches.length > 0) { - throw new Error(`Failed to meet some runs on your specified wait-list: ${JSON.stringify(unmatches)}`); + if (unstarted.length > 0) { + return { + ...defaultReport, + done: false, + logs: [...logs, { + severity: 'warning', + message: 'Some expected jobs were not started', + resource: unstarted, + }], + }; + } else if (unmatches.length > 0) { + return { + ...defaultReport, + ok: false, + logs: [...logs, { + severity: 'error', + message: 'Failed to meet some runs on your specified wait-list', + resource: unmatches, + }], + }; } + + return defaultReport; } if (skipList.length > 0) { - filtered = filtered.filter((summary) => + const filtered = targets.filter((summary) => !skipList.some((target) => - target.workflowFile === summary.workflowPath && (target.jobName ? (target.jobName === summary.jobName) : true) + target.workflowFile === summary.workflowBasename + && (target.jobName ? (target.jobName === summary.jobName) : true) ) ); - } - - const completed = filtered.filter((summary) => summary.runStatus === 'COMPLETED'); - const progress: Report['progress'] = completed.length === filtered.length - ? 'done' - : 'in_progress'; - const conclusion: Report['conclusion'] = completed.every((summary) => summary.acceptable) - ? 'acceptable' - : 'bad'; + return { ...judge(filtered), summaries: filtered }; + } - return { progress, conclusion, summaries: filtered }; + return { ...judge(targets), summaries: targets }; } diff --git a/src/schema.test.ts b/src/schema.test.ts index 53eb37b3..dc24e06c 100644 --- a/src/schema.test.ts +++ b/src/schema.test.ts @@ -31,7 +31,11 @@ test('Options keep given values', () => { test('Options set some default values it cannot be defined in action.yml', () => { assert.deepStrictEqual({ ...defaultOptions, - waitList: [{ workflowFile: 'ci.yml', optional: false }], + waitList: [{ + workflowFile: 'ci.yml', + optional: false, + startupGracePeriod: { seconds: 10 }, + }], }, Options.parse({ ...defaultOptions, waitList: [{ workflowFile: 'ci.yml' }] })); }); @@ -74,3 +78,53 @@ test('Options reject invalid values', () => { }, ); }); + +test('wait-list have startupGracePeriod', async (t) => { + await t.test('it accepts DurationLike objects', (_t) => { + assert.deepStrictEqual( + { + ...defaultOptions, + waitList: [{ + workflowFile: 'ci.yml', + optional: false, + startupGracePeriod: { minutes: 5 }, + }], + }, + Options.parse({ + ...defaultOptions, + waitList: [{ workflowFile: 'ci.yml', startupGracePeriod: { minutes: 5 } }], + }), + ); + }); + + await t.test('it raises an error if given an unexpected keys', (_t) => { + assert.throws( + () => + Options.parse({ + ...defaultOptions, + waitList: [{ workflowFile: 'ci.yml', startupGracePeriod: { min: 5 } }], + }), + { + name: 'ZodError', + message: /unrecognized_key/, + }, + ); + }); + + await t.test('it parses ISO 8601 duration format', (_t) => { + assert.deepStrictEqual( + { + ...defaultOptions, + waitList: [{ + workflowFile: 'ci.yml', + optional: false, + startupGracePeriod: 'PT1M42S', + }], + }, + Options.parse({ + ...defaultOptions, + waitList: [{ workflowFile: 'ci.yml', startupGracePeriod: 'PT1M42S' }], + }), + ); + }); +}); diff --git a/src/schema.ts b/src/schema.ts index 787da62c..0a08cca1 100644 --- a/src/schema.ts +++ b/src/schema.ts @@ -1,6 +1,62 @@ import { CheckSuite, Workflow, CheckRun, WorkflowRun } from '@octokit/graphql-schema'; +import { Temporal } from 'temporal-polyfill'; import { z } from 'zod'; +// https://github.com/tc39/proposal-temporal/blob/26e4cebe3c49f56932c1d5064fec9993e981823a/polyfill/index.d.ts#L493-L504 +type DurationLike = { + years?: number; + months?: number; + weeks?: number; + days?: number; + hours?: number; + minutes?: number; + seconds?: number; + milliseconds?: number; + microseconds?: number; + nanoseconds?: number; +}; + +// Need both zod definition and actual type which used in Temporal.Duration +// This is a known zod problem with exactOptionalPropertyTypes. +// See https://github.com/colinhacks/zod/issues/635 for detail +const MyDurationLike = z.object({ + years: z.number().optional(), + months: z.number().optional(), + weeks: z.number().optional(), + days: z.number().optional(), + hours: z.number().optional(), + minutes: z.number().optional(), + seconds: z.number().optional(), + milliseconds: z.number().optional(), + microseconds: z.number().optional(), + nanoseconds: z.number().optional(), +}).strict().readonly(); + +type MyDurationLike = z.infer; + +const Durationable = z.union([z.string().duration(), MyDurationLike]); +type Dirationable = z.infer; + +// workaround for https://github.com/colinhacks/zod/issues/635 +function isDurationLike(my: MyDurationLike): my is DurationLike { + for (const [_, value] of Object.entries(my)) { + if (value === undefined) { + return false; + } + } + + return true; +} + +// workaround for https://github.com/colinhacks/zod/issues/635 +export function getDuration(durationable: Dirationable): Temporal.Duration { + if (typeof durationable === 'string' || isDurationLike(durationable)) { + return Temporal.Duration.from(durationable); + } + + throw new Error('unexpected value is specified in durations'); +} + const FilterCondition = z.object({ workflowFile: z.string().endsWith('.yml'), jobName: (z.string().min(1)).optional(), @@ -12,8 +68,12 @@ const WaitFilterCondition = FilterCondition.extend( // - Intentionally avoided to use enum for now. Only GitHub knows whole eventNames and the adding plans // - Intentionally omitted in skip-list, let me know if you have the use-case eventName: z.string().min(1).optional(), + startupGracePeriod: Durationable.default({ seconds: 10 }), }, ).readonly(); +const WaitList = z.array(WaitFilterCondition).readonly(); +const SkipList = z.array(SkipFilterCondition).readonly(); +export type WaitList = z.infer; const retryMethods = z.enum(['exponential_backoff', 'equal_intervals']); export type RetryMethod = z.infer; @@ -21,8 +81,8 @@ export type RetryMethod = z.infer; // - Do not specify default values with zod. That is an action.yml role // - Do not include secrets here, for example githubToken. See https://github.com/colinhacks/zod/issues/1783 export const Options = z.object({ - waitList: z.array(WaitFilterCondition).readonly(), - skipList: z.array(SkipFilterCondition).readonly(), + waitList: WaitList, + skipList: SkipList, waitSecondsBeforeFirstPolling: z.number().min(0), minIntervalSeconds: z.number().min(1), retryMethod: retryMethods, diff --git a/src/snapshot.ts b/src/snapshot.ts index f2d2a97e..f3697ceb 100644 --- a/src/snapshot.ts +++ b/src/snapshot.ts @@ -2,7 +2,7 @@ import { Check } from './schema.ts'; // https://github.com/kachick/wait-other-jobs/actions/runs/8679817057/job/23799347421?pr=764 // TODO: Update after #771 -export const snapshotChecks = Object.freeze([ +export const checks8679817057 = Object.freeze([ { 'checkRun': { 'databaseId': 23799347220, @@ -971,3 +971,795 @@ export const snapshotChecks = Object.freeze([ }, }, ] as Check[]); + +// https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476 +export const checks92810686811WaitSuccessPolling1 = Object.freeze([ + { + 'checkRun': { + 'databaseId': 25536443331, + 'name': 'intermediate', + 'status': 'IN_PROGRESS', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331', + 'conclusion': null, + }, + 'checkSuite': { + 'status': 'QUEUED', + 'conclusion': null, + 'workflowRun': { + 'databaseId': 9281068681, + 'event': 'pull_request', + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + }, + 'checkRuns': { + 'totalCount': 4, + 'pageInfo': { + 'hasNextPage': false, + 'endCursor': 'Y3Vyc29yOnYyOpHPAAAABfIXNaM=', + }, + 'nodes': [ + { + 'databaseId': 25536443331, + 'name': 'intermediate', + 'status': 'IN_PROGRESS', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331', + 'conclusion': null, + }, + { + 'databaseId': 25536443476, + 'name': 'wait-success', + 'status': 'IN_PROGRESS', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476', + 'conclusion': null, + }, + { + 'databaseId': 25536443631, + 'name': 'quickstarter-success', + 'status': 'QUEUED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631', + 'conclusion': null, + }, + { + 'databaseId': 25536443811, + 'name': 'wait-fail', + 'status': 'IN_PROGRESS', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811', + 'conclusion': null, + }, + ], + }, + }, + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + 'workflowRun': { + 'databaseId': 9281068681, + 'event': 'pull_request', + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + }, + }, + { + 'checkRun': { + 'databaseId': 25536443476, + 'name': 'wait-success', + 'status': 'IN_PROGRESS', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476', + 'conclusion': null, + }, + 'checkSuite': { + 'status': 'QUEUED', + 'conclusion': null, + 'workflowRun': { + 'databaseId': 9281068681, + 'event': 'pull_request', + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + }, + 'checkRuns': { + 'totalCount': 4, + 'pageInfo': { + 'hasNextPage': false, + 'endCursor': 'Y3Vyc29yOnYyOpHPAAAABfIXNaM=', + }, + 'nodes': [ + { + 'databaseId': 25536443331, + 'name': 'intermediate', + 'status': 'IN_PROGRESS', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331', + 'conclusion': null, + }, + { + 'databaseId': 25536443476, + 'name': 'wait-success', + 'status': 'IN_PROGRESS', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476', + 'conclusion': null, + }, + { + 'databaseId': 25536443631, + 'name': 'quickstarter-success', + 'status': 'QUEUED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631', + 'conclusion': null, + }, + { + 'databaseId': 25536443811, + 'name': 'wait-fail', + 'status': 'IN_PROGRESS', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811', + 'conclusion': null, + }, + ], + }, + }, + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + 'workflowRun': { + 'databaseId': 9281068681, + 'event': 'pull_request', + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + }, + }, + { + 'checkRun': { + 'databaseId': 25536443631, + 'name': 'quickstarter-success', + 'status': 'QUEUED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631', + 'conclusion': null, + }, + 'checkSuite': { + 'status': 'QUEUED', + 'conclusion': null, + 'workflowRun': { + 'databaseId': 9281068681, + 'event': 'pull_request', + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + }, + 'checkRuns': { + 'totalCount': 4, + 'pageInfo': { + 'hasNextPage': false, + 'endCursor': 'Y3Vyc29yOnYyOpHPAAAABfIXNaM=', + }, + 'nodes': [ + { + 'databaseId': 25536443331, + 'name': 'intermediate', + 'status': 'IN_PROGRESS', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331', + 'conclusion': null, + }, + { + 'databaseId': 25536443476, + 'name': 'wait-success', + 'status': 'IN_PROGRESS', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476', + 'conclusion': null, + }, + { + 'databaseId': 25536443631, + 'name': 'quickstarter-success', + 'status': 'QUEUED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631', + 'conclusion': null, + }, + { + 'databaseId': 25536443811, + 'name': 'wait-fail', + 'status': 'IN_PROGRESS', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811', + 'conclusion': null, + }, + ], + }, + }, + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + 'workflowRun': { + 'databaseId': 9281068681, + 'event': 'pull_request', + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + }, + }, + { + 'checkRun': { + 'databaseId': 25536443811, + 'name': 'wait-fail', + 'status': 'IN_PROGRESS', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811', + 'conclusion': null, + }, + 'checkSuite': { + 'status': 'QUEUED', + 'conclusion': null, + 'workflowRun': { + 'databaseId': 9281068681, + 'event': 'pull_request', + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + }, + 'checkRuns': { + 'totalCount': 4, + 'pageInfo': { + 'hasNextPage': false, + 'endCursor': 'Y3Vyc29yOnYyOpHPAAAABfIXNaM=', + }, + 'nodes': [ + { + 'databaseId': 25536443331, + 'name': 'intermediate', + 'status': 'IN_PROGRESS', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331', + 'conclusion': null, + }, + { + 'databaseId': 25536443476, + 'name': 'wait-success', + 'status': 'IN_PROGRESS', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476', + 'conclusion': null, + }, + { + 'databaseId': 25536443631, + 'name': 'quickstarter-success', + 'status': 'QUEUED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631', + 'conclusion': null, + }, + { + 'databaseId': 25536443811, + 'name': 'wait-fail', + 'status': 'IN_PROGRESS', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811', + 'conclusion': null, + }, + ], + }, + }, + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + 'workflowRun': { + 'databaseId': 9281068681, + 'event': 'pull_request', + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + }, + }, +] as Check[]); + +// https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476 +export const checks92810686811WaitSuccessPolling7 = Object.freeze([ + { + 'checkRun': { + 'databaseId': 25536443331, + 'name': 'intermediate', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331', + 'conclusion': 'SUCCESS', + }, + 'checkSuite': { + 'status': 'IN_PROGRESS', + 'conclusion': null, + 'workflowRun': { + 'databaseId': 9281068681, + 'event': 'pull_request', + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + }, + 'checkRuns': { + 'totalCount': 6, + 'pageInfo': { + 'hasNextPage': false, + 'endCursor': 'Y3Vyc29yOnYyOpHPAAAABfIXZVU=', + }, + 'nodes': [ + { + 'databaseId': 25536443331, + 'name': 'intermediate', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331', + 'conclusion': 'SUCCESS', + }, + { + 'databaseId': 25536443476, + 'name': 'wait-success', + 'status': 'IN_PROGRESS', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476', + 'conclusion': null, + }, + { + 'databaseId': 25536443631, + 'name': 'quickstarter-success', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631', + 'conclusion': 'SUCCESS', + }, + { + 'databaseId': 25536443811, + 'name': 'wait-fail', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811', + 'conclusion': 'FAILURE', + }, + { + 'databaseId': 25536455821, + 'name': 'slowstarter-fail', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821', + 'conclusion': 'FAILURE', + }, + { + 'databaseId': 25536456021, + 'name': 'slowstarter-success', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021', + 'conclusion': 'SUCCESS', + }, + ], + }, + }, + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + 'workflowRun': { + 'databaseId': 9281068681, + 'event': 'pull_request', + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + }, + }, + { + 'checkRun': { + 'databaseId': 25536443476, + 'name': 'wait-success', + 'status': 'IN_PROGRESS', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476', + 'conclusion': null, + }, + 'checkSuite': { + 'status': 'IN_PROGRESS', + 'conclusion': null, + 'workflowRun': { + 'databaseId': 9281068681, + 'event': 'pull_request', + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + }, + 'checkRuns': { + 'totalCount': 6, + 'pageInfo': { + 'hasNextPage': false, + 'endCursor': 'Y3Vyc29yOnYyOpHPAAAABfIXZVU=', + }, + 'nodes': [ + { + 'databaseId': 25536443331, + 'name': 'intermediate', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331', + 'conclusion': 'SUCCESS', + }, + { + 'databaseId': 25536443476, + 'name': 'wait-success', + 'status': 'IN_PROGRESS', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476', + 'conclusion': null, + }, + { + 'databaseId': 25536443631, + 'name': 'quickstarter-success', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631', + 'conclusion': 'SUCCESS', + }, + { + 'databaseId': 25536443811, + 'name': 'wait-fail', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811', + 'conclusion': 'FAILURE', + }, + { + 'databaseId': 25536455821, + 'name': 'slowstarter-fail', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821', + 'conclusion': 'FAILURE', + }, + { + 'databaseId': 25536456021, + 'name': 'slowstarter-success', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021', + 'conclusion': 'SUCCESS', + }, + ], + }, + }, + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + 'workflowRun': { + 'databaseId': 9281068681, + 'event': 'pull_request', + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + }, + }, + { + 'checkRun': { + 'databaseId': 25536443631, + 'name': 'quickstarter-success', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631', + 'conclusion': 'SUCCESS', + }, + 'checkSuite': { + 'status': 'IN_PROGRESS', + 'conclusion': null, + 'workflowRun': { + 'databaseId': 9281068681, + 'event': 'pull_request', + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + }, + 'checkRuns': { + 'totalCount': 6, + 'pageInfo': { + 'hasNextPage': false, + 'endCursor': 'Y3Vyc29yOnYyOpHPAAAABfIXZVU=', + }, + 'nodes': [ + { + 'databaseId': 25536443331, + 'name': 'intermediate', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331', + 'conclusion': 'SUCCESS', + }, + { + 'databaseId': 25536443476, + 'name': 'wait-success', + 'status': 'IN_PROGRESS', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476', + 'conclusion': null, + }, + { + 'databaseId': 25536443631, + 'name': 'quickstarter-success', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631', + 'conclusion': 'SUCCESS', + }, + { + 'databaseId': 25536443811, + 'name': 'wait-fail', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811', + 'conclusion': 'FAILURE', + }, + { + 'databaseId': 25536455821, + 'name': 'slowstarter-fail', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821', + 'conclusion': 'FAILURE', + }, + { + 'databaseId': 25536456021, + 'name': 'slowstarter-success', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021', + 'conclusion': 'SUCCESS', + }, + ], + }, + }, + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + 'workflowRun': { + 'databaseId': 9281068681, + 'event': 'pull_request', + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + }, + }, + { + 'checkRun': { + 'databaseId': 25536443811, + 'name': 'wait-fail', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811', + 'conclusion': 'FAILURE', + }, + 'checkSuite': { + 'status': 'IN_PROGRESS', + 'conclusion': null, + 'workflowRun': { + 'databaseId': 9281068681, + 'event': 'pull_request', + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + }, + 'checkRuns': { + 'totalCount': 6, + 'pageInfo': { + 'hasNextPage': false, + 'endCursor': 'Y3Vyc29yOnYyOpHPAAAABfIXZVU=', + }, + 'nodes': [ + { + 'databaseId': 25536443331, + 'name': 'intermediate', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331', + 'conclusion': 'SUCCESS', + }, + { + 'databaseId': 25536443476, + 'name': 'wait-success', + 'status': 'IN_PROGRESS', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476', + 'conclusion': null, + }, + { + 'databaseId': 25536443631, + 'name': 'quickstarter-success', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631', + 'conclusion': 'SUCCESS', + }, + { + 'databaseId': 25536443811, + 'name': 'wait-fail', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811', + 'conclusion': 'FAILURE', + }, + { + 'databaseId': 25536455821, + 'name': 'slowstarter-fail', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821', + 'conclusion': 'FAILURE', + }, + { + 'databaseId': 25536456021, + 'name': 'slowstarter-success', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021', + 'conclusion': 'SUCCESS', + }, + ], + }, + }, + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + 'workflowRun': { + 'databaseId': 9281068681, + 'event': 'pull_request', + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + }, + }, + { + 'checkRun': { + 'databaseId': 25536455821, + 'name': 'slowstarter-fail', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821', + 'conclusion': 'FAILURE', + }, + 'checkSuite': { + 'status': 'IN_PROGRESS', + 'conclusion': null, + 'workflowRun': { + 'databaseId': 9281068681, + 'event': 'pull_request', + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + }, + 'checkRuns': { + 'totalCount': 6, + 'pageInfo': { + 'hasNextPage': false, + 'endCursor': 'Y3Vyc29yOnYyOpHPAAAABfIXZVU=', + }, + 'nodes': [ + { + 'databaseId': 25536443331, + 'name': 'intermediate', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331', + 'conclusion': 'SUCCESS', + }, + { + 'databaseId': 25536443476, + 'name': 'wait-success', + 'status': 'IN_PROGRESS', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476', + 'conclusion': null, + }, + { + 'databaseId': 25536443631, + 'name': 'quickstarter-success', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631', + 'conclusion': 'SUCCESS', + }, + { + 'databaseId': 25536443811, + 'name': 'wait-fail', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811', + 'conclusion': 'FAILURE', + }, + { + 'databaseId': 25536455821, + 'name': 'slowstarter-fail', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821', + 'conclusion': 'FAILURE', + }, + { + 'databaseId': 25536456021, + 'name': 'slowstarter-success', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021', + 'conclusion': 'SUCCESS', + }, + ], + }, + }, + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + 'workflowRun': { + 'databaseId': 9281068681, + 'event': 'pull_request', + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + }, + }, + { + 'checkRun': { + 'databaseId': 25536456021, + 'name': 'slowstarter-success', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021', + 'conclusion': 'SUCCESS', + }, + 'checkSuite': { + 'status': 'IN_PROGRESS', + 'conclusion': null, + 'workflowRun': { + 'databaseId': 9281068681, + 'event': 'pull_request', + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + }, + 'checkRuns': { + 'totalCount': 6, + 'pageInfo': { + 'hasNextPage': false, + 'endCursor': 'Y3Vyc29yOnYyOpHPAAAABfIXZVU=', + }, + 'nodes': [ + { + 'databaseId': 25536443331, + 'name': 'intermediate', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443331', + 'conclusion': 'SUCCESS', + }, + { + 'databaseId': 25536443476, + 'name': 'wait-success', + 'status': 'IN_PROGRESS', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443476', + 'conclusion': null, + }, + { + 'databaseId': 25536443631, + 'name': 'quickstarter-success', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443631', + 'conclusion': 'SUCCESS', + }, + { + 'databaseId': 25536443811, + 'name': 'wait-fail', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536443811', + 'conclusion': 'FAILURE', + }, + { + 'databaseId': 25536455821, + 'name': 'slowstarter-fail', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536455821', + 'conclusion': 'FAILURE', + }, + { + 'databaseId': 25536456021, + 'name': 'slowstarter-success', + 'status': 'COMPLETED', + 'detailsUrl': 'https://github.com/kachick/wait-other-jobs/actions/runs/9281068681/job/25536456021', + 'conclusion': 'SUCCESS', + }, + ], + }, + }, + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + 'workflowRun': { + 'databaseId': 9281068681, + 'event': 'pull_request', + 'workflow': { + 'name': 'GH-820 - Margin for wait-list', + 'resourcePath': '/kachick/wait-other-jobs/actions/workflows/GH-820-graceperiod.yml', + }, + }, + }, +] as Check[]); diff --git a/src/util.ts b/src/util.ts new file mode 100644 index 00000000..9df8bacc --- /dev/null +++ b/src/util.ts @@ -0,0 +1,39 @@ +export function pick( + base: Readonly, + keys: Readonly, +): Pick { + const result = {} as Pick; + for (const key of keys) { + result[key] = base[key]; + } + return result; +} + +export function omit( + base: Readonly, + keys: Readonly, +): Omit { + const result = { ...base }; + for (const key of keys) { + delete result[key]; + } + return result; +} + +// TODO: Use built-in Map.groupBy() since using nodejs v21+ in the action engine +export function groupBy(items: ReadonlyArray, callback: (item: T) => K): Map> { + const map = new Map>(); + for (const item of items) { + const key = callback(item); + // Do not omit has() with get(), `udefined` might be a key + if (map.has(key)) { + const itemsForKey = map.get(key); + if (itemsForKey) { + itemsForKey.push(item); + } + } else { + map.set(key, [item]); + } + } + return map; +} diff --git a/src/wait.test.ts b/src/wait.test.ts index 14947b6b..9ea0d6bf 100644 --- a/src/wait.test.ts +++ b/src/wait.test.ts @@ -1,4 +1,3 @@ -import { performance } from 'node:perf_hooks'; import { wait, calcExponentialBackoffAndJitter,