From 3921bd8bbdaa39c35127c18219cbf37dbfacc199 Mon Sep 17 00:00:00 2001 From: Jazz Turner-Baggs <473256+jazzz@users.noreply.github.com> Date: Thu, 19 Feb 2026 09:13:38 -0800 Subject: [PATCH] Run CI action on push to Main (#72) * Update ci to run on push to main * Remove stale actions --- .github/workflows/ci.yml | 7 +++++++ .github/workflows/claude-code.yml | 23 ----------------------- 2 files changed, 7 insertions(+), 23 deletions(-) delete mode 100644 .github/workflows/claude-code.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c17caac..98a789b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,13 @@ name: ci on: + push: + branches: + - main + paths-ignore: + - "**README.md" + - ".gitignore" + - "LICENSE" pull_request: branches: - main diff --git a/.github/workflows/claude-code.yml b/.github/workflows/claude-code.yml deleted file mode 100644 index 745f186..0000000 --- a/.github/workflows/claude-code.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Claude Code Review - -on: - issue_comment: - types: [created] - pull_request: - types: [opened, synchronize] - -permissions: - contents: read - id-token: write - -jobs: - claude: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: anthropics/claude-code-action@beta - with: - anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} - experimental_allowed_domains: | - .github.com - .githubusercontent.com \ No newline at end of file