diff options
| author | Yuriy Andamasov <yuriy@andamasov.com> | 2026-06-01 12:40:25 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-01 12:40:25 +0300 |
| commit | 7488e2a89b6e05fe5f8af585be3286d877d0b170 (patch) | |
| tree | b6fd45b255db7a556d008565422186151a964f85 | |
| parent | 905c3b284cb4b252fb7a9685a653167ab5d4f919 (diff) | |
| parent | 6a53f9888afccc9d6d1cb5817b0da26b253289eb (diff) | |
| download | vyos-1x-7488e2a89b6e05fe5f8af585be3286d877d0b170.tar.gz vyos-1x-7488e2a89b6e05fe5f8af585be3286d877d0b170.zip | |
Merge pull request #5245 from vyos/ci/lts-name-check
T8943: ci: add lts-name-check advisory caller
| -rw-r--r-- | .github/workflows/lts-name-check.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/lts-name-check.yml b/.github/workflows/lts-name-check.yml new file mode 100644 index 000000000..91fd9b579 --- /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 |
