Scanning all frameworks by default #40
Workflow file for this run
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: Suggest autofixes with Kubescape for PR by reviews | |
on: | |
pull_request_target: | |
jobs: | |
kubescape-fix-pr-reviews: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
ref: ${{github.event.pull_request.head.ref}} | |
repository: ${{github.event.pull_request.head.repo.full_name}} | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/changed-files@v35 | |
- uses: kubescape/github-action@main | |
with: | |
account: ${{secrets.KUBESCAPE_ACCOUNT}} | |
accessKey: ${{secrets.KUBESCAPE_ACCESS_TOKEN}} | |
server: ${{ vars.KUBESCAPE_SERVER }} | |
files: ${{ steps.changed-files.outputs.all_changed_files }} | |
fixFiles: true | |
format: "sarif" | |
- name: PR Suggester according to SARIF file | |
if: github.event_name == 'pull_request_target' | |
uses: HollowMan6/[email protected] | |
with: | |
file: 'results.sarif' | |
level: warning |