diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml deleted file mode 100644 index 08d810e..0000000 --- a/.github/workflows/security.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Security Review - -permissions: - pull-requests: write # Needed for leaving PR comments - contents: read - -on: - pull_request: - issue_comment: - types: [created] - -jobs: - security: - runs-on: ubuntu-latest - if: | - github.event_name == 'pull_request' || - (github.event_name == 'issue_comment' && - github.event.issue.pull_request && - contains(github.event.comment.body, '@claudecop') && - (github.event.comment.author_association == 'OWNER' || - github.event.comment.author_association == 'MEMBER' || - github.event.comment.author_association == 'COLLABORATOR')) - steps: - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - with: - ref: ${{ github.event.pull_request.head.sha || github.sha }} - fetch-depth: 2 - - - uses: anthropics/claude-code-security-review@68982a6bf10d545e94dd0390af08306d94ef684c # main - with: - comment-pr: true - claude-api-key: ${{ secrets.CLAUDE_API_KEY }}