Releases: phpdocker-io/github-actions-delete-abandoned-branches
Releases · phpdocker-io/github-actions-delete-abandoned-branches
Internal refactorings and `allowed_prefixes`
What's Changed
- Refactor input, limit deletion to certain prefixes, misc uplifts and fixes by @luispabon in #24
- #21
Full Changelog: v1.2.1...v2.0.3
Proper
Previous tag was dodgy
Support github enterprise
This release adds github_base_url
to inputs to ensure Github Enterprise users on a custom domain are able to use this action.
Do not repeat first page of branches
Pagination of branch list API starts at 1, not 0. When requesting 0, we're getting 1 so indeed, we're retrieving the same page twice. It results in wasted effort, and in errors when actually deleting branches (as we try to delete branches twice and of course, the second time fails)
Paginated branches
Added support for retrieving paginated branches, for those repos with an absolute ton of branches waiting to be deleted.
v1.0.2
Update README
Attempt to make semver work
Github actions have precious little information on how to make semver work with use
in workflows. Perhaps versions need to be prepended by v
?
Initial stable release
Fully functional release:
- Cleaned up documentation
- The docker image required for the action is now built & pushed into docker hub
- We're using this image instead of building the dockerfile every time to speed up builds
Small changes and cleanups
- Tidy up README
- Delete dead code in the requests lib
- Tighten up types on io lib
- Other small changes
First useable release
0.2 Update README