You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+12-10Lines changed: 12 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -145,7 +145,7 @@ Este comando aplicará automáticamente el formato de Prettier a todo el código
145
145
146
146
## Mensajes de Commit
147
147
148
-
Para mantener un historial de cambios claro y consistente, **todos los mensajes de commit deben seguir el estándar [Conventional Commits](https://www.conventionalcommits.org/es/v1.0.0/)**.
148
+
Para mantener un historial de cambios claro y consistente, **todos los mensajes de commit deben seguir el estándar [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/)**.
149
149
150
150
Un mensaje de commit debe tener la siguiente estructura:
151
151
@@ -161,23 +161,25 @@ cuerpo opcional que explique el motivo del cambio y cualquier detalle relevante
161
161
-**cuerpo**: (Opcional) Explicación adicional que justifique el cambio, detalle relevante, contexto o motivación.
162
162
163
163
**Ejemplos:**
164
-
-`feat(auth): agregar autenticación con Google`
164
+
-`feat(auth): add Google authentication`
165
165
166
-
Se implementa la autenticación utilizando OAuth2 con Google para permitir el inicio de sesión social.
166
+
Implements OAuth2 authentication with Google to allow social login.
167
167
168
-
-`fix(events): corregir error al crear eventos sin fecha`
168
+
-`fix(events): fix error when creating events without date`
169
169
170
-
Se corrige un bug que impedía la creación de eventos cuando no se especificaba la fecha, ahora se asigna la fecha actual por defecto.
170
+
Fixes a bug that prevented event creation when no date was specified; now assigns the current date by default.
171
171
172
-
-`docs: actualizar guía de contribución`
172
+
-`docs: update contribution guide`
173
173
174
-
Se actualiza la documentación para reflejar los nuevos lineamientos de commits.
174
+
Updates documentation to reflect new commit guidelines.
175
175
176
-
-`refactor(participants): simplificar lógica de validación`
0 commit comments