Skip to content

Commit e0234ec

Browse files
authored
chore: skip s3 cred install step if the action is triggered by dependabot (#492)
1 parent bbd9dc6 commit e0234ec

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,12 @@ jobs:
7272
run: ./scripts/install_onnx.sh ${{ env.ONNXRUNTIME_VERSION }} linux x64 /tmp/onnxruntime
7373

7474
- name: Install S3 credentials for testing
75-
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
75+
if: |
76+
github.actor != 'dependabot[bot]' &&
77+
(
78+
github.event_name != 'pull_request'
79+
|| github.event.pull_request.head.repo.full_name == github.repository
80+
)
7681
run: |
7782
cd crates/fs/tests
7883
echo "S3FS_TEST_SUPABASE_STORAGE=true" >> .env

0 commit comments

Comments
 (0)