exclude branch from gitlab pipeline code example
Example: gitlab ci exclude branch
mybuild:
stage: test
image: somedockerimage
script:
- some script running
except:
- branch-name
mybuild:
stage: test
image: somedockerimage
script:
- some script running
except:
- branch-name