Skip to content
Merged
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
7 changes: 5 additions & 2 deletions .github/workflows/self-healing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,12 @@ jobs:
steps:
- uses: actions/checkout@v6
with:
ref: ${{ github.event.workflow_run.head_sha }}
# Fetch full history so we can create and push a new branch from head_sha.
# Checkout the default branch to get the latest self-healing script.
# The script creates its own branch from HEAD_SHA for applying fixes.
fetch-depth: 0
Comment thread
hubertgajewski marked this conversation as resolved.
- name: Fetch failing branch
run: git fetch origin ${{ github.event.workflow_run.head_branch }}
# head_sha may live on a non-merged branch that fetch-depth: 0 didn't cover.

- name: Download self-healing data
uses: actions/download-artifact@v8
Expand Down
Loading