{"id":27784557,"url":"https://github.com/mikael-andersson91/setup-uipathcli","last_synced_at":"2026-04-29T00:32:20.604Z","repository":{"id":280984240,"uuid":"936472336","full_name":"mikael-andersson91/setup-uipathcli","owner":"mikael-andersson91","description":"A GitHub action for setting up the uipathcli tool for interacting with UiPath resources","archived":false,"fork":false,"pushed_at":"2026-04-05T09:38:34.000Z","size":1300,"stargazers_count":1,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-05T11:18:11.751Z","etag":null,"topics":["actions","github-actions","rpa","setuptools","uipath"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mikael-andersson91.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-02-21T06:29:14.000Z","updated_at":"2026-04-05T09:38:23.000Z","dependencies_parsed_at":null,"dependency_job_id":"6d2c64e5-73c5-47c3-8a7e-37ab87529530","html_url":"https://github.com/mikael-andersson91/setup-uipathcli","commit_stats":null,"previous_names":["mikael-andersson91/setup-uipathcli"],"tags_count":20,"template":false,"template_full_name":"actions/javascript-action","purl":"pkg:github/mikael-andersson91/setup-uipathcli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikael-andersson91%2Fsetup-uipathcli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikael-andersson91%2Fsetup-uipathcli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikael-andersson91%2Fsetup-uipathcli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikael-andersson91%2Fsetup-uipathcli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mikael-andersson91","download_url":"https://codeload.github.com/mikael-andersson91/setup-uipathcli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikael-andersson91%2Fsetup-uipathcli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32405901,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T19:38:08.556Z","status":"ssl_error","status_checked_at":"2026-04-28T19:37:55.688Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["actions","github-actions","rpa","setuptools","uipath"],"created_at":"2025-04-30T14:28:57.947Z","updated_at":"2026-04-29T00:32:20.598Z","avatar_url":"https://github.com/mikael-andersson91.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Setup uipathcli\n\n[![GitHub Super-Linter](https://github.com/actions/javascript-action/actions/workflows/linter.yml/badge.svg)](https://github.com/super-linter/super-linter)\n![CI](https://github.com/actions/javascript-action/actions/workflows/ci.yml/badge.svg)\n\nThis action is intended to used in scenarios where you wish to install the\n[uipathcli](https://github.com/UiPath/uipathcli) (not to be confused with\n[UiPath CLI](https://docs.uipath.com/automation-ops/automation-cloud/latest/user-guide/about-uipath-cli),\nwhich you can setup with\n[Mikael-RnD/setup-uipath](https://github.com/Mikael-RnD/setup-uipath)), what's\nup with the naming of these tools here UiPath?), to streamline working with\nvarious UiPath APIs directly from the command line.\n\n## Usage\n\nThe below sample runs a job where the repository is checked out to the runner,\nthe **setup-uipathcli** actions is used and the **uipath** cli is used to list\nfolders on the Orchestrator instance.\n\nThe action accepts inputs to configure the **uipath** CLI for your Orchestrator\ninstance. The action will set the appropriate environment variables\nautomatically. For the full list of environment variables used by the\n**uipath**, see the uipathcli\n[readme](https://github.com/UiPath/uipathcli#global-arguments).\n\nFor up-to-date list of inputs available for this action, please refer to the\nactions [action.yml file](/action.yml).\n\n```yaml\nuipathcli-sample-job:\n  steps:\n    - name: Checkout\n      id: checkout\n      uses: actions/checkout@v6\n\n    - name: Setup uipathcli\n      id: setup-uipathcli\n      uses: mikael-andersson91/setup-uipathcli@v2\n      with:\n        uipath-url: ${{ secrets.UIPATH_URL }}\n        client-id: ${{ secrets.CLIENT_ID }}\n        client-secret: ${{ secrets.CLIENT_SECRET }}\n        tenant: ${{ secrets.TENANT }}\n        organization: ${{ secrets.ORGANIZATION }}\n\n    - id: sample-uipath-command\n      run: |\n        uipath orchestrator folders get\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmikael-andersson91%2Fsetup-uipathcli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmikael-andersson91%2Fsetup-uipathcli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmikael-andersson91%2Fsetup-uipathcli/lists"}