diff options
| author | Matt <[email protected]> | 2024-09-23 19:43:48 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-09-23 19:43:48 -0700 |
| commit | 5c4ceaef72f0af992966a7d2ac7ac7d897f091d3 (patch) | |
| tree | c41e92721ba8d9e6ce01b18aa806268c9c9a901e /.github/workflows/Code-Scanning.yml | |
| parent | 66f7736077b6fb6573418885390076e24a4daef6 (diff) | |
Deprecate WDK VSIX Install (#1219)
* Deprecate WDK vsix install
* Fix WDK extension version print
* Remove unecessary splitting on version
* Minor build info refactor
* Fix indentation of output info
* Enough messing with volume size output
* Cleanup comment for vsix version
* More cleanup and doc update
* Remove deprecation statement and install vsix script.
* Fixes and updates to building locally documentation.
* Dont code scan on license or .md files.
* Code scanning ignore changes to .md when pull request is made
Diffstat (limited to '.github/workflows/Code-Scanning.yml')
| -rw-r--r-- | .github/workflows/Code-Scanning.yml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.github/workflows/Code-Scanning.yml b/.github/workflows/Code-Scanning.yml index cd0d8abf..16aaff39 100644 --- a/.github/workflows/Code-Scanning.yml +++ b/.github/workflows/Code-Scanning.yml @@ -8,11 +8,17 @@ on: branches: - main - develop + paths-ignore: + - '**.md' + - 'LICENSE' pull_request: # The branches below must be a subset of the branches above branches: - main - develop + paths-ignore: + - '**.md' + - 'LICENSE' # Allow manual scheduling workflow_dispatch: @@ -37,9 +43,6 @@ jobs: with: submodules: 'recursive' - - name: Install WDK VSIX - run: .\.github\scripts\Install-Vsix.ps1 - - name: Install Nuget Packages run: nuget restore .\packages.config -PackagesDirectory .\packages\ |
