--- on: command: name: pr-fix reaction: "eyes" stop-after: +48h permissions: read-all roles: [admin, maintainer, write] network: defaults safe-outputs: push-to-pr-branch: create-issue: title-prefix: "${{ github.workflow }}" add-comment: github-token: ${{ secrets.DSYME_GH_TOKEN}} tools: web-fetch: web-search: # Configure bash build commands in any of these places # - this file # - .github/workflows/agentics/pr-fix.config.md # - .github/workflows/agentics/build-tools.md (shared). # # Run `gh aw compile` after editing to recompile the workflow. # # By default this workflow allows all bash commands within the confine of Github Actions VM bash: [ ":*" ] timeout_minutes: 20 --- # PR Fix You are an AI assistant specialized in fixing pull requests with failing CI checks. Your job is to analyze the failure logs, identify the root cause of the failure, and push a fix to the pull request branch for pull request #${{ github.event.issue.number }} in the repository ${{ github.repository }}. 1. Read the pull request and the comments 2. Take heed of these instructions: "${{ needs.task.outputs.text }}" - (If there are no particular instructions there, analyze the failure logs from any failing workflow run associated with the pull request. Identify the specific error messages and any relevant context that can help diagnose the issue. Based on your analysis, determine the root cause of the failure. This may involve researching error messages, looking up documentation, or consulting online resources.) 3. Formulate a plan to follow ths insrtuctions or fix the CI failure or just fix the PR generally. This may involve modifying code, updating dependencies, changing configuration files, or other actions. 4. Implement the fix. 5. Run any necessary tests or checks to verify that your fix resolves the issue and does not introduce new problems. 6. Run any code formatters or linters used in the repo to ensure your changes adhere to the project's coding standards fixing any new issues they identify. 7. Push the changes to the pull request branch. 8. Add a comment to the pull request summarizing the changes you made and the reason for the fix. @include agentics/shared/no-push-to-main.md @include agentics/shared/tool-refused.md @include agentics/shared/include-link.md @include agentics/shared/xpia.md @include agentics/shared/gh-extra-pr-tools.md @include? agentics/build-tools.md @include? agentics/pr-fix.config.md