Skip to content

Commit b6b707e

Browse files
authored
Merge pull request #3726 from github/aeisenberg/no-upload-sarif
2 parents 59f3205 + 238592a commit b6b707e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
npm run lint-ci
104104
105105
- name: Upload ESLint results to Code Scanning
106-
if: "${{ !cancelled() }}"
106+
if: "${{ !cancelled() && !startsWith(github.head_ref, 'dependabot/')}}"
107107
uses: github/codeql-action/upload-sarif@main
108108
with:
109109
sarif_file: extensions/ql-vscode/build/eslint.sarif

extensions/ql-vscode/test/vscode-tests/activated-extension/jest.setup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66

77
beforeAll(async () => {
88
await beforeAllAction();
9-
});
9+
}, 20_000);
1010

1111
beforeEach(async () => {
1212
await beforeEachAction();

0 commit comments

Comments
 (0)