diff options
| author | Yuriy Andamasov <yuriy@andamasov.com> | 2026-06-01 12:40:32 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-01 12:40:32 +0300 |
| commit | a27ac2a7bbfa7a683a4de0695a8e765bd1178c41 (patch) | |
| tree | f2f67f70fc77fc8ed710bd58e7d1fa235cd3d6f0 /.github/workflows | |
| parent | 0656d1ee6f3311b5b3e0ecd0d25125850e4e1dac (diff) | |
| parent | 1d693d8aa214d2200305469259a93cafea2515e7 (diff) | |
| download | vyos-build-a27ac2a7bbfa7a683a4de0695a8e765bd1178c41.tar.gz vyos-build-a27ac2a7bbfa7a683a4de0695a8e765bd1178c41.zip | |
Merge pull request #1209 from vyos/ci/lts-name-check
T8943: ci: add lts-name-check advisory caller
Diffstat (limited to '.github/workflows')
| -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 00000000..91fd9b57 --- /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 |
