fix issue #101: Allow to collapse comments & guidance #12
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: Brakeman | |
on: | |
pull_request: | |
branches: | |
master | |
jobs: | |
brakeman: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
# Will run Brakeman checks on dependencies | |
# https://github.com/marketplace/actions/brakeman-action | |
- name: Brakeman | |
uses: artplan1/[email protected] | |
with: | |
flags: "--color" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |