Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .gemini/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# https://developers.google.com/gemini-code-assist/docs/customize-gemini-behavior-github
have_fun: false
code_review:
disable: false
comment_severity_threshold: MEDIUM
max_review_comments: -1
pull_request_opened:
help: false
summary: true
code_review: true
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ You can use this package as part of your MLOps toolkit or platform (e.g., Model
- [Workflows](#workflows)
- [Tools](#tools)
- [Automation](#automation-1)
- [AI Assistant: Gemini Code Assist](#ai-assistant-gemini-code-assist)
- [Commits: Commitizen](#commits-commitizen)
- [Dependabot: Dependabot](#dependabot-dependabot)
- [Git Hooks: Pre-Commit](#git-hooks-pre-commit)
- [Tasks: Just](#tasks-just)
- [CI/CD](#cicd)
Expand Down Expand Up @@ -322,6 +324,15 @@ This sections motivates the use of developer tools to improve your coding experi

Pre-defined actions to automate your project development.

### AI Assistant: [Gemini Code Assist](https://developers.google.com/gemini-code-assist/docs/review-github-code)

- **Motivations**:
- Increase your coding productivity
- Get code suggestions and completions
- Reduce the time spent on reviewing code
- **Limitations**:
- Can generate wrong code, reviews, or summaries

### Commits: [Commitizen](https://commitizen-tools.github.io/commitizen/)

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

### Dependabot: [Dependabot](https://docs.github.com/en/code-security/getting-started/dependabot-quickstart-guide)

- **Motivations**:
- Avoid security issues
- Avoid breaking changes
- Update your dependencies
- **Limitations**:
- Can break your code
- **Alternatives**:
- Do It Yourself (DIY)

### Git Hooks: [Pre-Commit](https://pre-commit.com/)

- **Motivations**:
Expand Down