chore(renovate): pin Update reviewdog/action-shellcheck digest to 72365a5 #153
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#### THIS FILE IS MANAGED BY AN AUTOMATED WORKFLOW #### | |
name: Codeball | |
on: | |
pull_request: | |
branches: | |
- main | |
- master | |
- "!repo-sync/**" | |
- "!renovate/**" | |
- "!update/pre-commit-hooks/**" | |
workflow_dispatch: | |
permissions: | |
contents: read | |
issues: write | |
pull-requests: write | |
checks: write | |
statuses: write | |
actions: read | |
# One build per branch, cancel out of date builds | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
codeball-review: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 10 | |
if: ${{ !github.event.pull_request.draft }} | |
name: Run Codeball Code Review | |
steps: | |
- name: Codeball AI Actions | |
uses: sturdy-dev/codeball-action@v2 | |
with: | |
approvePullRequests: "false" | |
labelPullRequestsWhenApproved: "true" | |
labelPullRequestsWhenReviewNeeded: "true" | |
failJobsWhenReviewNeeded: "false" |