-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a support matrix shortcode to the policy guide to indicate which Git providers support specific features. This includes GitHub App, GitHub Webhook, Gitea, GitLab, Bitbucket Cloud, and Bitbucket Server. Update pull_request default template so that the dev can communicate it in the pull_request. Signed-off-by: Chmouel Boudjnah <[email protected]>
- Loading branch information
Showing
3 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{{ $gitlabSupported := .Get "gitlab" }} {{ $githubAppSupported := .Get | ||
"github_app" }} {{ $githubWebhookSupported := .Get "github_webhook" }} {{ | ||
$giteaSupported := .Get "gitea" }} {{ $gitlabSupported := .Get "gitlab" }} {{ | ||
$bitbucketCloudSupported := .Get "bitbucket_cloud" }} {{ | ||
$bitbucketServerSupported := .Get "bitbucket_server" }} | ||
|
||
<blockquote class="book-hint warning"> | ||
<p>This feature is supported on the following providers</p> | ||
<table> | ||
<thead> | ||
<tr> | ||
<th>Git Provider</th> | ||
<th>Supported</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<td>GitHub App</td> | ||
<td>{{ if eq $githubAppSupported "true" }}✅️{{ else }}❌️{{ end }}</td> | ||
</tr> | ||
<tr> | ||
<td>GitHub Webhook</td> | ||
<td> | ||
{{ if eq $githubWebhookSupported "true" }}✅️{{ else }}❌️{{ end }} | ||
</td> | ||
</tr> | ||
<tr> | ||
<td>Gitea</td> | ||
<td>{{ if eq $giteaSupported "true" }}✅️{{ else }}❌️{{ end }}</td> | ||
</tr> | ||
<tr> | ||
<td>GitLab</td> | ||
<td>{{ if eq $gitlabSupported "true" }}✅️{{ else }}❌️{{ end }}</td> | ||
</tr> | ||
<tr> | ||
<td>Bitbucket Cloud</td> | ||
<td> | ||
{{ if eq $bitbucketCloudSupported "true" }}✅️{{ else }}❌️{{ end }} | ||
</td> | ||
</tr> | ||
<tr> | ||
<td>Bitbucket Server</td> | ||
<td> | ||
{{ if eq $bitbucketServerSupported "true" }}✅️{{ else }}❌️{{ end }} | ||
</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</blockquote> |