Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,14 @@ The scenario illustrated below shows how one can work with providing specific pr
|**orchestratorTenant**|Name of the Orchestrator tenant|True||
|**orchestratorLogicalName**|Id of the UiPath organization|True||
|**orchestratorFolder**|The fully qualified name of the Orchestrator folder where processes are deployed to|True||
|**orchestratorApplicationId**|Application ID for the CLI to authenticate with UiPath Orchestrator|True|||
|**orchestratorApplicationSecret**|Application Secret for the CLI to authenticate with UiPath Orchestrator|True|||
|**orchestratorApplicationId**|Application ID for the CLI to authenticate with UiPath Orchestrator|True||
|**orchestratorApplicationSecret**|Application Secret for the CLI to authenticate with UiPath Orchestrator|True||
|**orchestratorApplicationScope**|External application scope|False|"OR.Assets OR.BackgroundTasks OR.Execution OR.Folders OR.Jobs OR.Machines.Read OR.Monitoring OR.Robots.Read OR.Settings.Read OR.TestSets OR.TestSetExecutions OR.TestSetSchedules OR.Users.Read"|
|**projectVersion**|A valid semver tag version number (without the leading 'v') to set the version of the packages|True||
|**releaseNotes**|Release notes to be added in the generated .nupkg files|False||
|**projectUrl**|Project URL for the generated package. Usually associated with the Automation Hub project. If not provided, the repository URL will be used|||
|**traceLevel**|Trace level for the packing process. Possible values: Verbose, Information, Warning, Error|Information||
|**author**|The package author. If not provided, the GitHub actor will be used.|github.actor||

## Outputs

Expand Down
7 changes: 6 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ inputs:
description: 'Trace level for the packing process. Possible values: Verbose, Information, Warning, Error'
default: "Information"
required: false
author:
description: 'The package author. If not provided, the GitHub actor will be used as the author of the package'
required: false
default: "${{ github.actor }}"
outputs:
packagesPath:
description: 'Folder containing the generated packages'
Expand Down Expand Up @@ -96,7 +100,8 @@ runs:
--repositoryBranch "${{ github.head_ref || github.ref_name }}" \
--repositoryType git \
--projectUrl "${{ steps.set-urls.outputs.projectUrl }}" \
--traceLevel "${{ inputs.traceLevel }}"
--traceLevel "${{ inputs.traceLevel }}" \
--author "${{ inputs.author }}"

echo "::endgroup::"

Expand Down