Skip to content

Releases: RueLaLa/auto-tagger

v2.1.3 remove pinning

08 Nov 17:58
5e53c4f
Compare
Choose a tag to compare
  • remove version pinning ahead of possible rewrite

v2.1.2 docker build speed improvements

19 May 18:01
67635cd
Compare
Choose a tag to compare
  • Switces to installing all python dependencies from APK pre-compiled artifacts means no need to compile at build time. This speeds up the builds from taking an average of 12.75 seconds to 3.75 seconds, a roughly 70% decrease in build time! The main downside is that now, for compatibility with both running in docker and running outside docker, dependencies and their versions will need to be specified both in the requirements.txt as well as the Dockerfile but this is a worthy trade-off for the build time improvements.

v2.1.1 Fix local git permissions

13 Apr 17:43
9a1b8b4
Compare
Choose a tag to compare
  • fixes local git permissions by adding the local path to the git list of safe directories. This issue is caused by the fact that github checks out the repo locally using a different action with different user permissions. Then this script runs and now with the most recent safety feature added to git, it was exiting with the unsafe directory message.

v2.1.0 Better Tag Selection

10 May 17:40
344bd79
Compare
Choose a tag to compare
  • improves how latest tag is selected. Now, instead of parsing all tags on a repo so they can be sorted by date and numerically, only the latest tags on the latest commit are selected, parsed, and sorted numerically. This removes the possibility of an old non-semver tag breaking the tagger.
  • split up some more functions for better logical isolation.
  • switches to using more environment variables rather than reading data from the GitHub event file. You can completely negate using the event file by passing defining GITHUB_PR_NUMBER: ${{ github.event.number }} as an environment variable in the action.yml. The readme has been updated to reflect this, but not including it still works fine.
  • added a DRYRUN flag that only spits out the new tag message locally rather than creating, pushing, and commenting the tag on the real PR.

v2.0.0 Python Rewrite

18 Mar 13:52
090c985
Compare
Choose a tag to compare

Rewrite in Python to much more cleanly handle incorrect version strings.

v1.1.1

02 Oct 15:29
824b293
Compare
Choose a tag to compare

makes the tag prefix optional so the regex match wont break on tags without it.

v1.1.0

13 Aug 15:03
Compare
Choose a tag to compare

smaller semver function and more comments

v1.0.8

13 Aug 14:28
Compare
Choose a tag to compare

link to tag in comment

v1.0.7

13 Aug 14:19
Compare
Choose a tag to compare

fix curl

v1.0.6

13 Aug 14:14
Compare
Choose a tag to compare

try to add comments to PR