Staging vs. Production
For important workflows, keep two versions: "staging" and "production."
Staging is where you test changes. Production is what actually runs.
In Make: - Duplicate the scenario: three dots menu > "Copy scenario" - Rename the copy to "[name]_staging" - Make changes in the staging version - Test thoroughly (run it manually, check the output) - Once you're confident, update the production version with the same changes - Keep the staging version in case you need to test again
In n8n: - Same approach: duplicate the workflow, rename it to "[name]_staging" - Toggle off the production version's trigger so it doesn't run automatically - Test the staging version - Once confident, update production and toggle the trigger back on
This sounds like extra work. It's not. It's insurance. One broken change in a production workflow that affects your daily work is worth 30 seconds of setup time for a staging version.