Skip to content

feat(slack): helix-org Slack transport via ServiceConnection tiers + processor routing #414

feat(slack): helix-org Slack transport via ServiceConnection tiers + processor routing

feat(slack): helix-org Slack transport via ServiceConnection tiers + processor routing #414

Workflow file for this run

name: CodeQL
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
# Weekly catch-all so main keeps a fresh scan even with no pushes.
- cron: '23 4 * * 1'
# Cancel superseded runs on the same ref to save CI minutes.
concurrency:
group: codeql-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
# Our first-party code. Container-image CVEs are intentionally
# out of scope here (Trivy image scanning was retired in e83b08285).
language: [go, javascript-typescript, python]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
config-file: ./.github/codeql/codeql-config.yml
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: /language:${{ matrix.language }}