File tree 2 files changed +17
-12
lines changed
2 files changed +17
-12
lines changed Original file line number Diff line number Diff line change 11
11
permissions :
12
12
contents : write
13
13
14
+ if : github.actor != 'github-actions[bot]'
15
+
14
16
steps :
15
17
- uses : actions/checkout@v4
16
18
with :
@@ -24,18 +26,16 @@ jobs:
24
26
cache : pnpm
25
27
- run : pnpm install
26
28
- run : pnpm run lint:fix
29
+ - run : git add .
27
30
28
- - id : diff
29
- run : |
30
- if [[ -n $(git status --porcelain) ]]; then
31
- echo 'changes=true' >>"$GITHUB_OUTPUT"
32
- fi
31
+ - uses : qoomon/actions--create-commit@v1
32
+ id : actions--create-commit
33
+ with :
34
+ message : |
35
+ 🎨 pnpm run lint:fix
33
36
34
- - if : steps.diff.outputs.changes == 'true'
35
- name : Commit and push
36
- run : |
37
- git config user.name 'github-actions[bot]'
38
- git config user.email '41898282+github-actions[bot]@users.noreply.github.com'
37
+ [dependabot skip]
38
+ skip-empty : true
39
39
40
- git commit --all --message '🎨 pnpm run lint:fix' --message '[dependabot skip]'
41
- git push
40
+ - if : ${{ steps.actions--create-commit.outputs.commit }}
41
+ run : git push
Original file line number Diff line number Diff line change @@ -107,6 +107,11 @@ LINEAR_PAT=[<linear-personal-access-token>]
107
107
OAUTH2_ENDPOINT=[< endpoint> ]
108
108
OAUTH2_CLIENT_ID=[< client-id> ]
109
109
OAUTH2_CLIENT_SECRET=[< client-secret> ]
110
+
111
+ # Set to true to use the knowledge base features.
112
+ ON_PREM_KNOWLEDGE_BASE=[true]
113
+ # The branch which CodeRabbit will store the knowledge base json files in.
114
+ ON_PREM_KNOWLEDGE_BASE_BRANCH=[coderabbitai/data]
110
115
```
111
116
112
117
::: note
You can’t perform that action at this time.
0 commit comments