From 40fcc1cdf34d9d773d50f716574b8e10751a1faf Mon Sep 17 00:00:00 2001 From: Aitor Perez <1515757+Zerpet@users.noreply.github.com> Date: Tue, 3 Jun 2025 11:03:46 +0100 Subject: [PATCH] ci: fix indentation in selenium workflow From #14014, we learned that the indentation was causing workflows to not trigger. However, this did not seem to affect when the workflow file itself was changed. In any case, YAML is sensible to indentation, therefore this change is 'correct'. Removing single quotes from paths with '*' at the end, because it is not required according to YAML and GitHub documentation. The path triggers now match the Selenium workflow that runs on commits to main and release branches. --- .github/workflows/test-management-ui-for-pr.yaml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test-management-ui-for-pr.yaml b/.github/workflows/test-management-ui-for-pr.yaml index 021af8df91..9458be8164 100644 --- a/.github/workflows/test-management-ui-for-pr.yaml +++ b/.github/workflows/test-management-ui-for-pr.yaml @@ -1,10 +1,13 @@ name: Test Management UI with Selenium for PRs on: - pull_request: - paths: - - 'deps/**' - - 'selenium/**' - - .github/workflows/test-management-ui-for-pr.yaml + pull_request: + paths: + - deps/rabbitmq_management/src/** + - deps/rabbitmq_management/priv/** + - deps/rabbitmq_web_dispatch/src/** + - selenium/** + - scripts/** + - .github/workflows/test-management-ui-for-pr.yaml concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true