summaryrefslogtreecommitdiff
path: root/.github/workflows/codeql-analysis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/codeql-analysis.yml')
-rw-r--r--.github/workflows/codeql-analysis.yml13
1 files changed, 9 insertions, 4 deletions
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index a8329ff7c..fbdcf8a26 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -1,16 +1,21 @@
-name: "Code scanning - action"
+name: CI
on:
+ # Trigger the workflow on push or pull requests, but only for the
+ # master branch
push:
+ branches:
+ - master
+ - '*/ci'
pull_request:
+ branches:
+ - master
schedule:
- cron: '0 0 * * 4'
jobs:
- CodeQL-Build:
-
+ codeql:
runs-on: ubuntu-latest
-
steps:
- name: Checkout repository
uses: actions/checkout@v2