Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-integrations-ai.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ jobs:
files: .junitxml
verbose: true
check_required_tests:
name: All AI tests passed
name: All pinned AI tests passed
needs: test-ai-pinned
# Always run this, even if a dependent job failed
if: always()
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-integrations-aws-lambda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
files: .junitxml
verbose: true
check_required_tests:
name: All AWS Lambda tests passed
name: All pinned AWS Lambda tests passed
needs: test-aws_lambda-pinned
# Always run this, even if a dependent job failed
if: always()
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-integrations-cloud-computing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ jobs:
files: .junitxml
verbose: true
check_required_tests:
name: All Cloud Computing tests passed
name: All pinned Cloud Computing tests passed
needs: test-cloud_computing-pinned
# Always run this, even if a dependent job failed
if: always()
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 @@ -77,7 +77,7 @@ jobs:
files: .junitxml
verbose: true
check_required_tests:
name: All Common tests passed
name: All pinned Common tests passed
needs: test-common-pinned
# Always run this, even if a dependent job failed
if: always()
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-integrations-data-processing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ jobs:
files: .junitxml
verbose: true
check_required_tests:
name: All Data Processing tests passed
name: All pinned Data Processing tests passed
needs: test-data_processing-pinned
# Always run this, even if a dependent job failed
if: always()
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-integrations-databases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ jobs:
files: .junitxml
verbose: true
check_required_tests:
name: All Databases tests passed
name: All pinned Databases tests passed
needs: test-databases-pinned
# Always run this, even if a dependent job failed
if: always()
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 @@ -157,7 +157,7 @@ jobs:
files: .junitxml
verbose: true
check_required_tests:
name: All GraphQL tests passed
name: All pinned GraphQL tests passed
needs: test-graphql-pinned
# Always run this, even if a dependent job failed
if: always()
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-integrations-miscellaneous.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ jobs:
files: .junitxml
verbose: true
check_required_tests:
name: All Miscellaneous tests passed
name: All pinned Miscellaneous tests passed
needs: test-miscellaneous-pinned
# Always run this, even if a dependent job failed
if: always()
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-integrations-networking.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ jobs:
files: .junitxml
verbose: true
check_required_tests:
name: All Networking tests passed
name: All pinned Networking tests passed
needs: test-networking-pinned
# Always run this, even if a dependent job failed
if: always()
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-integrations-web-frameworks-1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ jobs:
files: .junitxml
verbose: true
check_required_tests:
name: All Web Frameworks 1 tests passed
name: All pinned Web Frameworks 1 tests passed
needs: test-web_frameworks_1-pinned
# Always run this, even if a dependent job failed
if: always()
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-integrations-web-frameworks-2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ jobs:
files: .junitxml
verbose: true
check_required_tests:
name: All Web Frameworks 2 tests passed
name: All pinned Web Frameworks 2 tests passed
needs: test-web_frameworks_2-pinned
# Always run this, even if a dependent job failed
if: always()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
check_required_tests:
name: All {{ group }} tests passed
name: All pinned {{ group }} tests passed
{% if "pinned" in categories %}
needs: test-{{ group | replace(" ", "_") | lower }}-pinned
{% endif %}
Expand Down
Loading