forked from buildkite/trigger-pipeline-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
36 lines (35 loc) · 1.07 KB
/
action.yml
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
30
31
32
33
34
35
36
name: 'Trigger Buildkite Pipeline'
author: 'Buildkite'
description: 'A GitHub Action for triggering a build on a Buildkite pipeline.'
inputs:
buildkite_api_access_token:
description: 'Buildkite API Access Token'
required: true
pipeline:
description: 'The pipline to create a build on, in the format <org-slug>/<pipeline-slug>'
required: true
commit:
description: 'The commit SHA of the build'
required: false
default: HEAD
branch:
description: 'The branch of the build'
required: false
message:
description: 'The message for the build'
required: false
build_env_vars:
description: 'Additional environment variables to set on the build, in JSON format'
required: false
build_meta_data:
description: 'Meta-data to set on the build, in JSON format'
required: false
ignore_pipeline_branch_filter:
description: 'Ignore pipeline branch filtering when creating a new build. true or false'
required: false
runs:
using: 'docker'
image: 'Dockerfile'
branding:
icon: 'send'
color: 'green'