Skip to content
This repository has been archived by the owner on Jun 4, 2024. It is now read-only.

Enables debug logging for eventhandler by config and env variable #1052

Enables debug logging for eventhandler by config and env variable

Enables debug logging for eventhandler by config and env variable #1052

Workflow file for this run

name: "CodeQL"
on:
push:
branches:
- master
pull_request:
branches:
- master
paths-ignore:
- 'rfd/**'
- '**.md'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'go', 'javascript' ]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
cache: false
go-version-file: go.mod
if: ${{ matrix.language == 'go' }}
- name: Initialize the CodeQL tools for scanning
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
timeout-minutes: 5
- name: Autobuild
uses: github/codeql-action/autobuild@v2
timeout-minutes: 30
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"
timeout-minutes: 10