Skip to content

Commit

Permalink
Merge pull request #35 from kdenhartog/patch-1
Browse files Browse the repository at this point in the history
Create security-action.yml
  • Loading branch information
rillian authored Sep 14, 2023
2 parents fc301c4 + dfcde1d commit 564365b
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/security-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: security
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches: [main]

jobs:
security:
name: security
runs-on: ubuntu-latest
strategy:
fail-fast: false
# CodeQL analyzed languages
matrix:
language: [ 'generic', 'javascript', 'python', 'ruby', 'go' ]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: brave/security-action@main
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
slack_token: ${{ secrets.HOTSPOTS_SLACK_TOKEN }} # optional
# by default assignees will be thypon and bcaller, modify accordingly
assignees: |
kdenhartog
thypon
bcaller
codeql_config: ./.github/codeql/codeql-config.yml # optional

0 comments on commit 564365b

Please sign in to comment.