This repository was archived by the owner on Aug 16, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +17
-12
lines changed Expand file tree Collapse file tree 2 files changed +17
-12
lines changed Original file line number Diff line number Diff line change 1111 permissions :
1212 contents : write
1313
14+ if : github.actor != 'github-actions[bot]'
15+
1416 steps :
1517 - uses : actions/checkout@v4
1618 with :
@@ -24,18 +26,16 @@ jobs:
2426 cache : pnpm
2527 - run : pnpm install
2628 - run : pnpm run lint:fix
29+ - run : git add .
2730
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
3336
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
3939
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>]
107107OAUTH2_ENDPOINT=[< endpoint> ]
108108OAUTH2_CLIENT_ID=[< client-id> ]
109109OAUTH2_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]
110115```
111116
112117::: note
You can’t perform that action at this time.
0 commit comments