BLOG-79 AI review bot #82
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "BLOG-79_ai_review_bot"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Description
Package Changes
No response
Screenshots
No response
Reference
Resolves #79
Checklist
/improve
command7e29ade13f
toe27f911757
BLOG-79_ai_review_botto BLOG-79 AI review bot/improve
e27f911757
to1c58da9b00
1c58da9b00
to3e52617e31
/improve
/improve
PR Code Suggestions ✨
Use correct PR identifier in API URL
The Gitea API for pull request reviews expects the pull request number (index) in
the URL path, not the branch reference name. Using
gitea.ref_name
will result in anincorrect API endpoint. Replace
gitea.ref_name
withgitea.pull_request.number
tocorrectly target the pull request.
.gitea/workflows/pr_agent.yaml [15-20]
Suggestion importance[1-10]: 10
__
Why: The suggestion correctly identifies a critical functional bug. Using
gitea.ref_name
instead ofgitea.pull_request.number
in the Gitea API URL will cause thecurl
command to fail, preventing the workflow from commenting on the PR.Pull request closed