forked from layer5io/trigger-remote-provider-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
37 lines (33 loc) · 745 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
33
34
35
36
37
name: 'Propagate GitHub Release Event'
description: 'Trigger workflows in remote GitHub repository'
inputs:
name:
description: 'name of the action'
required: true
default: ''
repo:
description: 'name of the repo that has the action'
required: true
default: ''
token:
description: 'repository access token'
required: false
default: ''
version:
description: 'version input to the action'
required: false
default: ''
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.name }}
- ${{ inputs.repo }}
- ${{ inputs.version }}
- ${{ inputs.token }}
outputs:
version:
description: 'The version of the release or tag'
branding:
icon: 'box'
color: 'blue'