Gitlab pipelines are being created and triggered upon code push, but is stuck in created state and not running in multiple repositories. I would link these repositories but they are private.
For more information, I haven’t made any configuration changes and use a simple gitlab-ci.yml provided by gitlab in the documentation.
include:
- template: AWS/Deploy-ECS.gitlab-ci.yml
variables:
SAST_DISABLED: “true”
LICENSE_MANAGEMENT_DISABLED: “true”
DEPENDENCY_SCANNING_DISABLED: “true”
DAST_DISABLED: “true”
CONTAINER_SCANNING_DISABLED: “true”
CODE_QUALITY_DISABLED: “true”
PERFORMANCE_DISABLED: “true”
TEST_DISABLED: “true”
In the below instance, upon code push, it created multiple (4) pipelines but all of them are stuck in created state.
I am using gitlab.com and not self hosted and use common shared runners.
Tried looking around to see if anyone else is having this issue but it doesn’t seem like it. Any help is greatly appreciated!