Skip to content

Commit 0becd61

Browse files
Copilotnetmindz
andcommitted
Fix changelog generation to exclude unresolved closed issues
Co-authored-by: netmindz <[email protected]>
1 parent 3f2e92c commit 0becd61

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/nightly.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ jobs:
2727
with:
2828
token: ${{ secrets.GITHUB_TOKEN }}
2929
sinceTag: v0.15.0
30+
# Exclude issues that were closed without resolution from changelog
31+
excludeLabels: 'stale,wontfix,duplicate,invalid'
3032
- name: Update Nightly Release
3133
uses: andelf/nightly-release@main
3234
env:

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ jobs:
2424
with:
2525
token: ${{ secrets.GITHUB_TOKEN }}
2626
sinceTag: v0.15.0
27-
maxIssues: 500
27+
maxIssues: 500
28+
# Exclude issues that were closed without resolution from changelog
29+
excludeLabels: 'stale,wontfix,duplicate,invalid'
2830
- name: Create draft release
2931
uses: softprops/action-gh-release@v1
3032
with:

0 commit comments

Comments
 (0)