From 0a35f3aa4ceeadc7970914e997f14ba4409fa498 Mon Sep 17 00:00:00 2001 From: ryoppippi <1560508+ryoppippi@users.noreply.github.com> Date: Fri, 12 Dec 2025 10:53:44 +0000 Subject: [PATCH] Remove security scanner action --- .github/workflows/security.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .github/workflows/security.yml diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml deleted file mode 100644 index 08d810e5..00000000 --- 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 }}