Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
f399894
Modifying to optionally use an envvar to get the Dapr version if set
WhitWaldo Feb 5, 2026
de78577
Added unit tests to validate expected values
WhitWaldo Feb 5, 2026
65c46a8
Added script for testing and building tag-selector for retrieving Dap…
WhitWaldo Feb 5, 2026
f648a82
Updated to add step for building and running the script to get Dapr r…
WhitWaldo Feb 5, 2026
f638c7f
Updated to pull the one most recent stable version
WhitWaldo Feb 5, 2026
019cc8f
Updated paths
WhitWaldo Feb 5, 2026
d48b683
Removed cache-dependency-path
WhitWaldo Feb 5, 2026
672c6bd
Updated paths
WhitWaldo Feb 5, 2026
022a228
Updated tsconfig, fixed a bug in inputs and rebuilt output
WhitWaldo Feb 5, 2026
64ebd4e
Fixed variable reference bug
WhitWaldo Feb 5, 2026
8f6128a
Added matrix outputs
WhitWaldo Feb 5, 2026
21ac8c2
Fixing the repo queried to dapr/dapr
WhitWaldo Feb 5, 2026
ffc8051
Simplified GitHub action name for integration tests v2 to reflect {tf…
WhitWaldo Feb 5, 2026
bc06065
Fixing action
WhitWaldo Feb 5, 2026
34e5193
Fixing naming issue
WhitWaldo Feb 5, 2026
be2116a
Typo update
WhitWaldo Feb 5, 2026
fe0362b
Fixed filter to only capture the new integration tests
WhitWaldo Feb 5, 2026
eb55073
Added TFM value to shorten name
WhitWaldo Feb 5, 2026
4545163
Drops "Dapr.IntegrationTest." from start of the project name
WhitWaldo Feb 5, 2026
2ae4174
Trying to correct transient port unavailability issue
WhitWaldo Feb 5, 2026
1c9e7a5
Update to include the most recent two stable versions so as to preven…
WhitWaldo Feb 5, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/tools/tag-selector/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: "Dapr Version Tag Selector"
description: "Extracts the latest 2 stable patches and latest optional RC"
author: "Dapr Contributors"
runs:
using: "node20"
main: "dist/index.js"
inputs:
github_token:
description: "GitHub token"
required: true
tag_prefix:
description: "Optional tag prefix (e.g., v)"
required: false
default: ""
stable_count:
description: "Number of latest stable patches to return"
required: false
default: "2"
rc_identifier:
description: "RC prerelease identifier"
required: false
default: "rc"
outputs:
matrix_json:
description: "Output matrix"
Loading
Loading