Skip to content

Commit 627da01

Browse files
Fix datadog debugging workflow example (#1009)
Co-authored-by: openhands <openhands@all-hands.dev>
1 parent fcf7610 commit 627da01

File tree

1 file changed

+2
-11
lines changed
  • examples/03_github_workflows/04_datadog_debugging

1 file changed

+2
-11
lines changed

examples/03_github_workflows/04_datadog_debugging/workflow.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,6 @@ on:
3434
description: Prefix for issue titles
3535
required: false
3636
default: 'DataDog Error: '
37-
max_errors:
38-
description: Maximum number of errors to fetch (only for log-query mode)
39-
required: false
40-
default: '5'
41-
llm_model:
42-
description: LLM model to use for analysis
43-
required: false
44-
default: openhands/claude-sonnet-4-5-20250929
4537

4638
permissions:
4739
contents: read
@@ -94,7 +86,7 @@ jobs:
9486
DD_SITE: ${{ secrets.DD_SITE }}
9587
LLM_API_KEY: ${{ secrets.LLM_API_KEY }}
9688
LLM_BASE_URL: ${{ secrets.LLM_BASE_URL }}
97-
LLM_MODEL: ${{ inputs.llm_model }}
89+
LLM_MODEL: <YOUR_LLM_MODEL>
9890
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9991
PYTHONPATH: ''
10092
run: |
@@ -107,8 +99,7 @@ jobs:
10799
--working-dir "/tmp/datadog-debug" \
108100
--issue-repo "${{ inputs.issue_repo }}" \
109101
--issue-parent "${{ inputs.issue_parent }}" \
110-
--issue-prefix "${{ inputs.issue_prefix }}" \
111-
--max-errors "${{ inputs.max_errors }}"
102+
--issue-prefix "${{ inputs.issue_prefix }}"
112103
113104
- name: Upload debugging artifacts
114105
if: always()

0 commit comments

Comments
 (0)