✨ add DT project deletion for dev and add project suffix for released projects #2566
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: codeQL | |
| on: | |
| push: | |
| branches: [development/*] | |
| pull_request: | |
| branches: [development/*] | |
| workflow_dispatch: | |
| jobs: | |
| analyze: | |
| name: Static analysis with CodeQL | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| language: [python, typescript, go, javascript] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v3 | |
| with: | |
| languages: ${{ matrix.language }} | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v3 | |
| with: | |
| category: "/language:${{ matrix.language }}" |