i have only seen == and =~ but can gitlab use >= 1 ? is there any example?
- if: '$CI_COMMIT_BRANCH == "main" && $NUMBER >= 1'
when: always
This did not work for me
i have only seen == and =~ but can gitlab use >= 1 ? is there any example?
- if: '$CI_COMMIT_BRANCH == "main" && $NUMBER >= 1'
when: always
This did not work for me
No. You can only use the equality and regex match operators. However, you can make a regex with equivalent behavior.