Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/on-check-failure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,17 @@ jobs:
contents: write
pull-requests: write
actions: read
uses: ./.github/workflows/reusable-autofix.yml
uses: ./.github/workflows/reusable-check-fixer.yml
with:
pr_number: ${{ fromJson(needs.should-run.outputs.pr_number) }}
failed_workflow: ${{ needs.should-run.outputs.failed_workflow }}
failed_run_id: ${{ needs.should-run.outputs.failed_run_id }}
bot_username: ${{ vars.EGG_BOT_USERNAME }}
branch_prefix: ${{ vars.EGG_BRANCH_PREFIX }}
config_file: "shared/check-fixers.yml"
prompt_script: "action/build-check-fixer-prompt.sh"
# action_ref: jwbron/egg/action@main # Cannot be passed dynamically; hardcoded in reusable workflow
timeout: "60"
timeout: "15"
secrets:
BOT_APP_ID: ${{ secrets.BOT_APP_ID }}
BOT_APP_PRIVATE_KEY: ${{ secrets.BOT_APP_PRIVATE_KEY }}
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/reusable-autofix.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# DEPRECATED: Use reusable-check-fixer.yml instead.
# This workflow is kept for external repos that still reference it.
# It runs a monolithic LLM agent that investigates ALL failures.
# reusable-check-fixer.yml provides per-check fixing with non-LLM
# mechanical fixes, retry tracking, and escalation.
name: Reusable Autofix Workflow

on:
Expand Down
Loading
Loading