forked from zulhfreelancer/aws-codepipeline-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
28 lines (28 loc) · 810 Bytes
/
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
name: "AWS CodePipeline Trigger"
description: "Trigger a pipeline in AWS CodePipeline from GitHub Actions"
inputs:
aws-region:
description: "AWS Region where the CodePipeline is located"
required: true
aws-access-key:
description: "AWS Access Key ID to trigger CodePipeline"
required: true
aws-secret-key:
description: "AWS Secret Key to trigger CodePipeline"
required: true
pipeline-name:
description: "The name of the pipeline"
required: true
fail-on-error:
description: "Fail the workflow if CodePipeline call returns an error"
required: false
default: "false"
outputs:
codepipeline-execution-id:
description: "The execution ID of the triggered pipeline"
runs:
using: "node20"
main: "dist/index.js"
branding:
icon: "cloud"
color: "orange"