Copying the GitHub template and changing it to run on pushed tags leads to a failing workflow:
This is because the checkout actions (or rather, git) checks out into detached HEAD state.
In these cases, a new branch must be created from the detached HEAD before copying it, otherwise you run into fatal: cannot copy the current branch while not on any.
We need to reflect this in the template and the docs website (docs.smp) as this is a very common case.
Copying the GitHub template and changing it to run on pushed tags leads to a failing workflow:
This is because the checkout actions (or rather, git) checks out into detached HEAD state.
In these cases, a new branch must be created from the detached HEAD before copying it, otherwise you run into
fatal: cannot copy the current branch while not on any.We need to reflect this in the template and the docs website (docs.smp) as this is a very common case.