Learn the basics of GitLab in minutes.

GitLab Buddy is a low-code/no-code solution with AI helpers that will help you learn how to use GitLab and craft, adjust, and debug awesome pipelines right away.

.gitlab-ci.yml
.gitlab-runner/config.toml
---
stages:
- build
- test
- deploy
build_job:
stage: build
script:
- echo "Building..."
test_job:
stage: test
script:
- echo "Testing..."
deploy_job:
stage: deploy
script:
- echo "Deploying..."

GitLab Buddy

Add Components to Your .gitlab-ci.yml File

Use our tools below to add new components to your pipeline.

Image

Set an image for your pipeline to use.

Workflow Rules

Set up rules controlling when and how your pipeline runs.

Variables

Set up variables to use anywhere in your pipeline.

Stages

Add a new stage to your pipeline.

Jobs

Add a new job to your pipeline.

More components coming soon.