jenkins-autojobs icon indicating copy to clipboard operation
jenkins-autojobs copied to clipboard

Default value for `tag` does not work

Open sja opened this issue 10 years ago • 3 comments

My configuration contains this:

        # Does not work
        tag: 'myRepoOne'
        refs:
          - 'refs/heads/feature_(.*)'

But that does not use the tag on creating jobs. I had to put a tag on the ref config:

        # Works
        tag: 'myRepoOne'
        refs:
          - 'refs/heads/feature_(.*)'
              'tag': 'myRepoOne'

sja avatar May 28 '14 10:05 sja