Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable CodeQL by default #2689

Merged
merged 1 commit into from
Nov 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions eng/pipelines/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ trigger:

pr: none

variables:
- template: templates/variables/globals.yml

jobs:
- job: npm_stable
displayName: Npm publish
Expand Down
3 changes: 3 additions & 0 deletions eng/pipelines/pr-tryit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ pr:
- main
- release/*

variables:
- template: templates/variables/globals.yml

jobs:
- job: publish_playground
displayName: Publish playground
Expand Down
3 changes: 3 additions & 0 deletions eng/pipelines/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ pr:
- main
- release/*

variables:
- template: templates/variables/globals.yml

jobs:
- job: Build_And_Test
displayName: Build And Test
Expand Down
3 changes: 3 additions & 0 deletions eng/pipelines/templates/variables/globals.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
variables:
# Disable CodeQL by default to prevent build timeouts
Codeql.SkipTaskAutoInjection: true
Loading