1
0
Fork 0
mirror of https://github.com/imjasonh/git-k8s synced 2026-07-08 23:05:21 +00:00

Switch auto-merge to merge commits (#15)

Auto-merge workflow was using squash merges; change it to use standard
merge commits.

- **`auto-merge.yaml`**: Set `merge_method: 'merge'` (was `'squash'`)

<!-- START COPILOT CODING AGENT TIPS -->
---

💬 We'd love your input! Share your thoughts on Copilot coding agent in
our [2 minute survey](https://gh.io/copilot-coding-agent-survey).
This commit is contained in:
Jason Hall 2026-02-28 10:25:47 -05:00 committed by GitHub
commit d278e9cc47
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -92,7 +92,7 @@ jobs:
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: prNumber,
merge_method: 'squash',
merge_method: 'merge',
});
console.log(`PR #${prNumber} merged successfully`);
} catch (error) {