From 3b03397a3fe2d896dc7486f516cd91420eb15a70 Mon Sep 17 00:00:00 2001 From: Yuriy Andamasov Date: Mon, 1 Jun 2026 12:35:15 +0300 Subject: T8943: ci: add lts-name-check advisory caller MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds the source-side LTS-name advisory caller (mirror-pipeline). Non-blocking; posts a generic advisory if a PR title/body references a release-train branch name. 🤖 Generated by [robots](https://vyos.io) --- .github/workflows/lts-name-check.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/lts-name-check.yml (limited to '.github/workflows') diff --git a/.github/workflows/lts-name-check.yml b/.github/workflows/lts-name-check.yml new file mode 100644 index 0000000..91fd9b5 --- /dev/null +++ b/.github/workflows/lts-name-check.yml @@ -0,0 +1,21 @@ +# .github/workflows/lts-name-check.yml +# DO NOT EDIT — managed by mirror-pipeline rollout. +name: LTS-name advisory check + +# pull_request_target (NOT pull_request) so the workflow runs with base-repo +# secrets even on fork PRs. The reusable workflow does NOT check out PR code +# (only reads title/body from the event payload), so the standard +# pull_request_target exploitation vector (running fork code with elevated +# secrets) does not apply. +on: + pull_request_target: + types: [opened, edited] + branches: [rolling] + +permissions: {} + +jobs: + call: + if: github.repository_owner == 'vyos' + uses: vyos/.github/.github/workflows/lts-name-check-reusable.yml@production + secrets: inherit -- cgit v1.2.3