Skip to content

Commit c66bcd2

Browse files
fix: Updating workflows
Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
1 parent 74dd0dd commit c66bcd2

File tree

4 files changed

+2
-3
lines changed

4 files changed

+2
-3
lines changed

.github/workflows/pr_integration_tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ on:
99
paths:
1010
- 'sdk/**'
1111
- 'ui/**'
12-
merge_group:
1312

1413
# concurrency is currently broken, see details https://github.com/actions/runner/issues/1532
1514
#concurrency:

.github/workflows/pr_remote_rbac_integration_tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ on:
1010
paths:
1111
- 'sdk/**'
1212
- 'ui/**'
13-
merge_group:
1413

1514
jobs:
1615
remote-rbac-integration-tests-python:

.github/workflows/smoke_tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99

1010
jobs:
1111
unit-test-python:
12+
if: ${{ !contains(github.event.pull_request.files, 'docs/') }} # Skip if docs files changed
1213
runs-on: ${{ matrix.os }}
1314
strategy:
1415
fail-fast: false

.github/workflows/unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ on:
77
- 'ui/**'
88
paths-ignore:
99
- 'docs/**'
10-
merge_group:
1110

1211
jobs:
1312
unit-test-python:
13+
if: ${{ !contains(github.event.pull_request.files, 'docs/') }} # Skip if docs files changed
1414
runs-on: ${{ matrix.os }}
1515
strategy:
1616
fail-fast: false

0 commit comments

Comments
 (0)