How to trigger a specific job in gitlab
问题 I want to run a specific job in a pipeline , I thought assigning a tag for the job and then specifying this tag again in the post method will fulfill my needs .The problem is when I trigger using the api(post) , all the jobs in the pipeline are triggered event though only one of this tagged . gitlab-ci.yml : job1: script: - echo "helloworld!" tags : [myTag] job2: script: - echo "hello gitlab!" the api call : curl -X POST -F token="xxx" -F ref="myTag" https://gitlab.com/api/v4/projects