File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 35
35
rc1-date :
36
36
description : " What's the expected shipping date for RC1?"
37
37
required : false
38
+ default : " TBD"
38
39
stable-date :
39
40
description : " What's the expected shipping date for the stable release?"
40
41
required : false
42
+ default : " TBD"
41
43
42
44
defaults :
43
45
run :
58
60
GITHUB_TOKEN : ${{ github.token }}
59
61
run : |
60
62
go run cmd/release/main.go create-issue \
61
- --create-on-github true \
63
+ --create-on-github= true \
62
64
--type "${{ github.event.inputs.type }}" \
63
65
--tag "${{ github.event.inputs.tag }}" \
64
66
--level "${{ github.event.inputs.level }}" \
Original file line number Diff line number Diff line change @@ -285,8 +285,9 @@ func main() {
285
285
}
286
286
}
287
287
288
- rc1Date := c .String ("rc1-date" )
289
288
releaseDateStringRegexp := regexp .MustCompile (releaseDateStringPattern )
289
+
290
+ rc1Date := c .String ("rc1-date" )
290
291
if rc1Date != "TBD" {
291
292
matches := releaseDateStringRegexp .FindStringSubmatch (rc1Date )
292
293
if matches == nil {
You can’t perform that action at this time.
0 commit comments