I have configured the version updater action on my project and it works perfectly. Thanks for your project.
But as it is executed every day and with a new branch name each time, if I don't check my projects every day, I end up with several pull requests for the same patch.
On my workflow:
on:
schedule:
- cron: '0 0 * * *'
On main.py :
new_branch_name = f"gh-actions-update-{int(time.time())}"
I think it will be good to have a fix branch name (at least as an option), So that the pull request can be updated each time (with a force push).
Best regards,
Jean-Marie
I have configured the version updater action on my project and it works perfectly. Thanks for your project.
But as it is executed every day and with a new branch name each time, if I don't check my projects every day, I end up with several pull requests for the same patch.
On my workflow:
On
main.py:I think it will be good to have a fix branch name (at least as an option), So that the pull request can be updated each time (with a force push).
Best regards,
Jean-Marie