My component

spec:
  inputs:
    stage:
      default: '🎨_ascii-art'
      description: 'Defines the stage for the job'
    animal:
      default: default
      description: 'Specify which animal to print'
---
🐮_meuh:
  stage: $[[ inputs.stage ]]
  image: ubuntu
  before_script: 
    - apt-get update -y 
    - apt-get install -y cowsay
  script: /usr/games/cowsay -f $[[ inputs.animal ]] "Bonjour !" 
  needs: []