Skip to content

Commit 29582bf

Browse files
authored
Merge branch 'master' into whitesource/configure
2 parents 29b5fe6 + a41e569 commit 29582bf

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

.github/workflows/codeball.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,20 @@ on:
33
pull_request:
44
workflow_dispatch:
55

6+
permissions:
7+
contents: read
8+
issues: write
9+
pull-requests: write
10+
611
jobs:
712
codeball_job:
813
runs-on: ubuntu-latest
914
name: Run Codeball
1015
steps:
1116
- name: Codeball AI Actions
12-
uses: sturdy-dev/codeball-action@v1
17+
uses: sturdy-dev/codeball-action@v2
1318
with:
14-
do-label: "true" # Configure if the action should label approved contributions
15-
label-name: "codeball:approved" # Configure the label name to set if Codeball approves the contribution
16-
# do-approve: "true" # Configure if the action should approve PRs that have been approved by Codeball
19+
approvePullRequests: "false"
20+
labelPullRequestsWhenApproved: "true"
21+
labelPullRequestsWhenReviewNeeded: "false"
22+
failJobsWhenReviewNeeded: "false"

.github/workflows/lint-and-test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ jobs:
3838
- name: Lint Code Base
3939
uses: github/super-linter@v4
4040
env:
41-
VALIDATE_ALL_CODEBASE: false
41+
VALIDATE_ALL_CODEBASE: true
42+
FILTER_REGEX_EXCLUDE: '^(.*/)?(node_modules|.bundle|files|_site|_data|_img)/'
4243
DEFAULT_BRANCH: master
4344
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)