nnichols / clojure-dependency-update-action

[MAINTENANCE ONLY]: A simple GitHub Actions job to create Pull Requests for outdated dependencies in clojure projects
MIT License
40 stars 7 forks source link

Batch bump PR feature #3

Closed ericdallo closed 3 years ago

ericdallo commented 3 years ago

Feature Request

Hi, thanks for the amazing github action, I added it to clojure-lsp and it worked very well! One feature that would be nice is to generate the PR with all the bumps instead of one by bump, a option like batch: true would be great.

nnichols commented 3 years ago

Glad to hear it worked!

(For implementation / Note to Self) I think in the instance that batch is set to true, that the only other thing that'll need to change with the above is the branch naming convention (In the case that branches aren't being cleaned up after merging for the repository in question). I'm assuming something like dependencies/clojure/${DATE} will be fine for most consumers

nnichols commented 3 years ago

@ericdallo This has been implemented as of tag v3!

ericdallo commented 3 years ago

Cool, I'll update it, thank you !!