Use variables or rules with interruptible
Problem to solve
Right now as far as I know interruptible
flag with jobs can have only true/false values. Thus in cases when we want to not enable it in certain cases - we can not do that.
Proposal
Maybe it would work with variable like
interruptible: $FOO_VARIABLE === 'bar'
Or with rules
:
rules:
- if: $FOO_VARIABLE === 'bar'
interruptible: true