Failed to upload and process pipeline: POST

what is error 422 The steps configuration must be an array?

steps: []

notify:
  - slack:
      channels:
        - "#test-notify-channel2"
      message: "The most recent `test-branch` branch build by <@me> has failed, please take a look
    if: build.state == "failed"

Hi Joe,

Steps need to be a list of things, each step is separated by a -, like this:

steps:
  - label: This is a step
    command: exit 1
  - label: This is also a step
    command: exit 0

Cheers,

Ben