I wanted to use [ci skip] in my tag message when I untag and retag with the same tag name in my workflow, but it did not work. My job still gets triggered.
Git command :
git tag v1.2.3 -m “[ci skip]”
My config :
workflows:
version: 2
release-jobs:
jobs:
- tag-test:
filters:
tags:
only: /^v.*/
After someone else tags the code, I wanted to make a release related modification and then finally untag and retag the code with my commit. I was hoping to be able to use same tag name to keep the tag lists clean.