Skip to content

Commit e3f72d3

Browse files
committed
chore: skip s3 cred install step if the action is triggered by dependabot (#492)
1 parent 1256596 commit e3f72d3

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
@@ -74,7 +74,12 @@ jobs:
7474
run: ./scripts/install_onnx.sh ${{ env.ONNXRUNTIME_VERSION }} linux x64 /tmp/onnxruntime
7575

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

0 commit comments

Comments
 (0)