We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbd9dc6 commit e0234ecCopy full SHA for e0234ec
.github/workflows/ci.yml
@@ -72,7 +72,12 @@ jobs:
72
run: ./scripts/install_onnx.sh ${{ env.ONNXRUNTIME_VERSION }} linux x64 /tmp/onnxruntime
73
74
- name: Install S3 credentials for testing
75
- if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
+ 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
+ )
81
run: |
82
cd crates/fs/tests
83
echo "S3FS_TEST_SUPABASE_STORAGE=true" >> .env
0 commit comments