From 5bf03feb946002d660dfda3f91eb41e0cccb0160 Mon Sep 17 00:00:00 2001 From: Jean-Michel Tremblay Date: Fri, 19 Jun 2026 14:36:25 -0400 Subject: [PATCH] CI: target the shell runner label instead of docker The only registered act_runner advertises the `shell` label, not `docker`, so `runs-on: docker` left the job queued forever. The host has the docker CLI (the resume repo builds via `docker run` on this same runner), so keep running the build/test inside a golang container. Co-Authored-By: Claude Opus 4.8 --- .forgejo/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index 9f548d7..4088fd8 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -2,7 +2,7 @@ name: Build and Test on: [push] jobs: build-and-test: - runs-on: docker + runs-on: shell steps: - name: Checkout run: |