All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
- The
pull_requests:mergetask no longer requires setting the branch name and commit message provide via arguments as parameters within the task definition.
-
New task
pull_requests:merge[branch_name,commit_message]to merge the PR associated with the specified branch.commit_messageis optional, and can contain the original commit message with the%splaceholder, e.g.pull_requests:merge[new_feature,"%s [skip ci]"].Make sure to pass through
branch_nameandcommit_messagewhen defining your rake task:RakeGithub.define_repository_tasks( # ... ) do |t, args| # ... t.branch_name = args.branch_name t.commit_message = args.commit_message end