Skip to content

fix(rest): emit the projected export header on an empty result set (#3547) #9895

fix(rest): emit the projected export header on an empty result set (#3547)

fix(rest): emit the projected export header on an empty result set (#3547) #9895

Workflow file for this run

name: CodeQL Security Analysis
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
# Run at 02:00 UTC every Monday
- cron: '0 2 * * 1'
# A superseded analysis of an outdated commit has no value — cancel it. PR runs
# group by PR number; push/schedule runs group by ref, so a newer main push
# cancels only an in-flight main analysis (the newer commit gets analyzed).
concurrency:
group: codeql-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: ['javascript']
steps:
- name: Checkout repository
uses: actions/checkout@v7
- 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: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
with:
category: "/language:${{matrix.language}}"