From e723e2ddf4c8f918f950eb600ca979cc4e966a3d Mon Sep 17 00:00:00 2001 From: jekkos Date: Thu, 2 Apr 2026 19:55:26 +0200 Subject: [PATCH] Disable opencode workflow + run docker build --- .github/workflows/build-release.yml | 6 +----- .github/workflows/opencode.yml | 33 ----------------------------- 2 files changed, 1 insertion(+), 38 deletions(-) delete mode 100644 .github/workflows/opencode.yml diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index d7433d35c..3fb2be667 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -2,10 +2,6 @@ name: Build and Release on: push: - branches: - - master - tags: - - '*' pull_request: branches: - master @@ -215,4 +211,4 @@ jobs: prerelease: true draft: false env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/opencode.yml b/.github/workflows/opencode.yml deleted file mode 100644 index f74dd4fb0..000000000 --- a/.github/workflows/opencode.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: opencode - -on: - issue_comment: - types: [created] - pull_request_review_comment: - types: [created] - -jobs: - opencode: - if: | - contains(github.event.comment.body, ' /oc') || - startsWith(github.event.comment.body, '/oc') || - contains(github.event.comment.body, ' /opencode') || - startsWith(github.event.comment.body, '/opencode') - runs-on: ubuntu-latest - permissions: - id-token: write - contents: read - pull-requests: read - issues: read - steps: - - name: Checkout repository - uses: actions/checkout@v6 - with: - persist-credentials: false - - - name: Run opencode - uses: anomalyco/opencode/github@latest - env: - ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} - with: - model: anthropic/claude-3-haiku-20240307 \ No newline at end of file