snehilrx / Fetch

Android app for watching animes
GNU General Public License v3.0
183 stars 12 forks source link

Auto versioning from PR's request comments #33

Closed snehilrx closed 1 year ago

snehilrx commented 1 year ago

Upgraded versioning system to upgrade build versions based on pr comments.

Read below for the rules

Workflow

Major

Bumps on the following intents:

major: drop support for api v21 Also triggered if the commit body contains BREAKING CHANGE or if the intent contains a !.

refactor!: drop support for api v21 refactor: BREAKING CHANGE drop support for api v21
If any commit like this is in the list of commits within the event, then the major version will get bumped (1.0.0 -> 2.0.0)

Minor

Bumps on the following intents:

feat: add oauth login with google minor: allow user to delete account If any commit like this is in the list of commits within the event, then the minor version will get bumped (1.0.0 -> 1.1.0)

Patch

Any other changes, even if not following conventional commits will bump the patch version (1.0.0 -> 1.0.1)