func validator_PRMultipleIDs()

in internal/changelog/linter.go [61:67]


func validator_PRMultipleIDs(entry Entry) error {
	if len(entry.LinkedPR) > 1 {
		return fmt.Errorf("changelog entry: %s has multiple PR ids", entry.File.Name)
	}

	return nil
}