0
I recently deleted a repository in Gitlab (I use their own server) and created a new one, but when I do commits and pushs appears a "build: pending" in the commit, alerting:
.gitlab-ci.yml not found in this commit
None of my commits are going through (green light). I’ve tried creating a new file .gitlab-ci.yml, but I’m not getting it right. I’m starting in git now.
How can I fix this?
You need to create this file at the root of the project and insert the build rules into it, otherwise it will not work. And Voce also has to have some Runner configured to run this build.
– gorn