Skip to content

Commit

Permalink
Create Github releases with empty body for now (#10448)
Browse files Browse the repository at this point in the history
## Problem
When releasing `release-7574`, the Github Release creation failed with
"body is too long" (see
https://github.com/neondatabase/neon/actions/runs/12834025431/job/35792346745#step:5:77).
There's lots of room for improvement of the release notes, but for now
we'll disable them instead.

## Summary of changes
- Disable automatic generation of release notes for Github releases
- Enable creation of Github releases for proxy/compute
  • Loading branch information
jcgruenhage authored Jan 21, 2025
1 parent 2ab9f69 commit 624a507
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1078,12 +1078,6 @@ jobs:
console.log(`Tag ${tag} created successfully.`);
}
// TODO: check how GitHub releases looks for proxy/compute releases and enable them if they're ok
if (context.ref !== 'refs/heads/release') {
console.log(`GitHub release skipped for ${context.ref}.`);
return;
}
try {
const existingRelease = await github.rest.repos.getReleaseByTag({
owner: context.repo.owner,
Expand All @@ -1102,7 +1096,8 @@ jobs:
owner: context.repo.owner,
repo: context.repo.repo,
tag_name: tag,
generate_release_notes: true,
// TODO: Automate release notes properly
generate_release_notes: false,
});
console.log(`Release for tag ${tag} created successfully.`);
}
Expand Down

1 comment on commit 624a507

@github-actions
Copy link

@github-actions github-actions bot commented on 624a507 Jan 21, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

6867 tests run: 6494 passed, 0 failed, 373 skipped (full report)


Flaky tests (7)

Postgres 17

Postgres 16

Postgres 14

Code coverage* (full report)

  • functions: 33.7% (8452 of 25111 functions)
  • lines: 49.2% (70828 of 143967 lines)

* collected from Rust tests only


The comment gets automatically updated with the latest test results
624a507 at 2025-01-21T16:23:53.500Z :recycle:

Please sign in to comment.