diff options
author | Joe Chen <jc@unknwon.io> | 2023-07-09 10:59:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-09 10:59:12 -0400 |
commit | 3be3ae500b4b4792db94f4a8d46943b783400681 (patch) | |
tree | 51005a40b243b1315005610e99c6406fa4a54d37 | |
parent | 9ab8bd67857172696d44f81901deb0fb1d9937b5 (diff) |
ci: remove Codeball
-rw-r--r-- | .github/workflows/codeball.yml | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/.github/workflows/codeball.yml b/.github/workflows/codeball.yml deleted file mode 100644 index 6b6c7a80..00000000 --- a/.github/workflows/codeball.yml +++ /dev/null @@ -1,35 +0,0 @@ -# Docs: https://github.com/sturdy-dev/codeball-action -name: Codeball -on: [ pull_request ] - -permissions: - contents: read - issues: write - pull-requests: write - -jobs: - codeball: - runs-on: ubuntu-latest - name: Codeball - steps: - - # Start a new Codeball review job - # This step is asynchronous and will return a job id - - name: Trigger Codeball - id: codeball_baller - uses: sturdy-dev/codeball-action/baller@v2 - - - # Wait for Codeball to return the status - - name: Get Status - id: codeball_status - uses: sturdy-dev/codeball-action/status@v2 - with: - codeball-job-id: ${{ steps.codeball_baller.outputs.codeball-job-id }} - - # If Codeball approved the contribution, approve the PR - - name: Approve PR - uses: sturdy-dev/codeball-action/approver@v2 - if: ${{ steps.codeball_status.outputs.approved == 'true' }} - with: - message: "Codeball: LGTM! :+1:" |