-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
29 lines (29 loc) · 814 Bytes
/
action.yml
File metadata and controls
29 lines (29 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: 'Trigger GitLab pipeline'
description: 'Trigger GitLab pipeline'
inputs:
ci-api-v4-url:
description: 'GitLab API v4 root URL'
required: true
access-token:
description: 'GitLab API access token'
required: true
trigger-token:
description: 'GitLab API trigger token'
required: true
project-id:
description: 'GitLab project ID'
required: true
triggered-ref:
description: 'GitLab project ref to trigger'
required: true
schedule:
description: 'Indication if it is a automatically scheduled request'
required: false
default: false
cancel-outdated-pipelines:
description: 'If set to true, it will cancel previous pipelines that are running for the same github ref'
required: false
default: true
runs:
using: 'node16'
main: 'index.js'