From 07384c360548e2451aa9f9c9814799d544a98db2 Mon Sep 17 00:00:00 2001 From: Timofei Larkin Date: Tue, 16 Sep 2025 11:35:56 +0300 Subject: [PATCH] [ci] Get REGISTRY from vars, not secrets This patch sources the REGISTRY env var from GitHub actions variables instead of secrets, so pull requests from forked repos work correctly. ```release-note [ci] Source the REGISTRY env var from actions' variables, not secrets, so external pull requests can work. ``` Signed-off-by: Timofei Larkin --- .github/workflows/pull-requests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-requests.yaml b/.github/workflows/pull-requests.yaml index 157319db..42ac1949 100644 --- a/.github/workflows/pull-requests.yaml +++ b/.github/workflows/pull-requests.yaml @@ -1,7 +1,7 @@ name: Pull Request env: - REGISTRY: ${{ secrets.OCIR_REPO }} + REGISTRY: ${{ vars.OCIR_REPO }} on: pull_request: types: [opened, synchronize, reopened]