fix(ci): correct image digest separator
Some checks failed
CI / ci (push) Has been cancelled
Deploy / deploy (push) Has been cancelled

This commit is contained in:
2026-04-30 12:20:26 +02:00
parent ba4d3fc89d
commit ab6dabd542
232 changed files with 22956 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
# SWE-bench Task: Fix the Issue
You are solving a software engineering task from the SWE-bench benchmark.
## Problem Statement
{{ input }}
## Instructions
1. **Understand the problem**: Read the problem statement carefully. Identify which files and functions are involved.
2. **Explore the codebase**: Use Read, Glob, and Grep to find the relevant source files. Understand the existing code before making changes.
3. **Implement a minimal fix**: Make the smallest change that correctly solves the problem. Do not refactor unrelated code.
4. **Verify your fix**: Run the project's test suite to confirm your changes work and do not break existing tests.
## Constraints
- Make minimal, focused changes — only modify what is necessary to fix the issue.
- Do not add unrelated improvements, documentation, or refactoring.
- Do not create new files unless the fix requires it.
- Ensure all existing tests continue to pass after your changes.