Skip to content

Commit 40fcc1c

Browse files
committed
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.
1 parent f882a28 commit 40fcc1c

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/test-management-ui-for-pr.yaml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
name: Test Management UI with Selenium for PRs
22
on:
3-
pull_request:
4-
paths:
5-
- 'deps/**'
6-
- 'selenium/**'
7-
- .github/workflows/test-management-ui-for-pr.yaml
3+
pull_request:
4+
paths:
5+
- deps/rabbitmq_management/src/**
6+
- deps/rabbitmq_management/priv/**
7+
- deps/rabbitmq_web_dispatch/src/**
8+
- selenium/**
9+
- scripts/**
10+
- .github/workflows/test-management-ui-for-pr.yaml
811
concurrency:
912
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
1013
cancel-in-progress: true

0 commit comments

Comments
 (0)