diff options
| author | Yuriy Andamasov <yuriy@andamasov.com> | 2026-06-01 12:18:09 +0300 |
|---|---|---|
| committer | Yuriy Andamasov <yuriy@andamasov.com> | 2026-06-01 12:18:09 +0300 |
| commit | b1c42a78c0c6513cf4da7bbfae4707e63b0bd857 (patch) | |
| tree | 054bf013036dbd2e4f0de6ce779c5d2b7316adbd /.github/workflows | |
| parent | 7603020a9fbe852e0d3fc84bb3c4ee42540b3248 (diff) | |
| download | mirror-canary-b1c42a78c0c6513cf4da7bbfae4707e63b0bd857.tar.gz mirror-canary-b1c42a78c0c6513cf4da7bbfae4707e63b0bd857.zip | |
T8943: canary — 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 0000000..0054678 --- /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 3. +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 |
