We typically have a workflow with multiple phases (or jobs in circle config), for example, run tests -> deploy to staging -> deploy to production. Occasionally when we have an issue on production we want to redeploy the previously deployed version (rollback), as far as I know, in CircleCI our only option is to re-run a whole workflow from beginning to end. Is it possible to re-run a previously successful job rather than the whole workflow?
CCI-I-794