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 1256596 commit e3f72d3Copy full SHA for e3f72d3
.github/workflows/ci.yml
@@ -74,7 +74,12 @@ jobs:
74
run: ./scripts/install_onnx.sh ${{ env.ONNXRUNTIME_VERSION }} linux x64 /tmp/onnxruntime
75
76
- name: Install S3 credentials for testing
77
- if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
+ 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
+ )
83
run: |
84
cd crates/fs/tests
85
echo "S3FS_TEST_SUPABASE_STORAGE=true" >> .env
0 commit comments