forked from pozetroninc/github-action-get-latest-release
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yaml
34 lines (34 loc) · 851 Bytes
/
action.yaml
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
---
name: 'Get Latest Release'
description: >-
Get the latest release from another repository and output that for use in
other actions
branding:
icon: 'anchor'
color: 'orange'
inputs:
owner:
description: 'The Github user or organization that owns the repository'
required: false
repo:
description: 'The repository name'
required: false
repository:
description: 'The repository name in full'
required: false
excludes:
description: 'Types of releases to exclude (e.g. pre-release)'
required: false
token:
description: 'The GitHub token or personal access token'
required: false
outputs:
release:
description: 'Latest release name'
id:
description: 'Latest release ID'
description:
description: 'Latest release description body'
runs:
using: 'node16'
main: 'dist/index.js'