Skip to content

Fix 'null' JSON querying (#1261) #191

Fix 'null' JSON querying (#1261)

Fix 'null' JSON querying (#1261) #191

Triggered via push September 23, 2025 14:34
Status Success
Total duration 58s
Artifacts
Fit to window
Zoom out
Zoom in

Annotations

2 errors and 4 warnings
Update
GraphqlResponseError: Request failed due to following response errors: - Something went wrong while executing your query on 2025-09-23T14:35:08Z. Please include `4828:1C7E7F:7D2355:1BE9AA1:68D2B017` when reporting this issue. at /home/runner/work/_actions/release-drafter/release-drafter/v6/dist/index.js:9482:13 at async paginate (/home/runner/work/_actions/release-drafter/release-drafter/v6/dist/index.js:194071:14) at async findCommitsWithAssociatedPullRequests (/home/runner/work/_actions/release-drafter/release-drafter/v6/dist/index.js:193868:12) at async drafter (/home/runner/work/_actions/release-drafter/release-drafter/v6/dist/index.js:193570:7) at async Promise.all (index 0) { name: 'AggregateError', event: { id: '17949610102', name: 'push', payload: { after: '556a94cdac1a1049ddc55935121d234c3ca21d90', base_ref: null, before: 'c4cf064588ac4bfed79611286c02f7a0febb4086', commits: [ { author: { email: 'mvorisek@mvorisek.cz', name: 'Michael Voříšek', username: 'mvorisek' }, committer: { email: 'noreply@github.com', name: 'GitHub', username: 'web-flow' }, distinct: true, id: '556a94cdac1a1049ddc55935121d234c3ca21d90', message: "Fix 'null' JSON querying (#1261)", timestamp: '2025-09-23T16:34:10+02:00', tree_id: '70a1c1d184da6dc9de67af4616364775ba6e61a2', url: 'https://github.com/atk4/data/commit/556a94cdac1a1049ddc55935121d234c3ca21d90' } ], compare: 'https://github.com/atk4/data/compare/c4cf064588ac...556a94cdac1a', created: false, deleted: false, forced: false, head_commit: { author: { email: 'mvorisek@mvorisek.cz', name: 'Michael Voříšek', username: 'mvorisek' }, committer: { email: 'noreply@github.com', name: 'GitHub', username: 'web-flow' }, distinct: true, id: '556a94cdac1a1049ddc55935121d234c3ca21d90', message: "Fix 'null' JSON querying (#1261)", timestamp: '2025-09-23T16:34:10+02:00', tree_id: '70a1c1d184da6dc9de67af4616364775ba6e61a2', url: 'https://github.com/atk4/data/commit/556a94cdac1a1049ddc55935121d234c3ca21d90' }, organization: { avatar_url: 'https://avatars.githubusercontent.com/u/454075?v=4', description: '', events_url: 'https://api.github.com/orgs/atk4/events', hooks_url: 'https://api.github.com/orgs/atk4/hooks', id: 454075, issues_url: 'https://api.github.com/orgs/atk4/issues', login: 'atk4', members_url: 'https://api.github.com/orgs/atk4/members{/member}', node_id: 'MDEyOk9yZ2FuaXphdGlvbjQ1NDA3NQ==', public_members_url: 'https://api.github.com/orgs/atk4/public_members{/member}', repos_url: 'https://api.github.com/orgs/atk4/repos', url: 'https://api.github.com/orgs/atk4' }, pusher: { email: 'mvorisek@mvorisek.cz', name: 'mvorisek' }, ref: 'refs/heads/develop', repository: { allow_forking: true, archive_url: 'https://api.github.com/repos/atk4/data/{archive_format}{/ref}', archived: false, assignees_url: 'https://api.github.com/repos/atk4/data/assignees{/user}', blobs_url: 'https://api.github.com/repos/atk4/data/git/blobs{/sha}', branches_url: 'https://api.github.com/repos/atk4/data/branches{/branch}', clone_url: 'https://github.com/atk4/data.git', collaborators_url: 'https://api.github.com/repos/atk4/data/collaborators{/collaborator}', comments_url: 'https://api.github.com/repos/atk4/data/comments{/number}', commits_url: 'https://api.github.com/repos/atk4/data/commits{/sha}', compare_url: 'https://api.github.com/repos/atk4/data/compare/{base}...{head}', contents_url: 'https://api.github.com/repos/atk4/data/contents/{+path}', contr
Update
Request failed due to following response errors: - Something went wrong while executing your query on 2025-09-23T14:35:08Z. Please include `4828:1C7E7F:7D2355:1BE9AA1:68D2B017` when reporting this issue. { name: 'GraphqlResponseError', id: '17949610102', request: { query: '\n' + ' query findCommitsWithAssociatedPullRequests(\n' + ' $name: String!\n' + ' $owner: String!\n' + ' $targetCommitish: String!\n' + ' $withPullRequestBody: Boolean!\n' + ' $withPullRequestURL: Boolean!\n' + ' $since: GitTimestamp\n' + ' $after: String\n' + ' $withBaseRefName: Boolean!\n' + ' $withHeadRefName: Boolean!\n' + ' $pullRequestLimit: Int!\n' + ' ) {\n' + ' repository(name: $name, owner: $owner) {\n' + ' object(expression: $targetCommitish) {\n' + ' ... on Commit {\n' + ' history(first: 100, since: $since, after: $after) {\n' + ' totalCount\n' + ' pageInfo {\n' + ' hasNextPage\n' + ' endCursor\n' + ' }\n' + ' nodes {\n' + ' id\n' + ' committedDate\n' + ' message\n' + ' author {\n' + ' name\n' + ' user {\n' + ' login\n' + ' }\n' + ' }\n' + ' associatedPullRequests(first: $pullRequestLimit) {\n' + ' nodes {\n' + ' title\n' + ' number\n' + ' url @include(if: $withPullRequestURL)\n' + ' body @include(if: $withPullRequestBody)\n' + ' author {\n' + ' login\n' + ' __typename\n' + ' url\n' + ' }\n' + ' baseRepository {\n' + ' nameWithOwner\n' + ' }\n' + ' mergedAt\n' + ' isCrossRepository\n' + ' labels(first: 100) {\n' + ' nodes {\n' + ' name\n' + ' }\n' + ' }\n' + ' merged\n' + ' baseRefName @include(if: $withBaseRefName)\n' + ' headRefName @include(if: $withHeadRefName)\n' + ' }\n' + ' }\n' + ' }\n' + ' }\n' + ' }\n' + ' }\n' + ' }\n' + ' }\n', variables: { name: 'data', owner: 'atk4', targetCommitish: 'refs/heads/develop', withPullRequestBody: false, withPullRequestURL: false, withBaseRefName: false, withHeadRefName: false, pullRequestLimit: 5, since: '2025-04-22T14:28:08Z' } }, headers: { 'access-control-allow-origin': '*', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset', 'content-encoding': 'gzip', 'content-security-policy': "default-src 'none'", 'content-type': 'application/json; charset=utf-8', date: 'Tue, 23 Sep 2025 14:35:08 GMT', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', server: 'github.com', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'transfer-encoding': 'chunked', vary: 'Accept-Encoding, Accept, X-Requested-With', 'x-content-type-options': 'nosniff', 'x-frame-options': 'deny', 'x-github-media-type': 'github.v3; format=json', 'x-github-request-id': '4828:1C7E7F:7D2355:1BE9AA
Update
"pull_request_target.edited" is not a known webhook name (https://developer.github.com/v3/activity/events/types/)
Update
"pull_request_target.synchronize" is not a known webhook name (https://developer.github.com/v3/activity/events/types/)
Update
"pull_request_target.reopened" is not a known webhook name (https://developer.github.com/v3/activity/events/types/)
Update
"pull_request_target.opened" is not a known webhook name (https://developer.github.com/v3/activity/events/types/)