Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/ci/triggers/index.md')
-rw-r--r--doc/ci/triggers/index.md9
1 files changed, 6 insertions, 3 deletions
diff --git a/doc/ci/triggers/index.md b/doc/ci/triggers/index.md
index ee1e05c4fc9..4eee34af402 100644
--- a/doc/ci/triggers/index.md
+++ b/doc/ci/triggers/index.md
@@ -1,8 +1,7 @@
---
stage: Verify
group: Pipeline Authoring
-info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/product/ux/technical-writing/#assignments
-type: tutorial
+info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://handbook.gitlab.com/handbook/product/ux/technical-writing/#assignments
---
# Trigger pipelines by using the API **(FREE ALL)**
@@ -10,6 +9,10 @@ type: tutorial
To trigger a pipeline for a specific branch or tag, you can use an API call
to the [pipeline triggers API endpoint](../../api/pipeline_triggers.md).
+If you are [migrating to GitLab CI/CD](../migration/plan_a_migration.md), you can
+trigger GitLab CI/CD pipelines by calling the API endpoint from the other provider's jobs.
+For example, as part of a migration from [Jenkins](../migration/jenkins.md) or [CircleCI](../migration/circleci.md).
+
When authenticating with the API, you can use:
- A [pipeline trigger token](#create-a-pipeline-trigger-token) to trigger a branch or tag pipeline.
@@ -21,7 +24,7 @@ When authenticating with the API, you can use:
You can trigger a pipeline for a branch or tag by generating a pipeline trigger token and using it
to authenticate an API call. The token impersonates a user's project access and permissions.
-Prerequisite:
+Prerequisites:
- You must have at least the Maintainer role for the project.