hotfix
abstract fun hotfix(condition: ScopeActivationCondition = always, body: GitFlowHotfixScope.() -> Unit)(source)
A scoping function to execute a code block within the context of an GitFlowScope instance, which provides functionality to interact with the hotfix mechanism in the Git Flow plugin.
Parameters
condition
An optional activation condition for this scope. This can be used to declaratively specify under what conditions the scope should be evaluated. If the passed ScopeActivationCondition object evaluates to false, the entire scope will be ignored. The default value for this parameter is always.
body
The function body that will be executed in the context of the GitFlowScope instance.