Public/Pipeline/Show-EdenServicePipelineHistory.ps1

function Show-EdenServicePipelineHistory {
    <#
        .SYNOPSIS
        Showing pipeline history.

        .DESCRIPTION
        Showing pipeline history. by calling the local './Eden/Pipeline/Show-ServicePipelineHistory.ps1' script.
    #>

    [CmdletBinding()]
    param(
        # The name of the local or global settins file to pass to the Eden script.
        [Alias("sn")]
        [String] $SettingsName,
        # The additional arguments to pass to the Eden script.
        [Alias("aa")]
        [HashTable] $AdditionalArguments
    )

    Invoke-EdenCommandStandardFlow `
        -LocalCommandPath "Pipeline/Show-ServicePipelineHistory" `
        -SettingsName $SettingsName `
        -CommandGroup "Pipeline" `
        -Message "Showing pipeline history." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-plh `
    -Value Show-EdenServicePipelineHistory `
    -Force