fix: globally fix text color of buttons in alerts #8457
Workflow file for this run
This file contains 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: 'Run CodeQL' | |
# Ensures that only one workflow is run per branch at a time. | |
concurrency: | |
cancel-in-progress: true | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }} | |
on: | |
push: | |
branches: [master, 'release-[0-9]+.[0-9]+'] | |
pull_request: | |
branches: [master, 'release-[0-9]+.[0-9]+'] | |
schedule: | |
- cron: '31 11 * * 4' | |
permissions: | |
contents: read # for checking out the repository (e.g. actions/checkout) | |
jobs: | |
analyze: | |
name: Run CodeQL | |
runs-on: ubuntu-latest | |
permissions: | |
security-events: write # for adding code alert statuses | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [javascript] | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: github/codeql-action/init@df409f7d9260372bd5f19e5b04e83cb3c43714ae # v3.27.9 | |
with: | |
languages: ${{ matrix.language }} | |
- uses: github/codeql-action/autobuild@df409f7d9260372bd5f19e5b04e83cb3c43714ae # v3.27.9 | |
- uses: github/codeql-action/analyze@df409f7d9260372bd5f19e5b04e83cb3c43714ae # v3.27.9 | |
with: | |
category: '/language:${{matrix.language}}' |