I have a GitLab YAML snippet:
deploy-g2:
when: on_success
only:
- main
except:
- /^FY2d{1}-d{4}$/
Is there a way for me to specify ‘none’ after the only so I don’t have to remove this whole block or modify the conditional logic?
I have a GitLab YAML snippet:
deploy-g2:
when: on_success
only:
- main
except:
- /^FY2d{1}-d{4}$/
Is there a way for me to specify ‘none’ after the only so I don’t have to remove this whole block or modify the conditional logic?