summaryrefslogtreecommitdiff
path: root/.github/workflows/codeql.yml
blob: 98c12583ae8df63da0c0dd6c214ccf851dd7faa7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: "Perform CodeQL Analysis"

on:
  push:
    branches:
      - equuleus
    paths:
      - '**'
      - '!.github/**'
      - '!**/*.md'
  pull_request_target:
    # The branches below must be a subset of the branches above
    branches:
      - equuleus
    paths:
      - '**'
      - '!.github/**'
      - '!**/*.md'
  schedule:
    - cron: '22 10 * * 0'
  workflow_dispatch:

permissions:
  actions: read
  contents: read
  security-events: write

jobs:
  codeql-analysis-call:
    uses: vyos/.github/.github/workflows/codeql-analysis.yml@equuleus
    secrets: inherit
    with:
      languages: "['python']"