File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 3535 rc1-date :
3636 description : " What's the expected shipping date for RC1?"
3737 required : false
38+ default : " TBD"
3839 stable-date :
3940 description : " What's the expected shipping date for the stable release?"
4041 required : false
42+ default : " TBD"
4143
4244defaults :
4345 run :
5860 GITHUB_TOKEN : ${{ github.token }}
5961 run : |
6062 go run cmd/release/main.go create-issue \
61- --create-on-github true \
63+ --create-on-github= true \
6264 --type "${{ github.event.inputs.type }}" \
6365 --tag "${{ github.event.inputs.tag }}" \
6466 --level "${{ github.event.inputs.level }}" \
Original file line number Diff line number Diff line change @@ -285,8 +285,9 @@ func main() {
285285 }
286286 }
287287
288- rc1Date := c .String ("rc1-date" )
289288 releaseDateStringRegexp := regexp .MustCompile (releaseDateStringPattern )
289+
290+ rc1Date := c .String ("rc1-date" )
290291 if rc1Date != "TBD" {
291292 matches := releaseDateStringRegexp .FindStringSubmatch (rc1Date )
292293 if matches == nil {
You can’t perform that action at this time.
0 commit comments