From 8b4adb3ef97d2cd2523d7a7a3d498666a1a5a922 Mon Sep 17 00:00:00 2001 From: Adam Hintz Date: Wed, 27 Aug 2014 12:13:42 -0700 Subject: [PATCH] Plugins: create after_merge invocation stage After merging, we want to remove certain labels... this makes that possible --- bin/feature | 2 ++ bin/hotfix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/bin/feature b/bin/feature index 1a0ca18..91d66e4 100755 --- a/bin/feature +++ b/bin/feature @@ -215,6 +215,8 @@ when 'merge' "git branch -d \"#{feature}\"" ]) + Plugins.invoke :after_merge, :feature, feature + puts puts "Successfully merged feature-branch: #{feature} into #{dev_branch}" puts "If you are satisfied with the result, do this:\n" + <