branch: elpa/aidermacs commit 87a493a5300462ef0ffbb7b1359aa5b467874216 Author: Philip Zhan <h6z...@gmail.com> Commit: Philip Zhan <h6z...@gmail.com>
Add Doctor PR action file --- .github/workflows/doctor-pr.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/.github/workflows/doctor-pr.yml b/.github/workflows/doctor-pr.yml new file mode 100644 index 0000000000..77b9931f73 --- /dev/null +++ b/.github/workflows/doctor-pr.yml @@ -0,0 +1,35 @@ +name: Doctor PR +on: + workflow_dispatch: + inputs: + base_branch_name: + required: true + type: string + base_pull_request_number: + required: true + type: string + review_id: + required: true + type: string + author_username: + required: true + type: string + aider_args: + required: true + type: string + aider_api_key: + required: true + type: string +jobs: + doctor-pr: + runs-on: ubuntu-latest + steps: + - name: Doctor PR + uses: Doctor-PR/dr-pr-action@v0.0.9 + with: + base_branch_name: ${{inputs.base_branch_name}} + base_pull_request_number: ${{inputs.base_pull_request_number}} + review_id: ${{inputs.review_id}} + author_username: ${{inputs.author_username}} + aider_args: ${{inputs.aider_args}} + aider_api_key: ${{inputs.aider_api_key}}