ci_version input was introduced as a hack to fix issue where action branch was not matching the workflow branch.
Search for inputs.ci_version. This input should be removed. The ref passed to actions/checkout should be the one automatically obtained from workflow's branch.
For example - Create a new branch in github_ci (say - test_01). The value of ref should be test_01.
ci_version
input was introduced as a hack to fix issue where action branch was not matching the workflow branch.inputs.ci_version
. This input should be removed. Theref
passed toactions/checkout
should be the one automatically obtained from workflow's branch.For example - Create a new branch in
github_ci
(say -test_01
). The value ofref
should betest_01
.