daily-version-action
daily-version-action copied to clipboard
Creates a new tag using the format Y.M.D, but only if HEAD isn’t already tagged
I'd like to perform additional tasks before creating the tag or maybe use a separate action to create and submit it. Example: ```yml Version: steps: - uses: actions/checkout@v2 - name:...
Some commits don't need to be released as their own version, so there could be a way to ignore them. For example this can be done via `ignore` an option...
There's no need to have a release for just one commit (for example if there's a cronjob running the day after a manual release). - A `maxCommit` option (currently: 1)...
Since #7, if `git config user.email` is empty, the action will set `user.email` and `user.name`. This is persisted even after the step. Ideally instead this should not happen. I tried...