This repository has been archived by the owner on Feb 13, 2024. It is now read-only.
fix(event): add check for active dashboard config (#387) #168
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Review | |
on: | |
push: | |
paths: | |
- '**.go' | |
pull_request: | |
branches: | |
- master | |
- v2 | |
- development | |
jobs: | |
review: | |
name: Code Review | |
runs-on: ubuntu-latest | |
if: startsWith(github.head_ref, 'dependabot/') == false | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Run Semgrep | |
uses: returntocorp/semgrep-action@v1 | |
with: | |
config: | | |
p/ci | |
p/owasp-top-ten | |
p/golang | |
p/command-injection | |
p/security-audit | |
p/secrets |