Drone 插件市场 > Gitlab-CI

Gitlab-ci 插件可自动触发 Gitlab-ci 作业。

YAML 配置示例

kind: pipeline
name: default

steps:
- name: trigger gitlab job
  image: appleboy/drone-gitlab-ci
  settings:
    host: https://gitlab.com
    token: xxxxxxxxxx
    ref: master
    id: gitlab-project-id

字段属性说明

  • host

    string必填项

    Gitlab 服务器网址

    默认值:none

  • token

    string必填项

    Gitlab 令牌

    推荐使用密钥 (Secret) 功能

    默认值:none

  • ref

    string必填项

    有效引用仅指分支和标记

    默认值:none

  • id

    string必填项

    Gitlab 项目 ID

    默认值:none

  • debug

    boolean可选项

    启用调试模式

    默认值:false