From bcd8192b174b4eeb940d618aa08533cd268d178d Mon Sep 17 00:00:00 2001 From: Jesica Formoso <32418102+JFormoso@users.noreply.github.com> Date: Fri, 18 Oct 2024 21:32:30 -0300 Subject: [PATCH] Update evaluaciones_cohorte.R --- R/evaluaciones_cohorte.R | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/R/evaluaciones_cohorte.R b/R/evaluaciones_cohorte.R index e7a9980..8b67429 100644 --- a/R/evaluaciones_cohorte.R +++ b/R/evaluaciones_cohorte.R @@ -5,6 +5,12 @@ library(dplyr) library(lubridate) library(stringr) +# Autenticación con Google Drive y Google Sheets +# Este bloque autentica al script con las APIs de Google Drive y Google Sheets, utilizando credenciales +# almacenadas en la variable de entorno 'GOOGLE_APPLICATION_CREDENTIALS'. Estas credenciales, previamente +# configuradas en GitHub Actions, permiten al script acceder y manipular hojas de cálculo y archivos almacenados +# en Google Drive. El sistema de autenticación basado en OAuth 2.0 asegura que se tengan los permisos +# necesarios para interactuar con los datos sin necesidad de autenticación manual. # for googledrive drive_auth(path = Sys.getenv('GOOGLE_APPLICATION_CREDENTIALS'))