From 5c1a148a24f7cdb9df3389d63f01a715a024f875 Mon Sep 17 00:00:00 2001 From: Rodin Date: Thu, 14 May 2026 20:19:47 +0000 Subject: [PATCH] fix: use rpl-linux-runners for github.concur.com workflows MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ubuntu-24.04 is a GitHub.com public runner label — not available on GHE. All strat/* repos use rpl-linux-runners (confirmed from kms-lite, kms-operator, hermes). --- .github/workflows/review.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/review.yml b/.github/workflows/review.yml index a477817..88552ea 100644 --- a/.github/workflows/review.yml +++ b/.github/workflows/review.yml @@ -22,7 +22,7 @@ on: jobs: test: - runs-on: ubuntu-24.04 + runs-on: rpl-linux-runners steps: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 @@ -33,7 +33,7 @@ jobs: - run: go build -o review-bot ./cmd/review-bot review: - runs-on: ubuntu-24.04 + runs-on: rpl-linux-runners if: github.event_name == 'pull_request' needs: test strategy: @@ -55,7 +55,7 @@ jobs: - uses: ./.gitea/actions/review with: # On GHES runners, vcs-url is ignored (composite action uses github.server_url). - # Specifying gitea-url here causes the action to download the binary from + # Specifying vcs-url here causes the action to download the binary from # Gitea releases when strat/review-bot has no releases yet. vcs-url: https://gitea.weiker.me action-repo: strat/review-bot @@ -71,5 +71,5 @@ jobs: conventions-file: CONVENTIONS.md patterns-repo: rodin/go-patterns patterns-files: README.md,patterns/ - llm-timeout: "600" + timeout: "600" system-prompt-file: ${{ matrix.system_prompt_file || '' }}