From d6c3e60d52e491199959ec3bc4e69cf5f84c9af3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Du=C5=A1an=20Dimitri=C4=87?= Date: Thu, 6 Sep 2018 17:10:11 +0200 Subject: [PATCH] Add "message" to the example Fastfile An optional "message" property can be passed in containing a custom git commit message. --- fastlane/Fastfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index be258f8..04180b4 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -1,5 +1,6 @@ lane :test do commit_android_version_bump( - gradle_file_folder:"project" + gradle_file_folder:"project", + # message: "Custom git commit message" ) end