Browse Source

Fix and refine workflows (#199)

* Fix linter: ansible not found error
* Refine codeql: only run on *.go files
Loyalsoldier 5 years ago
parent
commit
e32c651573
2 changed files with 6 additions and 1 deletions
  1. 4 0
      .github/workflows/codeql-analysis.yml
  2. 2 1
      .github/workflows/linter.yml

+ 4 - 0
.github/workflows/codeql-analysis.yml

@@ -3,9 +3,13 @@ name: "CodeQL"
 on:
   push:
     branches: [master]
+    paths:
+      - "**/*.go"
   pull_request:
     # The branches below must be a subset of the branches above
     branches: [master]
+    paths:
+      - "**/*.go"
   schedule:
     - cron: '0 0 * * 1'
 

+ 2 - 1
.github/workflows/linter.yml

@@ -32,6 +32,7 @@ jobs:
         env:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
           VALIDATE_ALL_CODEBASE: false
+          VALIDATE_ANSIBLE: false
           VALIDATE_BASH: false
           VALIDATE_DOCKERFILE: false
           VALIDATE_DOCKERFILE_HADOLINT: false
@@ -44,4 +45,4 @@ jobs:
         uses: golangci/golangci-lint-action@v2
         with:
           version: v1.31
-          args: --config=.github/linters/.golangci.yml
+          args: --config=.github/linters/.golangci.yml