docs: add ARC IaC MCP tip callout and AI assistant integration section to README #3
This file contains hidden or 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: Trivy Full Scan | |
| "on": | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| trivy-full-scan: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Run Trivy vulnerability scanner | |
| uses: aquasecurity/trivy-action@master | |
| with: | |
| scan-type: fs | |
| scan-ref: . | |
| severity: HIGH,CRITICAL | |
| ignore-unfixed: true | |
| format: sarif | |
| output: trivy-results.sarif | |
| exit-code: 1 |