Skip to content

Commit c9e8174

Browse files
committed
Enable integration tests for dependabot PRs
- part 2
1 parent 2a0d7f2 commit c9e8174

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/alioss-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
alioss-general-integration-tests:
2121
name: Alioss General Integration Tests
2222
runs-on: ubuntu-latest
23-
# Run on push/workflow_dispatch, skip forks and Dependabot on PRs
23+
# Run on push/workflow_dispatch, skip fork PRs
2424
if: |
2525
github.event_name == 'push' ||
2626
github.event_name == 'workflow_dispatch' ||

.github/workflows/azurebs-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
azurecloud-environment-integration-tests:
2121
name: AzureCloud Environment Integration Tests
2222
runs-on: ubuntu-latest
23-
# Run on push/workflow_dispatch, skip forks and Dependabot on PRs
23+
# Run on push/workflow_dispatch, skip fork PRs
2424
if: |
2525
github.event_name == 'push' ||
2626
github.event_name == 'workflow_dispatch' ||

.github/workflows/gcs-integration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
gcs-integration-fast-tests:
2121
name: GCS Integation Fast Tests
2222
runs-on: ubuntu-latest
23-
# Run on push/workflow_dispatch, skip forks and Dependabot on PRs
23+
# Run on push/workflow_dispatch, skip fork PRs
2424
if: |
2525
github.event_name == 'push' ||
2626
github.event_name == 'workflow_dispatch' ||
27-
(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]')
27+
(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository)
2828
steps:
2929
- name: Checkout code
3030
uses: actions/checkout@v7
@@ -55,7 +55,7 @@ jobs:
5555
gcs-integration-all-tests:
5656
name: GCS Integation All Tests
5757
runs-on: ubuntu-latest
58-
# Run on push/workflow_dispatch, skip forks and Dependabot on PRs
58+
# Run on push/workflow_dispatch, skip fork PRs
5959
if: |
6060
github.event_name == 'push' ||
6161
github.event_name == 'workflow_dispatch' ||

.github/workflows/s3-integration.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
aws-s3-us-integration:
2121
name: AWS S3 US Integration
2222
runs-on: ubuntu-latest
23-
# Run on push/workflow_dispatch, skip forks and Dependabot on PRs
23+
# Run on push/workflow_dispatch, skip fork PRs
2424
if: |
2525
github.event_name == 'push' ||
2626
github.event_name == 'workflow_dispatch' ||
@@ -88,11 +88,11 @@ jobs:
8888
aws-s3-regional-integration:
8989
name: AWS S3 ${{ matrix.name }} Integration
9090
runs-on: ubuntu-latest
91-
# Run on push/workflow_dispatch, skip forks and Dependabot on PRs
91+
# Run on push/workflow_dispatch, skip fork PRs
9292
if: |
9393
github.event_name == 'push' ||
9494
github.event_name == 'workflow_dispatch' ||
95-
(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]')
95+
(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository)
9696
strategy:
9797
fail-fast: false
9898
matrix:
@@ -153,11 +153,11 @@ jobs:
153153
s3-compatible-integration:
154154
name: S3 Compatible Integration
155155
runs-on: ubuntu-latest
156-
# Run on push/workflow_dispatch, skip forks and Dependabot on PRs
156+
# Run on push/workflow_dispatch, skip fork PRs
157157
if: |
158158
github.event_name == 'push' ||
159159
github.event_name == 'workflow_dispatch' ||
160-
(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]')
160+
(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository)
161161
steps:
162162
- name: Checkout code
163163
uses: actions/checkout@v7

0 commit comments

Comments
 (0)