Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 728 Bytes

README.md

File metadata and controls

31 lines (20 loc) · 728 Bytes

bump-all

Permet de mettre à jour plusieurs projets d'une organisation github en même temps de de faire les PR

php app/console composer:update GITHUB_TOKEN ORGANISATION DEPENDENCY VERSION

with docker

1/ Build the image

docker build -t bumper:latest .

2/ Run the command

docker run -it --rm --env GITHUB_TOKEN="<your_github_token>" bumper:latest bumper "<organisation>" "<dependency>" "<version>"

Pro-tip: use an alias

create the alias in your .(ba|z)shrc

alias bumper='docker run -it --rm --env GITHUB_TOKEN="<yout_github_token>" bumper:latest bumper'

You can now simply use bumper "<organisation>" "<dependency>" "<version>" to bump your dependencies