From 26507ad3ff68006e62d0171b1ec4ae6e17c50315 Mon Sep 17 00:00:00 2001 From: Shaun Arman Date: Sun, 31 May 2026 15:37:10 -0500 Subject: [PATCH] fix(ci): install python3 in pr-review container (ubuntu:22.04 omits it) --- .gitea/workflows/pr-review.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/pr-review.yml b/.gitea/workflows/pr-review.yml index c91e7bac..5d3c39cd 100644 --- a/.gitea/workflows/pr-review.yml +++ b/.gitea/workflows/pr-review.yml @@ -18,7 +18,7 @@ jobs: shell: bash run: | set -euo pipefail - apt-get update -qq && apt-get install -y -qq git curl jq + apt-get update -qq && apt-get install -y -qq git curl jq python3 - name: Checkout code shell: bash