From 424ca1983126cda6b02defdf08e99ba24131fb75 Mon Sep 17 00:00:00 2001 From: Ilia Shipitsin Date: Thu, 27 Mar 2025 22:29:15 +0100 Subject: [PATCH] CI: spellcheck: allow "on: workflow_dispatch" in forks previously that build were limited to "haproxy" github organization only. let's allow manual builds from forks --- .github/workflows/codespell.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index 93e9020dc..91e9d8ec7 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -10,7 +10,7 @@ permissions: jobs: codespell: runs-on: ubuntu-latest - if: ${{ github.repository_owner == 'haproxy' }} + if: ${{ github.repository_owner == 'haproxy' || github.event_name == 'workflow_dispatch' }} steps: - uses: actions/checkout@v4 - uses: codespell-project/codespell-problem-matcher@v1.2.0