From fb9cf7706c3bde10a41ae9afd2a3ce166597670a Mon Sep 17 00:00:00 2001 From: Yuriy Andamasov Date: Sun, 10 May 2026 23:24:30 +0300 Subject: ci: declare custom self-hosted runner label `web` for actionlint CodeRabbit nitpick on PR #1947: actionlint flags `runs-on: [self-hosted, web]` with `label "web" is unknown` because `web` is a custom label for the VyOS-Networks org-managed self-hosted Debian 12 runner pool, not a known GitHub-hosted label. Adding `.github/actionlint.yaml` with the `self-hosted-runner.labels` list is the upstream-documented way to suppress the false positive without disabling the linter. No behavioral change. --- .github/actionlint.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/actionlint.yaml diff --git a/.github/actionlint.yaml b/.github/actionlint.yaml new file mode 100644 index 00000000..04e9cefe --- /dev/null +++ b/.github/actionlint.yaml @@ -0,0 +1,12 @@ +# actionlint configuration for vyos/vyos-documentation +# +# Declares the custom labels used by the org-managed self-hosted runner +# pool so actionlint stops emitting "label 'web' is unknown" false +# positives on `runs-on: [self-hosted, web]` lines. +# +# The `web` label is the org-level VyOS Networks self-hosted Debian 12 +# runner pool used by .github/workflows/ai-validation.yml (both the +# `prepare` and `validate` jobs). +self-hosted-runner: + labels: + - web -- cgit v1.2.3