# Generated by chant migrate from input.yml

stages:
  - build
variables:
  GREETING: Hello
workflow:
  rules:
    - if: '$CI_PIPELINE_SOURCE == "push"'

greet:
  image: ubuntu:24.04
  variables:
    NAME: World
  script:
    - echo "$GREETING $NAME"
    - echo "Token is $API_TOKEN"
  stage: build
