├── .github └── workflows │ ├── ci.yml │ ├── depup.yml │ ├── release.yml │ └── reviewdog.yml ├── LICENSE ├── README.md ├── action.yml ├── examples ├── example-github-pr-check.png └── example-github-pr-review.png ├── script.sh └── test └── using_bundler ├── Gemfile └── Gemfile.lock /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reviewdog/action-brakeman/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/depup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reviewdog/action-brakeman/HEAD/.github/workflows/depup.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reviewdog/action-brakeman/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/reviewdog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reviewdog/action-brakeman/HEAD/.github/workflows/reviewdog.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reviewdog/action-brakeman/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reviewdog/action-brakeman/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reviewdog/action-brakeman/HEAD/action.yml -------------------------------------------------------------------------------- /examples/example-github-pr-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reviewdog/action-brakeman/HEAD/examples/example-github-pr-check.png -------------------------------------------------------------------------------- /examples/example-github-pr-review.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reviewdog/action-brakeman/HEAD/examples/example-github-pr-review.png -------------------------------------------------------------------------------- /script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reviewdog/action-brakeman/HEAD/script.sh -------------------------------------------------------------------------------- /test/using_bundler/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reviewdog/action-brakeman/HEAD/test/using_bundler/Gemfile -------------------------------------------------------------------------------- /test/using_bundler/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reviewdog/action-brakeman/HEAD/test/using_bundler/Gemfile.lock --------------------------------------------------------------------------------