From: Ilia Shipitsin Date: Thu, 27 Mar 2025 21:29:15 +0000 (+0100) Subject: CI: spellcheck: allow "on: workflow_dispatch" in forks X-Git-Tag: v3.2-dev9~47 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=424ca1983126cda6b02defdf08e99ba24131fb75;p=thirdparty%2Fhaproxy.git 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 --- 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