This repository contains the UiPath workflows, assets and configurations for the daily automation exercises of my project. You can run, test using UiPath Studio.
This project includes a collection of UiPath workflows demonstrating exercises of each day.
- UiPath Studio (Community or Enterprise)
- .NET Framework (version required by your UiPath Studio)
-
Clone the repository
git clone <repo-url> cd <repo-name>
-
Open in UiPath Studio
- Launch UiPath Studio and select Open Project
- Navigate to this folder and open
project.json
-
Restore Packages UiPath will automatically restore the NuGet packages when you open the project.
-
Run a Workflow
- In the Project panel, expand the
Workflows
folder - Double-click any
.xaml
file / most commonly itsmain.xaml
- Press Run to execute
- In the Project panel, expand the
├── .gitignore
├── project.json
├── workflows/
│ ├── workflow-1.xaml
│ ├── workflow-2.xaml
│ └── workflow-3.xaml
├── assets/ # input data, sample files
├── tests/ # test workflows & screenshots
└── README.md
We use the following Git branching model:
- dev: On-development
- daily/YYYY-MM-DD: Daily work branches (e.g.,
daily/2025-07-29
) - hotfix: Urgent fixes
Daily workflow:
- Checkout
dev
and apply latest changes - Create and work on
daily/$(date +%F)
branch - Merge your changes daily
- Commit
daily/YYYY-MM-DD