Skip to content

Commit

Permalink
set release
Browse files Browse the repository at this point in the history
  • Loading branch information
dleviminzi committed Sep 26, 2024
1 parent 50322cb commit 388c736
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/release-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,18 @@ jobs:
}
const isRelease = context.eventName === 'release';
let release;
if (isRelease) {
const release = context.payload.release;
release = context.payload.release;
} else {
const release = {
release = {
name: 'test v1.0.0',
body: '## What\'s Changed\n* Feat: Add index for task by @jsun-m in https://github.com/beam-cloud/beta9/pull/540\n* Fix: stop container endpoint by @dleviminzi in https://github.com/beam-cloud/beta9/pull/546\n* Fix: Don\'t scale up stopped serves by @dleviminzi in https://github.com/beam-cloud/beta9/pull/539\n* Feat: Ignore patterns like git by @dleviminzi in https://github.com/beam-cloud/beta9/pull/538\n* Fix: Hanging build container by @luke-lombardi in https://github.com/beam-cloud/beta9/pull/549\n* Fix: Remove serve lock when connection is lost for task queue serve by @dleviminzi in https://github.com/beam-cloud/beta9/pull/550\n* Revert "ignore patterns like git (#538)" by @dleviminzi in https://github.com/beam-cloud/beta9/pull/551\n\n**Full Changelog**: https://github.com/beam-cloud/beta9/compare/gateway-0.1.200...gateway-0.1.201',
created_at: '2024-09-25'
}
}
const lines = release.body.split('\n');
const feats = [];
Expand Down

0 comments on commit 388c736

Please sign in to comment.