-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathaction.yml
30 lines (30 loc) · 1.33 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
name: 'Trigger CircleCI Pipeline'
description: 'Trigger pipelines on CircleCI for any event on GitHub.'
branding:
icon: "check-circle"
color: "green"
inputs:
GHA_Meta:
required: false
description: 'An optional additional metadata parameter. Will be available on the CircleCI pipeline as GHA_Meta.'
target-slug:
required: false
description: 'The slug of the target CircleCI project. For example, "github/<org>/<project>". Will default to the current project. Can be overwritten with "TARGET_SLUG" environment variable.'
target-branch:
required: false
description: 'The branch of the target CircleCI project. Will default to the current branch name. This should be overwritten if "target-slug" is set. Can be overwritten with "TARGET_BRANCH" environment variable.'
target-tag:
required: false
description: 'The tag of the target CircleCI project. Will default to the current tag name if set. This or branch should be overwritten if "target-slug" is set. Can be overwritten with "TARGET_TAG" environment variable.'
outputs:
id:
description: The unique ID of the pipeline.
state:
description: The current state of the pipeline.
number:
description: The number of the pipeline.
created_at:
description: The date and time the pipeline was created.
runs:
using: 'node20'
main: 'dist/index.js'