File tree Expand file tree Collapse file tree 6 files changed +11
-8
lines changed Expand file tree Collapse file tree 6 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 8
8
description : " The owner/repo GitHub target"
9
9
required : true
10
10
branch :
11
- description : The branch to target"
11
+ description : The branch to target
12
12
required : true
13
13
version_spec :
14
14
description : " New Version Specifier"
Original file line number Diff line number Diff line change 6
6
description : " The owner/repo GitHub target"
7
7
required : true
8
8
branch :
9
- description : " The branch to target"
9
+ description : " The branch to target (defaults to default branch) "
10
10
version_spec :
11
11
description : " New Version Spec"
12
+ default : " next"
12
13
since :
13
14
description : Use PRs with activity since this date or git reference
14
15
since_last_stable :
Original file line number Diff line number Diff line change 6
6
description : " The owner/repo GitHub target"
7
7
required : true
8
8
branch :
9
- description : " The branch to target"
9
+ description : " The branch to target (defaults to default branch) "
10
10
version_spec :
11
- description : " New Version Specifier"
11
+ description : " New Version Spec"
12
+ default : " next"
12
13
post_version_spec :
13
14
description : " Post Version Specifier"
14
15
since :
Original file line number Diff line number Diff line change 6
6
description : " The owner/repo GitHub target"
7
7
required : true
8
8
branch :
9
- description : " The branch to target"
9
+ description : " The branch to target (defaults to default branch) "
10
10
version_spec :
11
- description : " New Version Specifier"
11
+ description : " New Version Spec"
12
+ default : " next"
12
13
post_version_spec :
13
14
description : " Post Version Specifier"
14
15
since :
Original file line number Diff line number Diff line change 17
17
curr_dir = os .getcwd ()
18
18
os .chdir (CHECKOUT_NAME )
19
19
since_last_stable = os .environ .get ("RH_SINCE_LAST_STABLE" )
20
- since = get_latest_tag (os .environ [ "RH_BRANCH" ] , since_last_stable )
20
+ since = get_latest_tag (os .environ . get ( "RH_BRANCH" ) , since_last_stable )
21
21
if since :
22
22
log (f"Capturing { since } in RH_SINCE variable" )
23
23
os .environ ["RH_SINCE" ] = since
Original file line number Diff line number Diff line change 41
41
curr_dir = os .getcwd ()
42
42
os .chdir (CHECKOUT_NAME )
43
43
since_last_stable = os .environ .get ("RH_SINCE_LAST_STABLE" )
44
- since = get_latest_tag (os .environ [ "RH_BRANCH" ] , since_last_stable )
44
+ since = get_latest_tag (os .environ . get ( "RH_BRANCH" ) , since_last_stable )
45
45
if since :
46
46
log (f"Capturing { since } in RH_SINCE variable" )
47
47
os .environ ["RH_SINCE" ] = since
You can’t perform that action at this time.
0 commit comments