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/[email protected]
--
2.46.0.windows.1