Skip to content

Commit 1fc211a

Browse files
authored
Merge branch 'dapr:master' into daanschutte/workflow-tests
2 parents 006582c + 3a91950 commit 1fc211a

File tree

209 files changed

+41692
-964
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

209 files changed

+41692
-964
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: "Dapr Version Tag Selector"
2+
description: "Extracts the latest 2 stable patches and latest optional RC"
3+
author: "Dapr Contributors"
4+
runs:
5+
using: "node20"
6+
main: "dist/index.js"
7+
inputs:
8+
github_token:
9+
description: "GitHub token"
10+
required: true
11+
tag_prefix:
12+
description: "Optional tag prefix (e.g., v)"
13+
required: false
14+
default: ""
15+
stable_count:
16+
description: "Number of latest stable patches to return"
17+
required: false
18+
default: "2"
19+
rc_count:
20+
description: "Number of latest RC versions to return"
21+
required: false
22+
default: "2"
23+
rc_identifier:
24+
description: "RC prerelease identifier"
25+
required: false
26+
default: "rc"
27+
outputs:
28+
matrix_json:
29+
description: "Output matrix"

0 commit comments

Comments
 (0)