Skip to content

fix(ui): prefill the Builder from the report being edited (ADR D86) #723

fix(ui): prefill the Builder from the report being edited (ADR D86)

fix(ui): prefill the Builder from the report being edited (ADR D86) #723

Workflow file for this run

name: CodeQL
on:
push:
branches: [master]
pull_request:
branches: [master]
schedule:
# Weekly scan (Mondays 06:00 UTC) to catch newly disclosed patterns.
- cron: "0 6 * * 1"
permissions:
contents: read
concurrency:
group: codeql-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze:
name: Analyze (C#)
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
steps:
- uses: actions/checkout@v7
- name: Setup .NET (8 + 9)
uses: actions/setup-dotnet@v6
with:
dotnet-version: |
8.0.x
9.0.x
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: csharp
queries: security-and-quality
config-file: ./.github/codeql/codeql-config.yml
- name: Build
run: dotnet build NeoReports.sln --configuration Release
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
with:
category: "/language:csharp"