GH now supports automatically deleting branches (as of 2.22.4), so Bulldozer no longer needs to support the delete_after_merge option.
We can probably remove the supporting code and leave the option around, if we don't want to break any config changes:
|
if mergeConfig.DeleteAfterMerge { |
|
attemptDelete(ctx, pullCtx, head, merger) |
GH now supports automatically deleting branches (as of 2.22.4), so Bulldozer no longer needs to support the delete_after_merge option.
We can probably remove the supporting code and leave the option around, if we don't want to break any config changes:
bulldozer/bulldozer/merge.go
Lines 215 to 216 in a495289