You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be great to have a quality check of ChangesetLabelCheck with a ‘SEARCH_STRING’ and MESSAGE option. To enforce a certain string in the label like an ITSM ticket or change.
Ex.
Enforce every changeset to have a Jira ticket number on the label:
--changeset john.armless:1 labels:jira-1234 context:dev
create table person (
id int primary key auto_increment not null,
name varchar(50) not null,
address1 varchar(50),
address2 varchar(50),
city varchar(30)
)
SEARCH_STRING: (?i:jira-)[0-9]{3,6},?(.*) MESSAGE: "Error: It is mandatory to associate the JIRA ticket number with the changeset. Ex. jira-1234"
The text was updated successfully, but these errors were encountered:
It would be great to have a quality check of ChangesetLabelCheck with a ‘SEARCH_STRING’ and MESSAGE option. To enforce a certain string in the label like an ITSM ticket or change.
Ex.
Enforce every changeset to have a Jira ticket number on the label:
SEARCH_STRING: (?i:jira-)[0-9]{3,6},?(.*)
MESSAGE: "Error: It is mandatory to associate the JIRA ticket number with the changeset. Ex. jira-1234"
The text was updated successfully, but these errors were encountered: