-
Notifications
You must be signed in to change notification settings - Fork 2
53 lines (53 loc) · 1.23 KB
/
package-listing.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
50
51
52
53
name: "GitHub Actions Playground"
on:
workflow_dispatch:
jobs:
get-version-1:
name: "Get Version 1"
uses: "./.github/workflows/get-version.yml"
secrets: inherit
with:
release_type: major
verbose: true
get-version-2:
name: "Get Version 2"
uses: "./.github/workflows/get-version.yml"
secrets: inherit
with:
release_type: minor
verbose: true
get-version-3:
name: "Get Version 3"
uses: "./.github/workflows/get-version.yml"
secrets: inherit
with:
release_type: patch
verbose: true
get-version-4:
name: "Get Version 4"
uses: "./.github/workflows/get-version.yml"
secrets: inherit
with:
release_type: release-candidate
verbose: true
get-version-5:
name: "Get Version 5"
uses: "./.github/workflows/get-version.yml"
secrets: inherit
with:
release_type: pull-request
verbose: true
get-version-6:
name: "Get Version 6"
uses: "./.github/workflows/get-version.yml"
secrets: inherit
with:
release_type: current
verbose: true
get-version-7:
name: "Get Version 7"
uses: "./.github/workflows/get-version.yml"
secrets: inherit
with:
release_type: unknown
verbose: true