Skip to content

Commit 42831a4

Browse files
committed
ensure userprompt is false on Github Action workflows
1 parent 4a9e23b commit 42831a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/issue-comment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
4444
run: |
4545
echo "Running MyCoder to implement PR for issue #${{ github.event.issue.number }}"
46-
mycoder --githubMode true "Implement a PR for GitHub issue #${{ github.event.issue.number }}. Please review the issue details and implement a solution according to the requirements. After implementation, create a pull request that addresses this issue."
46+
mycoder --githubMode true --userPrompt false "Implement a PR for GitHub issue #${{ github.event.issue.number }}. Please review the issue details and implement a solution according to the requirements. After implementation, create a pull request that addresses this issue."
4747
4848
- name: Run MyCoder Plan command
4949
if: contains(github.event.comment.body, '/mycoder plan')
@@ -52,4 +52,4 @@ jobs:
5252
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
5353
run: |
5454
echo "Running MyCoder to create implementation plan for issue #${{ github.event.issue.number }}"
55-
mycoder --githubMode true "Review GitHub issue #${{ github.event.issue.number }} and create an implementation plan. Post your plan as a comment on the issue. Be thorough and consider all requirements mentioned in the issue description."
55+
mycoder --githubMode true --userPrompt false "Review GitHub issue #${{ github.event.issue.number }} and create an implementation plan. Post your plan as a comment on the issue. Be thorough and consider all requirements mentioned in the issue description."

0 commit comments

Comments
 (0)