-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
32 lines (29 loc) · 897 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
29
30
31
32
name: "Create AWS ECR Repository"
description: "Create AWS ECR Repository"
author: "Epsy Engineering <[email protected]>"
inputs:
name:
description: Name of your ECR repository
required: true
region:
description: The AWS region
default: us-east-1
required: false
image_tag_mutability:
default: "IMMUTABLE"
description: The tag mutability setting for the repository. If this parameter is omitted, the default setting of MUTABLE will be used which will allow image tags to be overwritten.
required: false
repo_policy:
description: Set reposiotry policy
default: ""
required: false
scan_on_push:
description: Set this to True if you want AWS to scan your images for vulnerabilities on push
default: false
required: false
outputs:
repositry:
description: "ECR Repository"
runs:
using: "docker"
image: "Dockerfile"