Skip to content

Commit b0cf212

Browse files
authored
feat(gemini): add support for gemini code assist (#51)
1 parent 51576db commit b0cf212

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

.gemini/config.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# https://developers.google.com/gemini-code-assist/docs/customize-gemini-behavior-github
2+
have_fun: false
3+
code_review:
4+
disable: false
5+
comment_severity_threshold: MEDIUM
6+
max_review_comments: -1
7+
pull_request_opened:
8+
help: false
9+
summary: true
10+
code_review: true

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ You can use this package as part of your MLOps toolkit or platform (e.g., Model
3434
- [Workflows](#workflows)
3535
- [Tools](#tools)
3636
- [Automation](#automation-1)
37+
- [AI Assistant: Gemini Code Assist](#ai-assistant-gemini-code-assist)
3738
- [Commits: Commitizen](#commits-commitizen)
39+
- [Dependabot: Dependabot](#dependabot-dependabot)
3840
- [Git Hooks: Pre-Commit](#git-hooks-pre-commit)
3941
- [Tasks: Just](#tasks-just)
4042
- [CI/CD](#cicd)
@@ -322,6 +324,15 @@ This sections motivates the use of developer tools to improve your coding experi
322324

323325
Pre-defined actions to automate your project development.
324326

327+
### AI Assistant: [Gemini Code Assist](https://developers.google.com/gemini-code-assist/docs/review-github-code)
328+
329+
- **Motivations**:
330+
- Increase your coding productivity
331+
- Get code suggestions and completions
332+
- Reduce the time spent on reviewing code
333+
- **Limitations**:
334+
- Can generate wrong code, reviews, or summaries
335+
325336
### Commits: [Commitizen](https://commitizen-tools.github.io/commitizen/)
326337

327338
- **Motivations**:
@@ -333,6 +344,17 @@ Pre-defined actions to automate your project development.
333344
- **Alternatives**:
334345
- Do It Yourself (DIY)
335346

347+
### Dependabot: [Dependabot](https://docs.github.com/en/code-security/getting-started/dependabot-quickstart-guide)
348+
349+
- **Motivations**:
350+
- Avoid security issues
351+
- Avoid breaking changes
352+
- Update your dependencies
353+
- **Limitations**:
354+
- Can break your code
355+
- **Alternatives**:
356+
- Do It Yourself (DIY)
357+
336358
### Git Hooks: [Pre-Commit](https://pre-commit.com/)
337359

338360
- **Motivations**:

0 commit comments

Comments
 (0)