Skip to content

Create grace-boot-cache module #1437

Create grace-boot-cache module

Create grace-boot-cache module #1437

Triggered via push December 26, 2025 08:12
Status Success
Total duration 22m 3s
Artifacts
Fit to window
Zoom out
Zoom in

Annotations

2 errors and 6 warnings
release_notes
GraphqlResponseError: Request failed due to following response errors: - Something went wrong while executing your query on 2025-12-26T08:34:34Z. Please include `C941:1A13B0:61A462:195AF3C:694E489A` 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:194090:21) at async findCommitsWithAssociatedPullRequests (/home/runner/work/_actions/release-drafter/release-drafter/v6/dist/index.js:193882: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: '20518955894', name: 'push', payload: { after: '0fdd6c6cfa0f52dbac71a459574cafa11d749be3', base_ref: null, before: '7e00afb84c2c48503fc74d35798359447971f13c', commits: [ { author: { email: '[email protected]', name: 'Michael Yan', username: 'rainboyan' }, committer: { email: '[email protected]', name: 'Michael Yan', username: 'rainboyan' }, distinct: true, id: '0fdd6c6cfa0f52dbac71a459574cafa11d749be3', message: 'Create grace-boot-cache module\n\nCloses gh-1208', timestamp: '2025-12-26T16:12:21+08:00', tree_id: '614df8b7bd4ea429f1f8088c897e8511ec1daa0a', url: 'https://github.com/graceframework/grace-framework/commit/0fdd6c6cfa0f52dbac71a459574cafa11d749be3' } ], compare: 'https://github.com/graceframework/grace-framework/compare/7e00afb84c2c...0fdd6c6cfa0f', created: false, deleted: false, forced: false, head_commit: { author: { email: '[email protected]', name: 'Michael Yan', username: 'rainboyan' }, committer: { email: '[email protected]', name: 'Michael Yan', username: 'rainboyan' }, distinct: true, id: '0fdd6c6cfa0f52dbac71a459574cafa11d749be3', message: 'Create grace-boot-cache module\n\nCloses gh-1208', timestamp: '2025-12-26T16:12:21+08:00', tree_id: '614df8b7bd4ea429f1f8088c897e8511ec1daa0a', url: 'https://github.com/graceframework/grace-framework/commit/0fdd6c6cfa0f52dbac71a459574cafa11d749be3' }, organization: { avatar_url: 'https://avatars.githubusercontent.com/u/7546199?v=4', description: '', events_url: 'https://api.github.com/orgs/graceframework/events', hooks_url: 'https://api.github.com/orgs/graceframework/hooks', id: 7546199, issues_url: 'https://api.github.com/orgs/graceframework/issues', login: 'graceframework', members_url: 'https://api.github.com/orgs/graceframework/members{/member}', node_id: 'MDEyOk9yZ2FuaXphdGlvbjc1NDYxOTk=', public_members_url: 'https://api.github.com/orgs/graceframework/public_members{/member}', repos_url: 'https://api.github.com/orgs/graceframework/repos', url: 'https://api.github.com/orgs/graceframework' }, pusher: { email: '[email protected]', name: 'rainboyan' }, ref: 'refs/heads/2024.0.x', repository: { allow_forking: true, archive_url: 'https://api.github.com/repos/graceframework/grace-framework/{archive_format}{/ref}', archived: false, assignees_url: 'https://api.github.com/repos/graceframework/grace-framework/assignees{/user}', blobs_url: 'https://api.github.com/repos/graceframework/grace-framework/git/blobs{/sha}', branches_url: 'https://api.github.com/repos/graceframework/grace-framework/branches{/branch}', clone_url: 'https://github.com/graceframework/grace-framework.git', collaborators_url: 'https://api.github.com/repos/graceframework/grace-framework/collaborators{/collaborator}', comments_url: 'https://api.g
release_notes
Request failed due to following response errors: - Something went wrong while executing your query on 2025-12-26T08:34:34Z. Please include `C941:1A13B0:61A462:195AF3C:694E489A` when reporting this issue. { name: 'GraphqlResponseError', id: '20518955894', 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: 'grace-framework', owner: 'graceframework', targetCommitish: '2024.0.x', withPullRequestBody: false, withPullRequestURL: false, withBaseRefName: false, withHeadRefName: false, pullRequestLimit: 5, after: '0fdd6c6cfa0f52dbac71a459574cafa11d749be3 23699' } }, 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: 'Fri, 26 Dec 2025 08:34:34 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-re
release_notes
"pull_request_target.edited" is not a known webhook name (https://developer.github.com/v3/activity/events/types/)
release_notes
"pull_request_target.synchronize" is not a known webhook name (https://developer.github.com/v3/activity/events/types/)
release_notes
"pull_request_target.reopened" is not a known webhook name (https://developer.github.com/v3/activity/events/types/)
release_notes
"pull_request_target.opened" is not a known webhook name (https://developer.github.com/v3/activity/events/types/)
release_notes
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
release_notes
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/