Skip to content

Commit 6da9d5a

Browse files
matejclaude
andcommitted
Rename SAST workflow to Code Review
- Rename sast.yml to code-review.yml - Update workflow and job names to reflect general code review - Remove push trigger (only PRs and manual dispatch) - Remove exclude-directories and run-every-commit options Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 39c5be1 commit 6da9d5a

2 files changed

Lines changed: 20 additions & 25 deletions

File tree

.github/workflows/code-review.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Code Review
2+
3+
on:
4+
pull_request:
5+
workflow_dispatch:
6+
7+
jobs:
8+
code-review:
9+
runs-on: ubuntu-24.04
10+
permissions:
11+
contents: read
12+
pull-requests: write
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- uses: ./
17+
with:
18+
comment-pr: true
19+
upload-results: true
20+
claude-api-key: ${{ secrets.CLAUDE_API_KEY }}

.github/workflows/sast.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

0 commit comments

Comments
 (0)