Skip to content

Commit 538ea9b

Browse files
committed
fix(ci): default reusable workflows onto evalops-private-ci
Blacksmith is retired and ubuntu-latest is billing-blocked for private org repos. Callers that omit runner_label were still landing on those defaults (Codex Rails historically blacksmith-4vcpu-ubuntu-2404, then ubuntu-latest). Point the reusable defaults at owned private-CI ARC.
1 parent cfe34dd commit 538ea9b

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/agent-authorship-label.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919
description: "Runner label used for the label job"
2020
required: false
2121
type: string
22-
default: ubuntu-latest
22+
default: evalops-private-ci
2323
helper_ref:
2424
description: "evalops/.github ref used to checkout helper scripts"
2525
required: false

.github/workflows/codex-rails-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,17 @@ on:
2727
type: boolean
2828
default: false
2929
runner_label:
30-
description: "Runner label used for the validation job"
30+
description: "Runner label used for the validation job (owned private-CI ARC; never blacksmith-* or ubuntu-latest)"
3131
required: false
3232
type: string
33-
default: ubuntu-latest
33+
default: evalops-private-ci
3434

3535
permissions:
3636
contents: read
3737

3838
jobs:
3939
validate:
40-
runs-on: ${{ inputs.runner_label || 'ubuntu-latest' }}
40+
runs-on: ${{ inputs.runner_label || 'evalops-private-ci' }}
4141
timeout-minutes: 10
4242
steps:
4343
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5

.github/workflows/review-thread-guard.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ on:
2020
default: "high"
2121
type: string
2222
runner_label:
23-
description: "Runner label used for the validation job"
23+
description: "Runner label used for the validation job (owned private-CI ARC; never blacksmith-* or ubuntu-latest)"
2424
required: false
2525
type: string
26-
default: ubuntu-latest
26+
default: evalops-private-ci
2727
guard_ref:
2828
description: "evalops/.github ref to checkout for guard scripts"
2929
required: false
@@ -68,7 +68,7 @@ permissions:
6868

6969
jobs:
7070
unresolved-review-threads:
71-
runs-on: ${{ inputs.runner_label || 'ubuntu-latest' }}
71+
runs-on: ${{ inputs.runner_label || 'evalops-private-ci' }}
7272
timeout-minutes: 5
7373
steps:
7474
- uses: actions/checkout@v5

0 commit comments

Comments
 (0)