-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
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
Adds weekly action to update VERSION file for pip packaging #1778
base: main
Are you sure you want to change the base?
Conversation
VERSION increase for Python package should only be applied when there are changes in the Also, what happens if we change the version manually? The pipeline will also increase it, and the final version will be the (original) version + 2 |
That's a good point, let me see if we can check for changes in just those 2 folders. I think we should avoid updating VERSION manually if we go with an automated job and only do a manual update for major releases. The automated job should make it easier to maintain rather than having us manually update the VERSION each time. |
Signed-off-by: Kelly Guo <[email protected]>
Signed-off-by: Kelly Guo <[email protected]>
Signed-off-by: Kelly Guo <[email protected]>
Signed-off-by: Kelly Guo <[email protected]>
Signed-off-by: Kelly Guo <[email protected]>
Signed-off-by: Kelly Guo <[email protected]>
Signed-off-by: Kelly Guo <[email protected]>
Signed-off-by: Kelly Guo <[email protected]>
…date.yaml Signed-off-by: Kelly Guo <[email protected]>
Signed-off-by: Kelly Guo <[email protected]>
Description
The Isaac Lab pip package requires an update for the VERSION file to trigger a new package build for pypi. This PR adds an automated github action job that runs at 00:00 UTC time every Monday. The job checks whether any new changes were made to the main branch apps/ or source/ folders for that week and creates a commit to bump the VERSION content if new changes exist.