From 8626c1dd157bab9d0b4e529aab4ef51fa5f10840 Mon Sep 17 00:00:00 2001 From: "Philipp Heil (d073544)" Date: Wed, 15 Oct 2025 09:06:59 +0200 Subject: [PATCH] feat(ci): Validate release-notes for PRs --- .../workflows/pr-release-notes-validation.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/pr-release-notes-validation.yaml diff --git a/.github/workflows/pr-release-notes-validation.yaml b/.github/workflows/pr-release-notes-validation.yaml new file mode 100644 index 0000000..9bebced --- /dev/null +++ b/.github/workflows/pr-release-notes-validation.yaml @@ -0,0 +1,18 @@ +name: Validate release-notes from PRs +on: + pull_request: + types: + - opened + - edited + - reopened + +permissions: + pull-requests: read + +jobs: + validate-release-notes: + uses: gardener/cc-utils/.github/workflows/validate-release-notes.yaml@master + permissions: + pull-requests: read + with: + pull-request-body: ${{ github.event.pull_request.body }}