Skip to content

Job History Service (#814) #279

Job History Service (#814)

Job History Service (#814) #279

Triggered via push August 21, 2025 14:15
Status Success
Total duration 1m 3s
Artifacts
Update draft release notes
59s
Update draft release notes
Fit to window
Zoom out
Zoom in

Annotations

2 errors and 4 warnings
Update draft release notes
HttpError: <html> <head><title>502 Bad Gateway</title></head> <body> <center><h1>502 Bad Gateway</h1></center> <hr><center>nginx</center> </body> </html> at /home/runner/work/_actions/release-drafter/release-drafter/v6/dist/index.js:7146:21 at process.processTicksAndRejections (node:internal/process/task_queues:95:5) at async Job.doExecute (/home/runner/work/_actions/release-drafter/release-drafter/v6/dist/index.js:61885:18) { name: 'AggregateError', event: { id: '17129584945', name: 'push', payload: { after: '1a6dbf44a5729de92f9ba01600ebe752e333bbfa', base_ref: null, before: '4ef133e84c42cf1756edaad3d334beacd6bc1557', commits: [ { author: { email: '[email protected]', name: 'Jeremy Dupras', username: 'Jeremydupras' }, committer: { email: '[email protected]', name: 'GitHub', username: 'web-flow' }, distinct: true, id: '1a6dbf44a5729de92f9ba01600ebe752e333bbfa', message: 'Job History Service (#814)\n' + '\n' + '* adding descheduled jobs\n' + '\n' + 'Signed-off-by: Jeremy Dupras <[email protected]>\n' + '\n' + '* adding job history service\n' + '\n' + 'Signed-off-by: Jeremy Dupras <[email protected]>\n' + '\n' + '* adding settings\n' + '\n' + 'Signed-off-by: Jeremy Dupras <[email protected]>\n' + '\n' + '* changing to Integer\n' + '\n' + 'Signed-off-by: Jeremy Dupras <[email protected]>\n' + '\n' + '* adding tests, status fix\n' + '\n' + 'Signed-off-by: Jeremy Dupras <[email protected]>\n' + '\n' + '* changing history service to be integrated with lock service\n' + '\n' + 'Signed-off-by: Jeremy Dupras <[email protected]>\n' + '\n' + '* reverting lockServiceIT\n' + '\n' + 'Signed-off-by: Jeremy Dupras <[email protected]>\n' + '\n' + '* spotlessapply and codecov\n' + '\n' + 'Signed-off-by: Jeremy Dupras <[email protected]>\n' + '\n' + '* setting history Service default to false\n' + '\n' + 'Signed-off-by: Jeremy Dupras <[email protected]>\n' + '\n' + '* fising test\n' + '\n' + 'Signed-off-by: Jeremy Dupras <[email protected]>\n' + '\n' + '* spi spotlessapply\n' + '\n' + 'Signed-off-by: Jeremy Dupras <[email protected]>\n' + '\n' + '* codecov\n' + '\n' + 'Signed-off-by: Jeremy Dupras <[email protected]>\n' + '\n' + '* addressing comments\n' + '\n' + 'Signed-off-by: Jeremy Dupras <[email protected]>\n' + '\n' + '* rerun tests\n' + '\n' + 'Signed-off-by: Jeremy Dupras <[email protected]>\n' + '\n' + '* rerun tests\n' + '\n' + 'Signed-off-by: Jeremy Dupras <[email protected]>\n' + '\n' + '* changes\n' + '\n' + 'Signed-off-by: Jeremy Dupras <[email protected]>\n' + '\n' + '* changing default value\n' + '\n' + 'Signed-off-by: Jeremy Dupras <[email protected]>\n' + '\n' + '* Trigger Tests\n' + '\n' + 'Signed-off-by: Jeremy Dupras <[email protected]>\n' + '\n' + '* making changes\n' + '\n' + 'Signed-off-by: Jeremy Dupras <[email protected]>\n' + '\n' + '* fixing tests and addressing comments\n' + '\n' +
Update draft release notes
<html> <head><title>502 Bad Gateway</title></head> <body> <center><h1>502 Bad Gateway</h1></center> <hr><center>nginx</center> </body> </html> { name: 'HttpError', id: '17129584945', status: 502, response: { url: 'https://api.github.com/graphql', status: 502, headers: { 'content-length': '150', 'content-type': 'text/html', date: 'Thu, 21 Aug 2025 14:16:07 GMT', server: 'github.com', vary: 'Accept-Encoding, Accept, X-Requested-With', 'x-github-request-id': 'F808:313D12:1C76EA:66ECB5:68A72A1C' }, data: '<html>\r\n' + '<head><title>502 Bad Gateway</title></head>\r\n' + '<body>\r\n' + '<center><h1>502 Bad Gateway</h1></center>\r\n' + '<hr><center>nginx</center>\r\n' + '</body>\r\n' + '</html>\r\n' }, request: { method: 'POST', url: 'https://api.github.com/graphql', headers: { accept: 'application/vnd.github.v3+json', 'user-agent': 'probot/12.4.0 octokit-core.js/3.6.0 Node.js/20.19.4 (linux; x64)', 'x-github-delivery': '17129584945', authorization: 'token [REDACTED]', 'content-type': 'application/json; charset=utf-8' }, body: '{"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":"job-scheduler","owner":"opensearch-project","targetCommitish":"refs/heads/main","withPullRequestBody":false,"withPullRequestURL":true,"withBaseRefName":false,"withHeadRefName":false,"pullRequestLimit":5,"since":"2024-09-05T20:13:58Z"}}', request: { retryCount: 3, retries: 3, retryAfter: 16 } }, event: { id: '17129584945', name: 'push', payload: { after: '1a6dbf44a5729de92f9ba01600ebe752e333bbfa', base_ref: null, before: '4ef133e84c42cf1756edaad3d334beacd6bc1557', commits: [ { author: { email: '[email protected]', name: 'Jeremy Dupras', username: 'Jeremydupras' }, committer: { email: '[email protected]', name: 'GitHub', username: 'web-flow' }, distinct: true, id: '1a6dbf44a5729de92f9ba01600ebe752e333bbfa', message: 'Job History Service (#814)\n' + '\n' +
Update draft release notes
"pull_request_target.edited" is not a known webhook name (https://developer.github.com/v3/activity/events/types/)
Update draft release notes
"pull_request_target.synchronize" is not a known webhook name (https://developer.github.com/v3/activity/events/types/)
Update draft release notes
"pull_request_target.reopened" is not a known webhook name (https://developer.github.com/v3/activity/events/types/)
Update draft release notes
"pull_request_target.opened" is not a known webhook name (https://developer.github.com/v3/activity/events/types/)