153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
# File 'fastlane/lib/fastlane/actions/hg_commit_version_bump.rb', line 153
def self.details
list = <<-LIST.markdown_list
All `.plist` files
The `.xcodeproj/project.pbxproj` file
LIST
[
"The mercurial equivalent of the [commit_version_bump](https://docs.fastlane.tools/actions/commit_version_bump/) git action. Like the git version, it is useful in conjunction with [`increment_build_number`](https://docs.fastlane.tools/actions/increment_build_number/).",
"It checks the repo to make sure that only the relevant files have changed, these are the files that `increment_build_number` (`agvtool`) touches:".markdown_preserve_newlines,
list,
"Then commits those files to the repo.",
"Customize the message with the `:message` option, defaults to 'Version Bump'",
"If you have other uncommitted changes in your repo, this action will fail. If you started off in a clean repo, and used the _ipa_ and or _sigh_ actions, then you can use the [clean_build_artifacts](https://docs.fastlane.tools/actions/clean_build_artifacts/) action to clean those temporary files up before running this action."
].join("\n")
end
|