git_ops
git_ops copied to clipboard
A tool for version and changelog management in Elixir via conventional commits.
If I got it right, adding a footer with `BREAKING CHANGE: something` should bump the MAJOR version, but it is actually bumping the MINOR version. If I would guess, this...
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...
I recently did a release of Ash that generated a change log with a heap of extra stuff in it. I'm guessing that it's because I didn't have the previous...
`mix git_ops.release --allow-major` and if thats not supplied, it will prompt for confirmation. This would have saved me lots of stress on multiple occasions 😆
On different projects, we configure git_ops with different types. We perform pre-commit checks and github lint checks with custom bash scripts. It would be super handy if `mix git_ops.project-info` would...
# Current behaviour Users are fetched using GitHub's `/search/users` endpoint with the parameter `q` as `[email protected] in:email`. https://github.com/zachdaniel/git_ops/blob/dad561231124dceadad2bfbed62845d572e87dc9/lib/git_ops/github.ex#L40-L43 This works fine for user exposing their email addresses. However, the search...