Skip to content

refactor: To ensure telemetry is only enabled when both conditions are met. #1333

refactor: To ensure telemetry is only enabled when both conditions are met.

refactor: To ensure telemetry is only enabled when both conditions are met. #1333

Workflow file for this run

name: "CodeQL"
on:
merge_group:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
analyze:
name: Analyze
strategy:
fail-fast: false
matrix:
goos: [linux, windows]
goarch: [amd64, arm64]
language: [go]
runs-on: ubuntu-latest
env:
IS_NOT_MERGE_GROUP: ${{ github.event_name != 'merge_group' }}
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}
timeout-minutes: 90
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repository
if: env.IS_NOT_MERGE_GROUP
uses: actions/checkout@v4
- name: Setup go
if: env.IS_NOT_MERGE_GROUP
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Initialize CodeQL
if: env.IS_NOT_MERGE_GROUP
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Autobuild
if: env.IS_NOT_MERGE_GROUP
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
if: env.IS_NOT_MERGE_GROUP
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"