File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -275,7 +275,7 @@ jobs:
275
275
cd core
276
276
npm test
277
277
env :
278
- IGNORE_API_KEY_TESTS : ${{ github.event.pull_request.head.repo.fork }}
278
+ IGNORE_API_KEY_TESTS : ${{ github.event.pull_request.head.repo.fork == true && github.actor == 'dependabot[bot]' }}
279
279
OPENAI_API_KEY : ${{ secrets.OPENAI_API_KEY }}
280
280
ANTHROPIC_API_KEY : ${{ secrets.ANTHROPIC_API_KEY }}
281
281
GEMINI_API_KEY : ${{ secrets.GEMINI_API_KEY }}
@@ -436,7 +436,7 @@ jobs:
436
436
chmod 600 ~/.ssh/id_rsa
437
437
ssh-keyscan -H "$SSH_HOST" >> ~/.ssh/known_hosts
438
438
echo -e "Host ssh-test-container\n\tHostName $SSH_HOST\n\tUser ec2-user\n\tIdentityFile ~/.ssh/id_rsa" >> ~/.ssh/config
439
- if : ${{ github.event.pull_request.head.repo.fork == false }}
439
+ if : ${{ github.event.pull_request.head.repo.fork == false && github.actor != 'dependabot[bot]' }}
440
440
441
441
- name : Set up Xvfb
442
442
run : |
@@ -446,7 +446,7 @@ jobs:
446
446
- name : Run e2e tests
447
447
run : |
448
448
cd extensions/vscode
449
- IGNORE_SSH_TESTS="${{ github.event.pull_request.head.repo.fork }}" TEST_FILE="${{ matrix.test_file }}" npm run ${{ matrix.command }}
449
+ IGNORE_SSH_TESTS="${{ github.event.pull_request.head.repo.fork == false && github.actor != 'dependabot[bot]' }}" TEST_FILE="${{ matrix.test_file }}" npm run ${{ matrix.command }}
450
450
env :
451
451
DISPLAY : :99
452
452
You can’t perform that action at this time.
0 commit comments