diff options
| author | Yuriy Andamasov <yuriy@andamasov.com> | 2026-06-01 12:40:18 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-01 12:40:18 +0300 |
| commit | c71c2c03fa23c47c8d4c87625236e58b5a4af2bc (patch) | |
| tree | 9d4cd6b40f394a1f32b363a3cfece0c2e4649031 /.github | |
| parent | 982769083710bdce577f15679178bbd6c297b634 (diff) | |
| parent | f055a02d89c6a9c3a681275324e7e9f63b498b93 (diff) | |
| download | vyconf-c71c2c03fa23c47c8d4c87625236e58b5a4af2bc.tar.gz vyconf-c71c2c03fa23c47c8d4c87625236e58b5a4af2bc.zip | |
Merge pull request #54 from vyos/ci/lts-name-check
T8943: ci: add lts-name-check advisory caller
Diffstat (limited to '.github')
| -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 |
