From 96f1a1ee8cb96be52b6d48347e83b81109201ba0 Mon Sep 17 00:00:00 2001 From: nxships <2096086+nxships@users.noreply.github.com> Date: Mon, 25 May 2026 14:41:20 +0200 Subject: [PATCH] ci(release): expand internal NexusKit dependency changelog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Calls the new composite action in NexusFFXIV/.github after the softprops/action-gh-release step to append a 'Internal Dependency Changes' section. NexusKit has no internal deps today, so the action is a no-op here — kept for org-wide consistency. Continues on error to avoid breaking a release. --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0c8c5f3..82a5c19 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -84,3 +84,10 @@ jobs: ./artifacts/*.snupkg generate_release_notes: true prerelease: ${{ contains(github.ref_name, '-') }} + + - name: Expand internal dependency changelog + if: startsWith(github.ref, 'refs/tags/v') + continue-on-error: true + uses: NexusFFXIV/.github/.github/actions/expand-internal-deps-changelog@main + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}