feat: adding word actions, not done, and lots of failing tests #4

Merged
azpect merged 15 commits from feature/word-motions into master 2026-04-04 11:43:47 -07:00
2 changed files with 14 additions and 10 deletions
Showing only changes of commit 24eea1d08e - Show all commits

View File

@ -13,18 +13,17 @@ jobs:
env: env:
CONFIG.GIT_PROVIDER: "gitea" CONFIG.GIT_PROVIDER: "gitea"
GITEA.URL: "https://git.gophernest.net" GITEA__URL: "https://git.gophernest.net"
GITEA.PERSONAL_ACCESS_TOKEN: ${{ secrets.GIT_TOKEN }} GITEA__PERSONAL_ACCESS_TOKEN: ${{ secrets.GIT_TOKEN }}
# MANDATORY: Even on Gitea, the Action wrapper often looks for this name # MANDATORY: Even on Gitea, the Action wrapper often looks for this name
GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }} GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }}
# KEY CHANGE: The variable name MUST be this for AI Studio # AI Provider (CRITICAL: Use double underscores)
GOOGLE_AI_STUDIO.GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }} CONFIG__MODEL_PROVIDER: "google"
GOOGLE_AI_STUDIO__GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }}
CONFIG__MODEL: "gemini/gemini-1.5-flash"
# KEY CHANGE: The model name MUST have the 'gemini/' prefix # Automation Triggers
CONFIG.MODEL: "gemini/gemini-3-flash" GITEA__PR_OPENED_COMMANDS: '["/review", "/describe"]'
GITEA__PR_SYNCHRONIZED_COMMANDS: '["/review"]'
# Ensures it runs even if you just push code to an existing PR
GITEA.PR_OPENED_COMMANDS: '["/review", "/describe"]'
GITEA.PR_SYNCHRONIZED_COMMANDS: '["/review"]'

5
.pr_agent.toml Normal file
View File

@ -0,0 +1,5 @@
[pr_reviewer]
extra_instructions = "This is a Go project for a terminal-based text editor. Focus on performance, memory management, and clean TUI (Terminal User Interface) logic."
[pr_description]
publish_description_as_comment = true