From 764eb7dc6f026b679afaef5b5eebd24a1d42574a Mon Sep 17 00:00:00 2001 From: Yuriy Andamasov Date: Sun, 10 May 2026 18:29:17 +0300 Subject: ci: fix open-prs-conflict caller — point at correct vyos/.github workflow file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The caller workflow referenced `vyos/.github/.github/workflows/check-open-prs-conflict.yml@current`, but that file does not exist in `vyos/.github`. The workflow was renamed to `check-pr-conflict.yml` (without "open") at some point after the caller was added in 86a282ec (#1638, 2025-05-26). Result: every push to a watched branch since at least 2026-05-07 has produced a "workflow file issue" failure. Verified via `gh api repos/vyos/.github/contents/.github/workflows`. The called workflow is `workflow_call`-callable with no inputs, so this is a one-line ref fix. No behavior change to the caller's trigger list. 🤖 Generated by [robots](https://vyos.io) --- .github/workflows/check-open-prs-conflict.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-open-prs-conflict.yml b/.github/workflows/check-open-prs-conflict.yml index 9667fd62..f7b32cbf 100644 --- a/.github/workflows/check-open-prs-conflict.yml +++ b/.github/workflows/check-open-prs-conflict.yml @@ -13,5 +13,5 @@ permissions: jobs: check-pr-conflict-call: - uses: vyos/.github/.github/workflows/check-open-prs-conflict.yml@current + uses: vyos/.github/.github/workflows/check-pr-conflict.yml@current secrets: inherit -- cgit v1.2.3