From 143f89243cfe533eb0c4016ac4d17aa1aa646025 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 15 Jan 2026 11:04:58 +0000 Subject: [PATCH] Fix changelog generator parameter name from exclude-labels to excludeLabels The action janheinrichmerker/action-github-changelog-generator@v2.3 expects camelCase parameter names. Changed 'exclude-labels' to 'excludeLabels' in both nightly.yml and release.yml to fix the nightly release action failure. Co-authored-by: softhack007 <91616163+softhack007@users.noreply.github.com> --- .github/workflows/nightly.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 0a1edd9d..aa64a42a 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -30,7 +30,7 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} sinceTag: v14.7.1 # Exclude issues that were closed without resolution from changelog - exclude-labels: 'stale,wontfix,duplicate,invalid' + 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 a6b92a09..38705d15 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,7 +26,7 @@ jobs: sinceTag: v14.7.1 maxIssues: 500 # Exclude issues that were closed without resolution from changelog - exclude-labels: 'stale,wontfix,duplicate,invalid' + excludeLabels: 'stale,wontfix,duplicate,invalid' - name: Create draft release uses: softprops/action-gh-release@v1 with: