Skip to content

Commit c5d9509

Browse files
committed
Merge remote-tracking branch 'origin/master' into potel-base
2 parents 88de4fc + 34dcba4 commit c5d9509

17 files changed

+13
-67
lines changed

.github/workflows/test-integrations-ai.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,6 @@ jobs:
162162
runs-on: ubuntu-22.04
163163
steps:
164164
- name: Check for failures
165-
if: contains(needs.test-ai-pinned.result, 'failure') || contains(needs.test-ai-pinned.result, 'skipped')
165+
if: needs.test-ai-pinned.result != 'success'
166166
run: |
167167
echo "One of the dependent jobs has failed. You may need to re-run it." && exit 1

.github/workflows/test-integrations-cloud.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,6 @@ jobs:
162162
runs-on: ubuntu-22.04
163163
steps:
164164
- name: Check for failures
165-
if: contains(needs.test-cloud-pinned.result, 'failure') || contains(needs.test-cloud-pinned.result, 'skipped')
165+
if: needs.test-cloud-pinned.result != 'success'
166166
run: |
167167
echo "One of the dependent jobs has failed. You may need to re-run it." && exit 1

.github/workflows/test-integrations-common.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,6 @@ jobs:
7676
runs-on: ubuntu-22.04
7777
steps:
7878
- name: Check for failures
79-
if: contains(needs.test-common-pinned.result, 'failure') || contains(needs.test-common-pinned.result, 'skipped')
79+
if: needs.test-common-pinned.result != 'success'
8080
run: |
8181
echo "One of the dependent jobs has failed. You may need to re-run it." && exit 1

.github/workflows/test-integrations-dbs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,6 @@ jobs:
202202
runs-on: ubuntu-22.04
203203
steps:
204204
- name: Check for failures
205-
if: contains(needs.test-dbs-pinned.result, 'failure') || contains(needs.test-dbs-pinned.result, 'skipped')
205+
if: needs.test-dbs-pinned.result != 'success'
206206
run: |
207207
echo "One of the dependent jobs has failed. You may need to re-run it." && exit 1

.github/workflows/test-integrations-flags.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,6 @@ jobs:
8888
runs-on: ubuntu-22.04
8989
steps:
9090
- name: Check for failures
91-
if: contains(needs.test-flags-pinned.result, 'failure') || contains(needs.test-flags-pinned.result, 'skipped')
91+
if: needs.test-flags-pinned.result != 'success'
9292
run: |
9393
echo "One of the dependent jobs has failed. You may need to re-run it." && exit 1

.github/workflows/test-integrations-gevent.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,6 @@ jobs:
7676
runs-on: ubuntu-22.04
7777
steps:
7878
- name: Check for failures
79-
if: contains(needs.test-gevent-pinned.result, 'failure') || contains(needs.test-gevent-pinned.result, 'skipped')
79+
if: needs.test-gevent-pinned.result != 'success'
8080
run: |
8181
echo "One of the dependent jobs has failed. You may need to re-run it." && exit 1

.github/workflows/test-integrations-graphql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,6 @@ jobs:
8888
runs-on: ubuntu-22.04
8989
steps:
9090
- name: Check for failures
91-
if: contains(needs.test-graphql-pinned.result, 'failure') || contains(needs.test-graphql-pinned.result, 'skipped')
91+
if: needs.test-graphql-pinned.result != 'success'
9292
run: |
9393
echo "One of the dependent jobs has failed. You may need to re-run it." && exit 1

.github/workflows/test-integrations-misc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,6 @@ jobs:
9696
runs-on: ubuntu-22.04
9797
steps:
9898
- name: Check for failures
99-
if: contains(needs.test-misc-pinned.result, 'failure') || contains(needs.test-misc-pinned.result, 'skipped')
99+
if: needs.test-misc-pinned.result != 'success'
100100
run: |
101101
echo "One of the dependent jobs has failed. You may need to re-run it." && exit 1

.github/workflows/test-integrations-network.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,6 @@ jobs:
138138
runs-on: ubuntu-22.04
139139
steps:
140140
- name: Check for failures
141-
if: contains(needs.test-network-pinned.result, 'failure') || contains(needs.test-network-pinned.result, 'skipped')
141+
if: needs.test-network-pinned.result != 'success'
142142
run: |
143143
echo "One of the dependent jobs has failed. You may need to re-run it." && exit 1

.github/workflows/test-integrations-tasks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,6 @@ jobs:
192192
runs-on: ubuntu-22.04
193193
steps:
194194
- name: Check for failures
195-
if: contains(needs.test-tasks-pinned.result, 'failure') || contains(needs.test-tasks-pinned.result, 'skipped')
195+
if: needs.test-tasks-pinned.result != 'success'
196196
run: |
197197
echo "One of the dependent jobs has failed. You may need to re-run it." && exit 1

0 commit comments

Comments
 (0)