From a298a2b8c95b0e1a85cea74e54af59ef34f81bf3 Mon Sep 17 00:00:00 2001 From: Josh Cummings <3627351+jzheaux@users.noreply.github.com> Date: Thu, 30 Jul 2026 08:32:57 -0600 Subject: [PATCH] Add Release Announcement Workflows This commit adds a workflow for staging release announcements. It is activated when a tag is created on the repo, which will privately stage any needed release announcements. Signed-off-by: Josh Cummings <3627351+jzheaux@users.noreply.github.com> --- .../workflows/release-announcements-stage.yml | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/release-announcements-stage.yml diff --git a/.github/workflows/release-announcements-stage.yml b/.github/workflows/release-announcements-stage.yml new file mode 100644 index 0000000000..17209f3f52 --- /dev/null +++ b/.github/workflows/release-announcements-stage.yml @@ -0,0 +1,24 @@ +name: Release Announcements - Stage + +on: + push: + tags: + - '[0-9]+.[0-9]+.[0-9]+' + - '[0-9]+.[0-9]+.[0-9]+.[0-9]+' + workflow_dispatch: + inputs: + version: + description: The version to stage + required: true + type: string + +permissions: + contents: read + +jobs: + stage-release-announcements: + name: Stage Release Announcements + uses: spring-projects/spring-security-commercial/.github/workflows/release-announcements-stage.yml@workflows/v1 + with: + version: ${{ inputs.version || github.ref_name }} + secrets: inherit