This repository was archived by the owner on Aug 10, 2026. It is now read-only.
Fix Spotlight light-mode title gradient selector and start color #63
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: SAST CodeQL Scan | ||
| on: | ||
| pull_request: | ||
| workflow_dispatch: | ||
| permissions: read-all | ||
| concurrency: | ||
| group: codeql-${{ github.ref }}-${{ matrix.language }} | ||
| cancel-in-progress: false | ||
| jobs: | ||
| codeql: | ||
| name: Analyze (${{ matrix.language }}) | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 30 | ||
| permissions: | ||
| actions: read | ||
| contents: read | ||
| security-events: write | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| language: | ||
| - python | ||
| - javascript | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v6 | ||
| - name: Initialize CodeQL | ||
| uses: github/codeql-action/init@v4 | ||
| with: | ||
| languages: ${{ matrix.language }} | ||
| queries: security-and-quality | ||
| - name: Autobuild | ||
| uses: github/codeql-action/autobuild@v4 | ||
| - name: Analyze | ||
| uses: github/codeql-action/analyze@v4 | ||
| with: | ||
| category: /language:${{ matrix.language }} | ||