What does HackerNews think of durabletask?
Durable Task Framework allows users to write long running persistent workflows in C# using the async/await capabilities.
Language:
C#
Another library that is doing the same thing:
https://github.com/Azure/durabletask
AWS Simple Workflows or Azure Logic Apps are both services that let you define S2S workflows however you like without any particular bias to CI/CD or business operations.
If you want to go even lower level, a framework like DTFx lets you define long-running, distributed and resilient orchestrations in code:
We have a lot of long running workflows written in DTF
If you are using C#, you can use the Durable Task Framework (https://github.com/Azure/durabletask) to handle some of this stuff.