fix: use array format for self-hosted runners at org level

Changed runs-on from 'local-ubuntu-latest' to '[self-hosted, local-ubuntu-latest]'
to properly match organization-level ARC runner scale sets.

For organization-level runners, GitHub Actions requires the self-hosted
label along with the runner scale set name.
This commit is contained in:
2026-02-12 14:38:08 -05:00
parent 934e79c570
commit 4d99360694
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ on:
jobs:
lint-and-test:
runs-on: local-ubuntu-latest
runs-on: [self-hosted, local-ubuntu-latest]
timeout-minutes: 10
steps:
+1 -1
View File
@@ -10,7 +10,7 @@ on:
jobs:
prepare:
runs-on: local-ubuntu-latest
runs-on: [self-hosted, local-ubuntu-latest]
steps:
- name: Validate version format
run: |