Skip to content
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

Properly implement version bump workflow #15

Merged
merged 8 commits into from
Nov 17, 2023
Merged

Conversation

teutoburg
Copy link
Collaborator

@teutoburg teutoburg commented Nov 17, 2023

This is a continuation of #14, to fully implement the version bumper GitHub actions workflow.

The workflow can be manually trigger or requested by another workflow and takes one required parameter (the bump rule, or level) and also has an option to perform a dry run, not actually making any modifications. If run without the dry-run option (the normal default), the workflow will commit and push the modifications to the branch it was run from. The commit is officially done by the GitHub Actions Bot. This has the advantage that we don't need a PR to e.g. increment to the next dev version after a release. In the future, this might actually become part of the release workflow, to make sure we're immediately back to a dev version afterwards.

As with the release workflow, this will ultimately become part of the DevOps repo, once it has been proven here.

@teutoburg teutoburg self-assigned this Nov 17, 2023
Copy link

codecov bot commented Nov 17, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (a7f7fee) 100.00% compared to head (2cec954) 100.00%.
Report is 2 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff            @@
##              main       #15   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files            5         5           
  Lines          386       386           
=========================================
  Hits           386       386           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@teutoburg teutoburg changed the title Fh/debugworkflow Properly implement version bump workflow Nov 17, 2023
@teutoburg teutoburg marked this pull request as ready for review November 17, 2023 15:28
Copy link
Collaborator

@hugobuddel hugobuddel left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This does what it says on the tin, and seems useful, so approved. The rest is old man rambling.

I'm not sure how much having this in a github action will help in the end (taking the perspective of using this also in the other repos). For example, I'd like a change log somewhere in the repository, and it would still be necessary to manually add the version number to the change log. There might be other places such as installation instructions where the version number might be included. And then also manually updating the version in pyproject.toml doesn't seem to be much of a hassle.

Note that I don't like the changelog to be in version.py, but I think it should be somewhere. And ~every PR should add a line to that changelog, and then when we release, we put the version number in the changelog. Like you did in AstarVienna/ScopeSim#297. But maybe it is not necessary at all to have a change log in the repo itself?

In the long run, I think I might prefer to not have the version number in pyproject.toml at all. That is, have the version number only in the tag, and copy the version number from there when building the package. Installing from a git (dirty) commit that does not have a tag, should get a version number that includes the git commit hash. That is how astropy does it I believe. But I'm not sure what the best approach is, and you are actually doing the work in improving the workflow, so I'm going along.

Anyway, this PR does seem to be a strict improvement. And maybe we can enhance it to also do those other changes that need to accompany a version bump (like putting the version in the changelog). So lets merge this.

This was copied in from an example using manual dispatch only. In that
case, the only difference is appearently that it converts bools to strings.
But for the workflow to also function when called with parameters,
the github.event must not be there. Which then also means bools are bools.
@teutoburg
Copy link
Collaborator Author

Pushed one more small modification, see detailed commit msg. Does not alter behavior, so I'll merge...

@teutoburg teutoburg merged commit 4becb55 into main Nov 17, 2023
20 checks passed
@teutoburg teutoburg deleted the fh/debugworkflow branch November 17, 2023 22:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

2 participants