We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97798f7 commit f9357c4Copy full SHA for f9357c4
.github/workflows/github_comment_trigger.yml
@@ -11,13 +11,9 @@ permissions:
11
contents: write
12
pull-requests: write
13
issues: write
14
-
15
-env: # グローバル環境変数を設定
16
- LLM_CODER_COMMAND: "/llm-coder" # LLM Coderコマンド
17
18
jobs:
19
llm-coder:
20
- if: contains(github.event.comment.body, env.LLM_CODER_COMMAND)
+ if: contains(github.event.comment.body, '/llm-coder')
21
runs-on: ubuntu-latest
22
steps:
23
- name: Checkout repository
@@ -29,7 +25,7 @@ jobs:
29
25
- name: Run LLM Coder Action
30
26
uses: igtm/llm-coder-action@main
31
27
with:
32
- llm_coder_command: ${{ env.LLM_CODER_COMMAND }}
28
+ llm_coder_command: '/llm-coder'
33
llm_model: ${{ vars.LLM_MODEL || 'gpt-4.1-nano' }}
34
github_token: ${{ secrets.GH_PAT }}
35
extra_pip: "boto3 poetry poethepoet"
0 commit comments