Skip to content

Commit 1215c9d

Browse files
authored
Merge pull request #5577 from github/repo-sync
repo sync
2 parents fea5399 + 139018d commit 1215c9d

4 files changed

Lines changed: 16 additions & 8 deletions

File tree

data/reusables/secret-scanning/partner-secret-list-private-repo.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ Partner | Supported secret | API slug
33
n/a | JSON Web Token | json_web_token
44
n/a | OAuth Client Credential | api_credential_assignment
55
Adafruit IO | Adafruit IO Key | adafruit_io_key
6+
Adobe | Adobe Device Token | adobe_device_token
7+
Adobe | Adobe Service Token | adobe_service_token
8+
Adobe | Adobe Short-Lived Access Token | adobe_short_lived_access_token
9+
Adobe | Adobe JSON Web Token | adobe_jwt
610
Alibaba Cloud | Alibaba Cloud Access Key ID | alibaba_cloud_access_key_id
711
Alibaba Cloud | Alibaba Cloud Access Key Secret | alibaba_cloud_access_key_secret
812
Amazon Web Services (AWS) | Amazon AWS Access Key ID | aws_access_key_id

data/reusables/secret-scanning/partner-secret-list-public-repo.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
Partner | Supported secret
22
--- | ---
33
Adafruit IO | Adafruit IO Key
4+
Adobe | Adobe Device Token
5+
Adobe | Adobe Service Token
6+
Adobe | Adobe Short-Lived Access Token
7+
Adobe | Adobe JSON Web Token
48
Alibaba Cloud | Alibaba Cloud Access Key ID and Access Key Secret pair
59
Amazon Web Services (AWS) | Amazon AWS Access Key ID and Secret Access Key pair
610
Atlassian | Atlassian API Token
711
Atlassian | Atlassian JSON Web Token
8-
Azure | Azure DevOps Personal Access Token | azure_devops_personal_access_token
9-
Azure | Azure SAS Token | azure_sas_token
10-
Azure | Azure Service Management Certificate | azure_management_certificate
11-
Azure | Azure SQL Connection String | azure_sql_connection_string
12-
Azure | Azure Storage Account Key | azure_storage_account_key
12+
Azure | Azure DevOps Personal Access Token
13+
Azure | Azure SAS Token
14+
Azure | Azure Service Management Certificate
15+
Azure | Azure SQL Connection String
16+
Azure | Azure Storage Account Key
1317
Clojars | Clojars Deploy Token
1418
CloudBees CodeShip | CloudBees CodeShip Credential
1519
Databricks | Databricks Access Token

includes/article.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ <h1 class="border-bottom-0">{{ page.title }}</h1>
4646
{% endif %}
4747

4848
{% if page.product %}
49-
<div class="product-callout border rounded-1 mb-4 p-3 color-border-info color-bg-info">
49+
<div class="product-callout border rounded-1 mb-4 p-3 color-border-success color-bg-success">
5050
{{ page.product }}
5151
</div>
5252
{% endif %}

tests/rendering/server.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,8 +191,8 @@ describe('server', () => {
191191
test('renders product frontmatter callouts', async () => {
192192
const $ = await getDOM('/en/articles/about-branch-restrictions')
193193
const note = $('.product-callout').eq(0)
194-
expect(note.hasClass('color-border-info')).toBe(true)
195-
expect(note.hasClass('color-bg-info')).toBe(true)
194+
expect(note.hasClass('color-border-success')).toBe(true)
195+
expect(note.hasClass('color-bg-success')).toBe(true)
196196
})
197197

198198
test('renders liquid within liquid within product frontmatter callouts', async () => {

0 commit comments

Comments
 (0)