Nowadays it is getting common for a git repository to have more than one project inside of it. For example, in my company we have a repo that has 2 elixir projects and one frontend/angular one.
That means that people will push commits to different projects in the same repo, so I need a way to filter out commits that are not related to the specific project I'm working on.
In our case, normally our commits will start with the project name, for example:
Backend: Did something
Frontend: Applied something else
It would be great if I could create rules in git_ops that will tell it to just add commits to my changelog when the title starts with Backend via a regex.
Since this lib expects conventional commits, maybe another way of achieving the same would be to refex the content of the commit instead for some keyword?
Nowadays it is getting common for a git repository to have more than one project inside of it. For example, in my company we have a repo that has 2 elixir projects and one frontend/angular one.
That means that people will push commits to different projects in the same repo, so I need a way to filter out commits that are not related to the specific project I'm working on.
In our case, normally our commits will start with the project name, for example:
Backend: Did something
Frontend: Applied something else
It would be great if I could create rules in git_ops that will tell it to just add commits to my changelog when the title starts with
Backendvia a regex.Since this lib expects conventional commits, maybe another way of achieving the same would be to refex the content of the commit instead for some keyword?