Skip to content

Commit

Permalink
Avoid running the security pipeline on every PR (#12)
Browse files Browse the repository at this point in the history
The security pipeline defined in
`azure_pipelines/code-security-analysis.yml` is scheduled to run weekly
as required by Microsoft policy. However, it also seems to run on all
PRs, which is unnecessary. This PR changes the pipeline's configuration
to only do the scheduled runs and not run as part of CI.
  • Loading branch information
kmaziarz authored Jul 11, 2023
1 parent 304727c commit 4049576
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/azure_pipelines/code-security-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ schedules:
include:
- main

pr: none
trigger: none

pool:
vmImage: 'windows-latest'

Expand Down

0 comments on commit 4049576

Please sign in to comment.