chore: stage prepared large-import PR patch

This commit is contained in:
HighDrexler
2026-08-20 17:09:40 -04:00
parent 83463a5a59
commit 0b70d6c535
3 changed files with 39 additions and 0 deletions
@@ -0,0 +1,37 @@
name: Apply prepared large-import patch
on:
push:
branches:
- fix/large-required-imports-v2
permissions:
contents: write
jobs:
apply:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Reconstruct and apply patch
shell: bash
run: |
set -euo pipefail
base64 -d .github/pr-build/large-import.patch.b64.1 > /tmp/large-import.patch
base64 -d .github/pr-build/large-import.patch.b64.2 >> /tmp/large-import.patch
git apply --check /tmp/large-import.patch
git apply /tmp/large-import.patch
rm -rf .github/pr-build
rm -f .github/workflows/apply-large-import-pr.yml
- name: Commit prepared change
shell: bash
run: |
set -euo pipefail
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add -A
git diff --cached --check
git commit -m "fix(mods): support large required imports end-to-end"
git push origin HEAD:fix/large-required-imports-v2