[10-10CG] Update error message text based on error flow #80833
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: CodeQL | |
'on': | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
schedule: | |
- cron: 0 0 * * 2 | |
workflow_dispatch: null | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
concurrency: ${{ github.workflow }}-${{ matrix.language }}-${{ github.ref }} | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: | |
- javascript | |
steps: | |
- name: Run Code Scanning | |
uses: department-of-veterans-affairs/codeql-tools/codeql-analysis@main | |
with: | |
language: ${{ matrix.language }} |