We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'd love to have bump-my-version read configuration file from an URL.
bump-my-version
I.e. I'd like to be able to do that:
$ bump-my-version --config-file https://raw.githubusercontent.com/kdeldycke/workflows/main/pyproject.toml bump minor
This would help me tremendously to build up generic bump-my-version reusable workflows with GitHub actions.
This feature is similar to pip, or the upcoming uv:
pip
uv
pip install --requirement https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements.txt
uv pip install
For reference and inspiration, I implemented this feature in my generic configuration parser for Click:
The text was updated successfully, but these errors were encountered:
Add reference to bump-my-version feature request
f5a9616
callowayproject/bump-my-version#148
No branches or pull requests
Description
I'd love to have
bump-my-version
read configuration file from an URL.I.e. I'd like to be able to do that:
This would help me tremendously to build up generic
bump-my-version
reusable workflows with GitHub actions.This feature is similar to
pip
, or the upcominguv
:pip install --requirement https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements.txt
uv pip install
cannot fetch requirement file from remote URL astral-sh/uv#1481What I Did
For reference and inspiration, I implemented this feature in my generic configuration parser for Click:
The text was updated successfully, but these errors were encountered: