-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaction.yml
26 lines (26 loc) · 922 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
name: 'oh-docker-tag-action'
description: 'Action to change the docker tag on images from previous to latest and to add the current PR per environment'
author: 'Divyadeep'
inputs:
dockerServer:
description: 'Your docker server url'
username:
description: 'Your docker Username'
password:
description: 'Your docker password'
tagMap:
description: 'Mapping to be used for creating image tags'
imageTag:
description: 'Tag to be used for creating image tags (optional)'
pullId:
description: 'Pull Id to be used for creating image tags (optional)'
commitMessagePattern:
description: 'It is to be used for check commit messages have proper information or not (optional)'
outputs:
environmentName: # id of the output
description: 'Current Environment Name'
pullId: # id of the output
description: 'Current Pull Request Id'
runs:
using: 'node12'
main: 'dist/docker-tag.js'