Skip to content

Commit 46df941

Browse files
authored
Merge pull request wled#4900 from wled/copilot/fix-4881
Fix changelog generation to exclude unresolved closed issues
2 parents 666a59f + b7e4cd0 commit 46df941

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+
exclude-labels: '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+
exclude-labels: 'stale,wontfix,duplicate,invalid'
2830
- name: Create draft release
2931
uses: softprops/action-gh-release@v1
3032
with:

0 commit comments

Comments
 (0)