|
|
|
|
@ -9,23 +9,29 @@ on:
|
|
|
|
|
push:
|
|
|
|
|
branches: [dev, rel-*]
|
|
|
|
|
paths:
|
|
|
|
|
- 'abp/**/*.js'
|
|
|
|
|
- 'abp/**/*.cs'
|
|
|
|
|
- 'abp/**/*.cshtml'
|
|
|
|
|
- 'abp/**/*.csproj'
|
|
|
|
|
- 'abp/**/*.razor'
|
|
|
|
|
- "abp/**/*.js"
|
|
|
|
|
- "abp/**/*.cs"
|
|
|
|
|
- "abp/**/*.cshtml"
|
|
|
|
|
- "abp/**/*.csproj"
|
|
|
|
|
- "abp/**/*.razor"
|
|
|
|
|
pull_request:
|
|
|
|
|
# The branches below must be a subset of the branches above
|
|
|
|
|
branches: [dev]
|
|
|
|
|
paths:
|
|
|
|
|
- 'abp/**/*.js'
|
|
|
|
|
- 'abp/**/*.cs'
|
|
|
|
|
- 'abp/**/*.cshtml'
|
|
|
|
|
- 'abp/**/*.csproj'
|
|
|
|
|
- 'abp/**/*.razor'
|
|
|
|
|
- "abp/**/*.js"
|
|
|
|
|
- "abp/**/*.cs"
|
|
|
|
|
- "abp/**/*.cshtml"
|
|
|
|
|
- "abp/**/*.csproj"
|
|
|
|
|
- "abp/**/*.razor"
|
|
|
|
|
types:
|
|
|
|
|
- opened
|
|
|
|
|
- synchronize
|
|
|
|
|
- reopened
|
|
|
|
|
- ready_for_review
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
analyze:
|
|
|
|
|
if: ${{ !github.event.pull_request.draft }}
|
|
|
|
|
name: Analyze
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
|
|
@ -34,7 +40,7 @@ jobs:
|
|
|
|
|
matrix:
|
|
|
|
|
# Override automatic language detection by changing the below list
|
|
|
|
|
# Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python']
|
|
|
|
|
language: ['csharp', 'javascript']
|
|
|
|
|
language: ["csharp", "javascript"]
|
|
|
|
|
# Learn more...
|
|
|
|
|
# https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection
|
|
|
|
|
|
|
|
|
|
|