How to sync your fork with upstream
Here’s a safe and common way to update your fork:
1. Add the upstream remote (if not already added)
git remote add upstream https://github.com/activepieces/activepieces.git
2. Fetch the latest changes from upstream
git fetch upstream
3. Merge upstream/main into your local main
git checkout maingit merge upstream/main
Or, if you prefer rebasing:
git rebase upstream/main
4. Push the updated main to your fork
git push origin main