diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 818ab94e..3033f3d4 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -27,6 +27,8 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} sinceTag: v0.15.0 + # Exclude issues that were closed without resolution from changelog + excludeLabels: 'stale,wontfix,duplicate,invalid' - name: Update Nightly Release uses: andelf/nightly-release@main env: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9080c5e0..b0684d78 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,9 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} sinceTag: v0.15.0 - maxIssues: 500 + maxIssues: 500 + # Exclude issues that were closed without resolution from changelog + excludeLabels: 'stale,wontfix,duplicate,invalid' - name: Create draft release uses: softprops/action-gh-release@v1 with: