job_builder=sch.get_job_builder()pipeline=sch.pipelines.get(id=<pipelineid>)# Create a list of tags to supply to the buildertags=['test/dev','test']job=job_builder.build(job_name='Test job with tags',pipeline=pipeline,tags=tags)sch.add_job(job)job.tags
Job tags can be used to search and filter through the available jobs and job templates on Control Hub. To fetch a
particular job or jobs that use a specific job tag, you can supply it via the job_tag parameter: