beps/0006-scaffolder-action-rollback/README.md
Introducing the rollback to scaffolder actions provides the mean to come back to the initial state.
The aim is to help to mitigate the issue of manual clean up the partially created resources.
We will not cover all built-in actions with a rollback functionality
Rollback is going to be performed:
We are going to introduce an extra function in action API which will look like:
const createPublishGitHubAction = createTemplateAction({
id: 'publish:github',
async handler() {},
async rollback() {},
});