Have you worked on any cool or interesting apps that showcase Elixir?

Hi,

I’m working on https://automergebot.com. It is a tool to notify your team about awaiting PRs. Also, it automatically assembles target branches from labeled PRs.

We’re using it a lot and it saves tremendous amout of time. As an example: we don’t need to keep staging branch up to date because the bot assembles it on each commit on PR and we have auto-deploy too.

I need to be able to manage many concurrent jobs and handle incoming events from GitHub and Elixir fits properly for this job. Also, it’s the most stable and robust application I’ve ever wrote. The memory footprint for the app is non-existent.

I don’t use any additional dependencies because elixir / erlang VM has all tools I need to write CI pipeline for notifications and job management.

4 Likes