Skip to content

Commit 9722588

Browse files
authored
Merge branch 'main' into 3501-dependency-review-phase1
2 parents f5a41e0 + 0072410 commit 9722588

File tree

54 files changed

+551
-190
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+551
-190
lines changed
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

content/admin/policies/creating-a-pre-receive-hook-script.md

Lines changed: 111 additions & 60 deletions
Large diffs are not rendered by default.
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 %}

0 commit comments

Comments
 (0)