From 9b233dbf0db4395fc591fae0ac9eab1a9a8d66ca Mon Sep 17 00:00:00 2001 From: SF97 <10375710+SF97@users.noreply.github.com> Date: Mon, 29 Sep 2025 10:03:02 +0100 Subject: [PATCH] BUILD/MINOR: correct aspell configuration loading in CI pipeline The CI pipeline was experiencing intermittent failures due to aspell not correctly loading the local configuration files. This resulted in spelling checks being performed with default settings, leading to false positives and unpredictable behavior in the pipeline. This patch addresses the issue by adding a step with @actions/checkout@v4 action, which loads the repository code to the CI pipeline, leading to the configurations being read in CI time --- .github/workflows/actions.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index d5dc6299..7bc95146 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -6,6 +6,8 @@ jobs: name: HAProxy check commit message runs-on: ubuntu-latest steps: + - name: Check out code + uses: actions/checkout@v4 - name: commit-policy uses: docker://ghcr.io/haproxytech/commit-check:5.2.0 env: