Public/Pipeline/Show-EdenServicePipelineReport.ps1

function Show-EdenServicePipelineReport {
    <#
        .SYNOPSIS
        Showing pipeline report.

        .DESCRIPTION
        Showing pipeline report. by calling the local './Eden/Pipeline/Show-ServicePipelineReport.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-ServicePipelineReport" `
        -SettingsName $SettingsName `
        -CommandGroup "Pipeline" `
        -Message "Showing pipeline report." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-plr `
    -Value Show-EdenServicePipelineReport `
    -Force