Set EFI_MEMORY_SP as System Memory (#886) #1
release-draft.yml
on: push
draft
/
Update Release Draft
6m 24s
Annotations
2 errors and 2 warnings
draft / Update Release Draft
Request failed due to following response errors:
- Something went wrong while executing your query. Please include `58C2:225BD2:6C6AB4:C1199C:667316F6` when reporting this issue.
{
name: 'GraphqlResponseError',
id: '9586068371',
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' +
' ) {\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: 5) {\n' +
' nodes {\n' +
' title\n' +
' number\n' +
' url @include(if: $withPullRequestURL)\n' +
' body @include(if: $withPullRequestBody)\n' +
' author {\n' +
' login\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: 'mu_basecore',
owner: 'v-bhavanisu',
targetCommitish: 'refs/heads/release/202208',
withPullRequestBody: true,
withPullRequestURL: false,
withBaseRefName: false,
withHeadRefName: false,
after: '3ab3d78b0d51d5aa5efc45d9f12a74d79bf4be62 7499'
}
},
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',
connection: 'close',
'content-encoding': 'gzip',
'content-security-policy': "default-src 'none'",
'content-type': 'application/json; charset=utf-8',
date: 'Wed, 19 Jun 2024 17:35:54 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': '58C2:225BD2:6C6AB4:C1199C:667316F6',
'x-ratelimit-limit': '5000',
'x-ratelimit-remaining': '4544',
'x-ratelimit-reset': '1718821774
|
draft / Update Release Draft
GraphqlResponseError: Request failed due to following response errors:
- Something went wrong while executing your query. Please include `58C2:225BD2:6C6AB4:C1199C:667316F6` when reporting this issue.
at /home/runner/work/_actions/release-drafter/release-drafter/v5.25.0/dist/index.js:6088:13
at async paginate (/home/runner/work/_actions/release-drafter/release-drafter/v5.25.0/dist/index.js:142895:21)
at async findCommitsWithAssociatedPullRequests (/home/runner/work/_actions/release-drafter/release-drafter/v5.25.0/dist/index.js:142688:12)
at async drafter (/home/runner/work/_actions/release-drafter/release-drafter/v5.25.0/dist/index.js:142380:7)
at async Promise.all (index 0)
{
name: 'AggregateError',
event: {
id: '9586068371',
name: 'push',
payload: {
after: '093cb0ead876e418a67e409cc2e056f9fd3f39b7',
base_ref: null,
before: '8af8b99933766f2f7ec712d14f1cbcee40cb53dc',
commits: [
{
author: {
email: '[email protected]',
name: 'Taylor Beebe',
username: 'TaylorBeebe'
},
committer: {
email: '[email protected]',
name: 'Taylor Beebe',
username: 'TaylorBeebe'
},
distinct: true,
id: '42269608054404398eae881aff0c64541df87ccb',
message: 'Generate Random Stack Cookie Values in Module Build Path (#825)\n' +
'\n' +
'## Description\r\n' +
'\r\n' +
'If only a single module was being built instead of a platform DSC, the\r\n' +
'build scripts would not generate the random stack cookie values. On\r\n' +
'clean builds, this causes an error to be reported during the autogen\r\n' +
'process.\r\n' +
'\r\n' +
'This PR updates build.py so the code path taken on module builds will\r\n' +
'generate the random stack cookie values.\r\n' +
'\r\n' +
'- [x] Impacts functionality?\r\n' +
'- **Functionality** - Does the change ultimately impact how firmware\r\n' +
'functions?\r\n' +
'- Examples: Add a new library, publish a new PPI, update an algorithm,\r\n' +
'...\r\n' +
'- [ ] Impacts security?\r\n' +
'- **Security** - Does the change have a direct security impact on an\r\n' +
'application,\r\n' +
' flow, or firmware?\r\n' +
' - Examples: Crypto algorithm change, buffer overflow fix, parameter\r\n' +
' validation improvement, ...\r\n' +
'- [ ] Breaking change?\r\n' +
'- **Breaking change** - Will anyone consuming this change experience a\r\n' +
'break\r\n' +
' in build or boot behavior?\r\n' +
'- Examples: Add a new library class, move a module to a different repo,\r\n' +
'call\r\n' +
' a function in a new library class in a pre-existing module, ...\r\n' +
'- [ ] Includes tests?\r\n' +
' - **Tests** - Does the change include any explicit test code?\r\n' +
' - Examples: Unit tests, integration tests, robot tests, ...\r\n' +
'- [ ] Includes documentation?\r\n' +
'- **Documentation** - Does the change contain explicit documentation\r\n' +
'additions\r\n' +
' outside direct code modifications (and comments)?\r\n' +
'- Examples: Update readme file, add feature readme file, link to\r\n' +
'documentation\r\n' +
' on an a separate Web page, ...\r\n' +
'\r\n' +
'## How This Was Tested\r\n' +
'\r\n' +
'Tested by specifying a build module on Q35.\r\n' +
'\r\n' +
'## Integration Instructions\r\n' +
'\r\n' +
'N/A',
timestamp: '2024-04-24T16:23:40-07:00',
tree_id: 'c6e06615d0810698578e2a
|
draft / Update Release Draft
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: release-drafter/[email protected]. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
draft / Update Release Draft
Abuse limit hit with "POST /graphql", retrying in 60 seconds.
{ name: 'octokit' }
|