-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
49 lines (36 loc) · 1.32 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
name: 'Minecraft Version Manifest Info'
description: 'A GitHub action to get infos about Minecraft version manifest.'
author: 'Mqxx'
branding:
icon: 'info'
color: 'purple'
inputs:
token:
description: 'GitHub token.'
required: true
manifest-url:
description: 'An URL to the version manifest.'
default: 'https://piston-meta.mojang.com/mc/game/version_manifest_v2.json'
required: false
outputs:
version-changed:
description: 'Whether the release or snapshot version has changed.'
version-release-changed:
description: 'Whether the release version has changed.'
version-snapshot-changed:
description: 'Whether the snapshot version has changed.'
version-current-release:
description: 'The current Minecraft release version fetched.'
version-current-release-url:
description: 'The download url of the release version.json file.'
version-current-snapshot:
description: 'The current Minecraft snapshot version fetched.'
version-current-snapshot-url:
description: 'The download url of the snapshot version.json file.'
version-previous-release:
description: 'The previous Minecraft release version from artifact.'
version-previous-snapshot:
description: 'The previous Minecraft snapshot version from artifact.'
runs:
using: 'node20'
main: 'dist/bundle.min.js'