chore: auto-merge lockfile refresh PRs

This commit is contained in:
Dotta
2026-03-17 15:02:16 -05:00
parent f1a0460105
commit 3921466aae

View File

@@ -79,3 +79,15 @@ jobs:
else
echo "PR #$existing already exists, branch updated via force push."
fi
- name: Enable auto-merge for lockfile PR
env:
GH_TOKEN: ${{ github.token }}
run: |
pr_url="$(gh pr list --head chore/refresh-lockfile --json url --jq '.[0].url')"
if [ -z "$pr_url" ]; then
echo "Error: lockfile PR was not found." >&2
exit 1
fi
gh pr merge --auto --squash --delete-branch "$pr_url"