diff options
| author | Yuriy Andamasov <yuriy@andamasov.com> | 2026-06-01 12:40:47 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-01 12:40:47 +0300 |
| commit | 9445b003fc80deb580654780dd719303a76b41ab (patch) | |
| tree | 337d7f29108bd0bf94d39d37cf63c2eaba613a89 | |
| parent | 0a2ec2b6440653da0eccb91fbb77493f518acc21 (diff) | |
| parent | 8146c83a1ecae6a5f7ac152535422e19ae1a93a0 (diff) | |
| download | vyos-http-api-tools-9445b003fc80deb580654780dd719303a76b41ab.tar.gz vyos-http-api-tools-9445b003fc80deb580654780dd719303a76b41ab.zip | |
Merge pull request #52 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 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 |
