Check if stdin is a terminal (for interactive prompts). Convert an atomic_identity::Identity to atomic_core::change::Author. This bridges the two Author types: atomic_identity has its own Author for lightweight identity operations, while atomic_core::change::Author is used in change headers. This function performs the conversion.
(identity: &Identity)
| 127 | /// for lightweight identity operations, while atomic_core::change::Author |
| 128 | /// is used in change headers. This function performs the conversion. |
| 129 | pub(crate) fn identity_to_author(identity: &Identity) -> Author { |
| 130 | Author::with_identity( |
| 131 | identity.name.clone(), |
| 132 | identity.email.clone(), |
| 133 | identity.public_key_base32(), |
| 134 | ) |
| 135 | } |
| 136 | |
| 137 | pub(crate) fn is_terminal() -> bool { |
| 138 | // Use a simple heuristic - check if we're in a CI environment |