What are the steps in adding custom labels to a Vertex AI pipeline's `PipelineJobSchedule`?

Thank you for sharing this information.
I am actually doing it as you can see below but the PipelineJobSchedule overwrites it with only vertex-ai-pipelines-run-billing-id label? :thinking_face:

pipeline_job = aiplatform.PipelineJob(
  template_path="COMPILED_PIPELINE_PATH",
  pipeline_root="PIPELINE_ROOT_PATH",
  display_name="DISPLAY_NAME",
  labels={"name":"test_xx"}  // This line adds label to the Vertex pipeline when creating the pipeline 
)
pipeline_job_schedule = aiplatform.PipelineJobSchedule(
  pipeline_job=pipeline_job,
  display_name="SCHEDULE_NAME"
)

pipeline_job_schedule.create(
  cron="TZ=CRON",
  max_concurrent_run_count=MAX_CONCURRENT_RUN_COUNT,
  max_run_count=MAX_RUN_COUNT,
)```