Closed webknjaz closed 1 month ago
Here I've used if: false to temporary hide the job: https://github.com/python/core-workflow/blob/d969191/.travis.yml#L104
if: false
It's parsed as false by YAML parser (AFAICS according to the Config tab showing it in JSON). conditions: v1 is also there.
false
conditions: v1
cc @svenfuchs
Workaround of if: 1 != 1 worked: https://travis-ci.com/webknjaz/core-workflow/builds/82455939
if: 1 != 1
Here I've used
if: false
to temporary hide the job: https://github.com/python/core-workflow/blob/d969191/.travis.yml#L104It's parsed as
false
by YAML parser (AFAICS according to the Config tab showing it in JSON).conditions: v1
is also there.cc @svenfuchs