-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #108 from nims-dpfc/develop/v1.1.0
Develop/v1.1.0
- Loading branch information
Showing
67 changed files
with
3,892 additions
and
285 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,14 @@ | ||
## issue | ||
<!--関連issueを記載する--> | ||
## Related Issue | ||
<!--Please specify the related issue(s)--> | ||
|
||
## 変更内容 | ||
<!--対応内容や変更内容を記載する--> | ||
## Changes | ||
<!--Describe the implementation details and changes made--> | ||
|
||
## 実施していない内容 | ||
<!--今回の変更で対応しない・できない内容を記載する--> | ||
## Out of Scope | ||
<!--List any items that are not addressed or out of scope for this change--> | ||
|
||
以下、バリデーション機能で不具合の指摘が上がっているが、本件対応内容や変更方針がまとまっていないため、次回のバージョンに回す。また以下の追加機能も次回のバージョンに回す。 | ||
## Verification | ||
<!--List the items to be verified in this pull request--> | ||
|
||
## 検証内容 | ||
<!--プルリクで確認する内容を列挙する--> | ||
|
||
- [ ] CIのテストがパスする | ||
- [ ] 対象のスクリプトの変更に問題がないか | ||
- [ ] CI tests pass successfully | ||
- [ ] No issues with the modified scripts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ on: | |
push: | ||
branches: | ||
- "*" | ||
- "**" | ||
- "!docs*" | ||
- "!doc*" | ||
pull_request: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: PR-Agent | ||
|
||
on: | ||
pull_request: | ||
types: [opened, reopened, synchronize] | ||
issue_comment: | ||
types: [created, edited] | ||
workflow_dispatch: | ||
|
||
permissions: | ||
issues: write | ||
pull-requests: write | ||
|
||
jobs: | ||
pr_agent_job: | ||
runs-on: ubuntu-latest | ||
name: Run pr agent on every pull request | ||
steps: | ||
- name: PR Agent action step | ||
id: pragent | ||
uses: Codium-ai/pr-agent@main | ||
env: | ||
OPENAI_KEY: ${{ secrets.OPENAI_KEY }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_ACTION.AUTO_REVIEW: true | ||
GITHUB_ACTION.AUTO_DESCRIBE: true | ||
GITHUB_ACTION.AUTO_IMPROVE: true |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.