Skip to content

Commit b355a49

Browse files
NickChungSUSEa110605houhoucoop
authored
feat: test release workflow final (#40)
* feat: CPU / Memory hotplug support (#413) * feat: add maxCPU and maxMemory Signed-off-by: Andy Lee <andy.lee@suse.com> * feat: add hotplug dialog Signed-off-by: Andy Lee <andy.lee@suse.com> * feat: add restart message Signed-off-by: Andy Lee <andy.lee@suse.com> * feat: let VM template support cpuMemoryHotplug Signed-off-by: Andy Lee <andy.lee@suse.com> * feat: add feature flag Signed-off-by: Andy Lee <andy.lee@suse.com> * feat: add max-hotplug-ratio setting Signed-off-by: Andy Lee <andy.lee@suse.com> --------- Signed-off-by: Andy Lee <andy.lee@suse.com> * chore: bump version to 1.6.0-rc3 (#420) Signed-off-by: Andy Lee <andy.lee@suse.com> * fix: exception error (#422) Signed-off-by: Yi-Ya Chen <yiya.chen@suse.com> * feat: expose CDI settings (#418) * feat: add cdi settings tab Signed-off-by: Yi-Ya Chen <yiya.chen@suse.com> * feat: basic layout Signed-off-by: Yi-Ya Chen <yiya.chen@suse.com> * feat: add fields mutation Signed-off-by: Yi-Ya Chen <yiya.chen@suse.com> * refactor: rename keys Signed-off-by: Yi-Ya Chen <yiya.chen@suse.com> * refactor: add edit mode Signed-off-by: Yi-Ya Chen <yiya.chen@suse.com> * refactor: remove isCreate Signed-off-by: Yi-Ya Chen <yiya.chen@suse.com> * feat: filter volume mode options Signed-off-by: Yi-Ya Chen <yiya.chen@suse.com> --------- Signed-off-by: Yi-Ya Chen <yiya.chen@suse.com> Co-authored-by: Andy Lee <andy.lee@suse.com> * feat: add runStragety field when cloning a VM (#424) * feat: add runStragety field when cloning a VM Signed-off-by: Andy Lee <andy.lee@suse.com> * refactor: remove unneeded change Signed-off-by: Andy Lee <andy.lee@suse.com> --------- Signed-off-by: Andy Lee <andy.lee@suse.com> * refactor: filter anchor link in setting description when searching (#428) Signed-off-by: Andy Lee <andy.lee@suse.com> * chore: upgrade rancher/shell to 3.0.5-rc.7 (#429) Signed-off-by: Andy Lee <andy.lee@suse.com> * feat: Improve readability of harvester-ui-extension release notes Signed-off-by: Nick Chung <nick.chung@suse.com> * feat: add test feature for final release workflow (#38) Signed-off-by: Nick Chung <nick.chung@suse.com> --------- Signed-off-by: Andy Lee <andy.lee@suse.com> Signed-off-by: Yi-Ya Chen <yiya.chen@suse.com> Signed-off-by: Nick Chung <nick.chung@suse.com> Signed-off-by: Nick Chung <Nick.Chung@suse.com> Co-authored-by: Andy Lee <andy.lee@suse.com> Co-authored-by: Yiya Chen <yiya.chen@suse.com>
1 parent a876910 commit b355a49

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

.github/workflows/draft-release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ jobs:
2727
- name: Generate changelog
2828
run: npx conventional-changelog -p angular -i CHANGELOG.md -s -r 0
2929

30+
- name: Debug changelog content
31+
run: cat CHANGELOG.md
32+
3033
- name: Add original authors
3134
run: node scripts/add-original-authors.js
3235
env:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
## [1.6.4] - 2025-01-XX
2+
3+
### Features
4+
* feat: test release workflow final (#39) - Author: PR not found (merged by mergify[bot]) (a876910), closes #413

scripts/add-original-authors.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,11 @@ function extractPRNumbers(changelogContent) {
8181
prNumbers.add(parseInt(match[1]));
8282
}
8383

84+
// eslint-disable-next-line no-console
85+
console.log('Changelog content:', changelogContent);
86+
// eslint-disable-next-line no-console
87+
console.log('All matches found:', changelogContent.match(/\(#\d+\)/g));
88+
8489
return prNumbers;
8590
}
8691

0 commit comments

Comments
 (0)