From 6572db1ed07f55622b2ad53a7cfc81973ed66977 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Fri, 22 May 2026 13:15:11 +0000 Subject: [PATCH] fix(actionlint): restore runners-privilegedescalation custom label (PRI-1736) Commit 8e51b01 removed this label from the actionlint config, but renovate.yaml still uses runs-on: runners-privilegedescalation. actionlint exits 1 when it sees an unknown runner label, breaking PR Validation CI on org/pulls/72. Co-Authored-By: Paperclip --- .github/actionlint.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actionlint.yaml b/.github/actionlint.yaml index 9261d80..05ca3b0 100644 --- a/.github/actionlint.yaml +++ b/.github/actionlint.yaml @@ -1,2 +1,3 @@ self-hosted-runner: - labels: [] + labels: + - runners-privilegedescalation