Hello,
how can allow_failure:exit_codes be used inside keyword rules?
I only noticed that it is possible to add true/false to allow_failure in the rules, but it does not allow me to add exit_code there, like that:
rules:
- if: ...
allow_failure:
exit_codes: 111
Is it even possible to do it somehow within the rules? Because as I understand it, there is an implicit allow_failure: false in the rules and that overrides the allow_failure that is defined for the whole job, so when I have:
job:
rules:
- if: ...
allow_failure:
exit_codes: 111
Then the rule-level rule rules:allow_failure overrides the allow_failure value at the job level and is only applied when a particular rule starts a job, and if allow_failure is not defined, rules defaults to `false’, which means that will the entire job have allow_failure:false if rules is triggered?