|
20 | 20 | aws-s3-us-integration: |
21 | 21 | name: AWS S3 US Integration |
22 | 22 | 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 |
24 | 24 | if: | |
25 | 25 | github.event_name == 'push' || |
26 | 26 | github.event_name == 'workflow_dispatch' || |
@@ -88,11 +88,11 @@ jobs: |
88 | 88 | aws-s3-regional-integration: |
89 | 89 | name: AWS S3 ${{ matrix.name }} Integration |
90 | 90 | 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 |
92 | 92 | if: | |
93 | 93 | github.event_name == 'push' || |
94 | 94 | 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) |
96 | 96 | strategy: |
97 | 97 | fail-fast: false |
98 | 98 | matrix: |
@@ -153,11 +153,11 @@ jobs: |
153 | 153 | s3-compatible-integration: |
154 | 154 | name: S3 Compatible Integration |
155 | 155 | 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 |
157 | 157 | if: | |
158 | 158 | github.event_name == 'push' || |
159 | 159 | 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) |
161 | 161 | steps: |
162 | 162 | - name: Checkout code |
163 | 163 | uses: actions/checkout@v7 |
|
0 commit comments