Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
antonpirker committed Nov 22, 2024
1 parent 5e15230 commit 56ec843
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-integrations-ai.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ jobs:
name: All pinned AI tests passed
needs: test-ai-pinned
# Always run this, even if a dependent job failed
if: always()
if: always() || needs.test-ai-pinned.result == null
runs-on: ubuntu-20.04
steps:
- name: Auto-pass for path filtering
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-integrations-aws.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
name: All pinned AWS tests passed
needs: test-aws-pinned
# Always run this, even if a dependent job failed
if: always()
if: always() || needs.test-aws-pinned.result == null
runs-on: ubuntu-20.04
steps:
- name: Auto-pass for path filtering
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-integrations-cloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ jobs:
name: All pinned Cloud tests passed
needs: test-cloud-pinned
# Always run this, even if a dependent job failed
if: always()
if: always() || needs.test-cloud-pinned.result == null
runs-on: ubuntu-20.04
steps:
- name: Auto-pass for path filtering
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-integrations-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
name: All pinned Common tests passed
needs: test-common-pinned
# Always run this, even if a dependent job failed
if: always()
if: always() || needs.test-common-pinned.result == null
runs-on: ubuntu-20.04
steps:
- name: Auto-pass for path filtering
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-integrations-dbs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ jobs:
name: All pinned DBs tests passed
needs: test-dbs-pinned
# Always run this, even if a dependent job failed
if: always()
if: always() || needs.test-dbs-pinned.result == null
runs-on: ubuntu-20.04
steps:
- name: Auto-pass for path filtering
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-integrations-graphql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ jobs:
name: All pinned GraphQL tests passed
needs: test-graphql-pinned
# Always run this, even if a dependent job failed
if: always()
if: always() || needs.test-graphql-pinned.result == null
runs-on: ubuntu-20.04
steps:
- name: Auto-pass for path filtering
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-integrations-misc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ jobs:
name: All pinned Misc tests passed
needs: test-misc-pinned
# Always run this, even if a dependent job failed
if: always()
if: always() || needs.test-misc-pinned.result == null
runs-on: ubuntu-20.04
steps:
- name: Auto-pass for path filtering
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-integrations-network.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ jobs:
name: All pinned Network tests passed
needs: test-network-pinned
# Always run this, even if a dependent job failed
if: always()
if: always() || needs.test-network-pinned.result == null
runs-on: ubuntu-20.04
steps:
- name: Auto-pass for path filtering
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-integrations-tasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ jobs:
name: All pinned Tasks tests passed
needs: test-tasks-pinned
# Always run this, even if a dependent job failed
if: always()
if: always() || needs.test-tasks-pinned.result == null
runs-on: ubuntu-20.04
steps:
- name: Auto-pass for path filtering
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-integrations-web-1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ jobs:
name: All pinned Web 1 tests passed
needs: test-web_1-pinned
# Always run this, even if a dependent job failed
if: always()
if: always() || needs.test-web_1-pinned.result == null
runs-on: ubuntu-20.04
steps:
- name: Auto-pass for path filtering
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-integrations-web-2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ jobs:
name: All pinned Web 2 tests passed
needs: test-web_2-pinned
# Always run this, even if a dependent job failed
if: always()
if: always() || needs.test-web_2-pinned.result == null
runs-on: ubuntu-20.04
steps:
- name: Auto-pass for path filtering
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
needs: test-{{ group | replace(" ", "_") | lower }}-pinned
{% endif %}
# Always run this, even if a dependent job failed
if: always()
if: always() || needs.test-{{ lowercase_group }}-pinned.result == null
runs-on: ubuntu-20.04
steps:
- name: Auto-pass for path filtering
Expand Down

0 comments on commit 56ec843

Please sign in to comment.