Closed seth127 closed 2 years ago
As a user, I want to pass in a prefix to be used at the beginning of generated story IDs and test IDs
parse_github_issues()
StoryId
prefix
is.null(prefix)
repo
max(as.integer(release_issues$issue))
PREFIX-S001
assign_test_ids()
TEST
<prefix>-TEST-001
As a user, I want to pass in a prefix to be used at the beginning of generated story IDs and test IDs
parse_github_issues()
- change whereStoryId
is set hereprefix
argument (should be a string)is.null(prefix)
then set torepo
(this will be the legacy behavior)max(as.integer(release_issues$issue))
)PREFIX-S001
)assign_test_ids()
- change how Test ID is built hereprefix
argument (should be a string)is.null(prefix)
then set torepo
(this will be similar to the legacy behavior)TEST
(so it will be like<prefix>-TEST-001
)