-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add env value merging feature #4
Conversation
PR Description updated to latest commit (cf76df0) |
PR Review
Code feedback:
✨ Review tool usage guide:Overview: The tool can be triggered automatically every time a new PR is opened, or can be invoked manually by commenting on any PR.
See the review usage page for a comprehensive guide on using this tool. |
PR Code Suggestions
✨ Improve tool usage guide:Overview:
See the improve usage page for a comprehensive guide on using this tool. |
merged values are expected: https://github.com/idubnori/pr-agent-wiki-conf/actions/runs/8540747257/job/23399813380#step:4:12 |
Type
enhancement, documentation
Description
pr_code_suggestions.extra_instructions
環境変数を追加しました。extra_instructions
の設定と管理を容易にする新機能についての説明を追加しました。action.yml
に、環境変数から追加の指示を連結し、common_instructions
とマージするconcat_env_value
関数を実装しました。Changes walkthrough
pr-agent.yml
GitHub Actions設定にテストコード提案の指示を追加
.github/workflows/pr-agent.yml
pr_code_suggestions.extra_instructions
環境変数にテストコードの変更または追加の必要性について考え、提案するための指示を追加。
action.yml
環境変数からの指示をマージする機能の追加
action.yml
concat_env_value
関数を追加。common_instructions
に加えて、環境変数で指定された追加の指示をextra_instructions
にマージする機能を実装。README.md
READMEにテストコード提案機能の説明を追加
README.md
extra_instructions
の設定と管理を容易にする機能を提供する説明を追加。common_instructions
と環境変数extra_instructions
をWiki設定値とマージするプロセスの説明を更新。