Skip to content

Commit 4f77791

Browse files
committed
Merge PR mhutchie#473 (CI/CD Status): Resolve conflicts and update tests
2 parents 3b6a95b + 77588d3 commit 4f77791

22 files changed

+5718
-89
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@
66
* #907 Fixed the Git Graph icon in the Source Control View title.
77
* #910 Display GPG signature status for commits (verified/unverified) in the graph.
88
* #394 New "Sticky Scroll" option for the Commit Graph.
9+
* #473 Display CI/CD Status (e.g. GitHub Actions) in the graph.
910

1011
### Español
1112
* #602 Nueva acción "Copiar Hash del Commit al Portapapeles".
1213
* #637 Solucionado un problema que impedía la carga de la Vista de Gráfico (actualización de TypeScript).
1314
* #907 Corregido el icono de Git Graph en el título de la Vista de Control de Código Fuente.
1415
* #910 Muestra el estado de la firma GPG de los commits (verificado/no verificado) en el gráfico.
1516
* #394 Nueva opción de "Desplazamiento Pegajoso" para el Gráfico de Commits.
17+
* #473 Muestra el estado de CI/CD (por ejemplo, GitHub Actions) en el gráfico.
1618

1719
## 1.30.0 - 2021-04-05
1820
* #395 Added a "Force Fetch" option onto the "Fetch into Local Branch" Dialog, allowing any local branch (that's not checked out) to be reset to the remote branch. This dialog is accessed via the Remote Branch Context Menu.

package.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,11 @@
6060
"command": "git-graph.clearAvatarCache",
6161
"title": "Clear Avatar Cache"
6262
},
63+
{
64+
"category": "Git Graph",
65+
"command": "git-graph.clearCICDCache",
66+
"title": "Clear CI/CD Status Cache"
67+
},
6368
{
6469
"category": "Git Graph",
6570
"command": "git-graph.endAllWorkspaceCodeReviews",
@@ -993,6 +998,11 @@
993998
"default": false,
994999
"description": "Fetch avatars of commit authors and committers. By enabling this setting, you consent to commit author and committer email addresses being sent GitHub, GitLab or Gravatar, depending on the repositories remote origin."
9951000
},
1001+
"git-graph.repository.commits.fetchCICDsMaximumStatuses": {
1002+
"type": "number",
1003+
"default": 1000,
1004+
"description": "Specifies the number of CI/CD fetch maximum statuses."
1005+
},
9961006
"git-graph.repository.commits.initialLoad": {
9971007
"type": "number",
9981008
"default": 300,

0 commit comments

Comments
 (0)