views:
  "#":
    text: Preview using https://app.slack.com/block-kit-builder/

  deploy:
    type: modal
    title:
      type: plain_text
      text: Deploy
    submit:
      type: plain_text
      text: Submit
    close:
      type: plain_text
      text: Cancel
    blocks:
      - type: input
        label:
          type: plain_text
          text: Environment
        element:
          action_id: environment
          type: static_select
          placeholder:
            type: plain_text
            text: Select an environment
          options:
            - text:
                type: plain_text
                text: dev
              value: dev
            - text:
                type: plain_text
                text: staging
              value: staging
            - text:
                type: plain_text
                text: prod
              value: prod
      - type: input
        label:
          type: plain_text
          text: Git Ref
        element:
          action_id: ref
          type: plain_text_input
          initial_value: develop
