knl / niv-updater-action

A GitHub Action that creates meaningful pull requests with updates to your niv-managed dependencies, so you don't have to do menial chores.
BSD 3-Clause "New" or "Revised" License
29 stars 11 forks source link

Fix generated commit message #18

Closed knl closed 4 years ago

knl commented 4 years ago

git commit messages start with the subject, followed by an empty line and the body of the commit. Due to old refactoring, the generated commit messages lost the subject line, as that was now in the title, that is a separate file, used to set the title of the PR. This change stores the commit message in a separate file and generates it following the convention.

Closes #16