Skip to content

Commit 39282ae

Browse files
authored
Merge branch 'main' into secret-scanning-ga
2 parents a889a5b + abaa799 commit 39282ae

64 files changed

Lines changed: 392 additions & 167 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Send Crowdin PRs to boards
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
8+
jobs:
9+
triage:
10+
if: github.repository == 'github/docs-internal' && github.event.pull_request.head.ref == 'translations'
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9
14+
with:
15+
github-token: ${{ secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES }}
16+
script: |
17+
var squadBoardColumnId = 13447153; // Add to the team backlog/squad board
18+
19+
try {
20+
await github.projects.createCard({
21+
column_id: squadBoardColumnId,
22+
content_id: context.payload.issue.id,
23+
content_type: "Issue"
24+
});
25+
} catch (error) {
26+
console.log(error);
27+
}
28+
29+
var prBoardColumnId = 10095775; // Add to the pull requests board
30+
try {
31+
await github.projects.createCard({
32+
column_id: prBoardColumnId,
33+
content_id: context.payload.issue.id,
34+
content_type: "Issue"
35+
});
36+
} catch (error) {
37+
console.log(error);
38+
}
34.6 KB
Loading
118 KB
Loading
207 KB
Loading
62.3 KB
Loading
59.6 KB
Loading
6.14 KB
Loading
-46.4 KB
Loading
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: Enforcing policies for Advanced Security in your enterprise
3+
intro: 'Enterprise owners can enforce policies to manage {% data variables.product.prodname_GH_advanced_security %} features for organizations on {% data variables.product.product_location %}.'
4+
product: '{% data reusables.gated-features.ghas %}'
5+
versions:
6+
enterprise-server: '>=3.1'
7+
github-ae: 'next'
8+
---
9+
10+
### About {% data variables.product.prodname_GH_advanced_security %}
11+
12+
{% data reusables.advanced-security.ghas-helps-developers %}
13+
14+
### Enforcing a policy for {% data variables.product.prodname_advanced_security %} features
15+
16+
{% data reusables.advanced-security.about-ghas-organization-policy %}
17+
18+
{% data reusables.enterprise-accounts.access-enterprise %}
19+
{% data reusables.enterprise-accounts.policies-tab %}
20+
{% data reusables.enterprise-accounts.advanced-security-policies %}
21+
{% data reusables.enterprise-accounts.advanced-security-organization-policy-drop-down %}
22+
{% data reusables.enterprise-accounts.advanced-security-individual-organization-policy-drop-down %}

content/admin/policies/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ topics:
1616

1717
{% topic_link_in_list /enforcing-policies-for-your-enterprise %}
1818
{% link_in_list /enforcing-repository-management-policies-in-your-enterprise %}
19+
{% link_in_list /enforcing-policies-for-advanced-security-in-your-enterprise %}
1920
{% topic_link_in_list /enforcing-policy-with-pre-receive-hooks %}
2021
{% link_in_list /about-pre-receive-hooks %}
2122
{% link_in_list /creating-a-pre-receive-hook-environment %}

0 commit comments

Comments
 (0)