export const validatePR = event => {
  const { body } = parse(event);
  if (!hasMerged(body)) {
    return false;
  }