i see " This job is stuck because you don’t have any active runners online or available with any of these tags assigned to them: proddeploy prod-deploy Go to project [CI settings]" message.
in Settings/ci_cd i see: " Available group runners: 5 rqNexe7F docker-01-prod-deployer with prod-deploy proddeploy tags"
All other projects(repositories) working good with this runner(all gitlab-ci.yaml included from one repo and one file). this problem’s project on non-master branch also work good.
`
stages:
- deployprod
deployprod:
stage: deployprod
image:
name: registry.gitlab.com/myimage
entrypoint: [’’]
script:
- echo
tags:
- prod-deploy
- proddeploy
only:
- master
`