-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
33 lines (29 loc) · 936 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
name: 'Check versions'
description: 'Check for missing or outdated versions of packages mentioned in the issue'
author: 'Satyajit Sahoo'
branding:
icon: 'alert-triangle'
color: 'orange'
inputs:
github-token:
description: The `GITHUB_TOKEN` secret.
required: true
required-packages:
description: 'List of optional packages to check for'
optional-packages:
description: 'List of optional packages to check for'
comment:
description: 'Whether to comment on the issue when missing or outdated versions are found'
default: true
missing-versions-label:
description: 'Label to add when missing or outdated versions are found'
outputs:
found:
description: 'Packages and version numbers found'
outdated:
description: 'Packages with outdated versions and their latest versions'
missing:
description: 'Packages missing version numbers'
runs:
using: 'node12'
main: 'src/index.js'