Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugoDocs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Oliff <christianoliff@pm.me>2022-10-18 16:25:06 +0300
committerGitHub <noreply@github.com>2022-10-18 16:25:06 +0300
commitab5a49c49d85374582515727dad3f68ce639325d (patch)
tree4c4967a75aa40bd83a35f01cc00c900fb71d063a
parent63b3e082e283ba08aee05974839e8bd2b9e4bffe (diff)
Create codeql-analysis GitHub Action (#1812)
-rw-r--r--.github/workflows/codeql-analysis.yml26
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
new file mode 100644
index 000000000..841383c96
--- /dev/null
+++ b/.github/workflows/codeql-analysis.yml
@@ -0,0 +1,26 @@
+name: "CodeQL"
+
+on:
+ schedule:
+ - cron: "0 0 1 * *"
+
+jobs:
+ analyze:
+ name: Analyze
+ runs-on: ubuntu-latest
+ permissions:
+ actions: read
+ contents: read
+ security-events: write
+
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v3
+
+ - name: Initialize CodeQL
+ uses: github/codeql-action/init@v2
+ with:
+ languages: 'javascript'
+
+ - name: Perform CodeQL Analysis
+ uses: github/codeql-action/analyze@v2