#52771: docs: fix the update-patches artifact recipe in CLAUDE.md
Description of Change
The "fixing patch conflicts on an existing PR" recipe says gh run download … --name update-patches, but the Apply Patches workflow uploads the artifact unarchived under the name update-patches.patch, so that command fails with "not a valid zip file". Hit this twice today fixing #52759 and #52761; what works is reading the artifact's /zip endpoint, which returns the raw patch. Recipe updated to list the run, look the artifact id up by its real name, fetch it, and git am it.
Checklist
- I have filled out the PR description
- I have reviewed and verified the changes
Release Notes
Notes: none
Backports
No Backports Requested
This pull request doesn't have any backports requested or created for older release branches.
What are backports?
Backports are copies of changes made to the main branch that are applied to older release branches. They ensure that bug fixes and important changes are available in maintained older versions of Electron.
Semver Impact
Semantic Versioning helps users understand the impact of updates:
- Major (X.y.z): Breaking changes that may require code modifications
- Minor (x.Y.z): New features that maintain backward compatibility
- Patch (x.y.Z): Bug fixes that don't change the API
- None: Changes that don't affect using facing parts of Electron