Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
  // Job names indicating they are not intended for production
 '^(?i)CopyOf.*',     //Job Name starts with 'CopyOf'
  '^(?i)Untitled.*',  //Job Name starts with 'Untitled'  
  '(?i).*_WIP$',      //Job Name ends with '_WIP'
  '(?i).*DEBUG$',     //Job Name ends with 'DEBUG'
  '(?i).*ORIGINAL$',  //Job Name ends with 'ORIGINAL'
  '(?i).*TEMP$',          //Job Name ends with 'TEMP'
  '(?i).*TMP$',       //Job Name ends with 'TMP'
  // Job names using dates
  '.*[12]\\d{3}(0[1-9]|1[0-2])(0[1-9]|[12]\\d|3[01]).*', //YYYYMMDD
  '.*(0[1-9]|[12]\\d|3[01])(0[1-9]|1[0-2])[12]\\d{3}.*', //DDMMYYYY
  '.*(0[1-9]|1[0-2])(0[1-9]|[12]\\d|3[01])[12]\\d{3}.*', //MMDDYYYY
  '.*\\d{2}(0[1-9]|1[0-2])(0[1-9]|[12]\\d|3[01]).*',     //YYMMDD
  '.*(0[1-9]|[12]\\d|3[01])(0[1-9]|1[0-2])\\d{2}.*',     //DDMMYY
  '.*(0[1-9]|1[0-2])(0[1-9]|[12]\\d|3[01])\\d{2}.*'      //MMDDYY

...