From 357519e364fa64daecf882fdbd4cb5d76ef728f3 Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Tue, 21 Jul 2026 11:18:51 +0200 Subject: [PATCH] .github/workflows/issue_pr_lock.yml: run for the full org This workflow is used and called by buildah and skopeo, however due this new if it will just get skipped there as the context on a action reuse will still be set to the proper repo which calls the action. The point of this new if from commit 32f987fc8c ("ci: restrict specific workflows to the upstream repository") was to avoid running our actions on forks where they will fail due to missing secrets, etc... So by limiting the scope to our org here we can reuse it from buildah and skopeo and still prevent it running on forks from users. Signed-off-by: Paul Holzinger --- .github/workflows/issue_pr_lock.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/issue_pr_lock.yml b/.github/workflows/issue_pr_lock.yml index c7b101ebc8..9ba31d6c40 100644 --- a/.github/workflows/issue_pr_lock.yml +++ b/.github/workflows/issue_pr_lock.yml @@ -47,7 +47,7 @@ env: jobs: manage_locking: - if: github.repository == 'podman-container-tools/podman' + if: github.repository_owner == 'podman-container-tools' runs-on: ubuntu-latest permissions: issues: write