Skip to content

Commit 14953a1

Browse files
authored
Merge branch 'main' into release-notes-upgrade-notice
2 parents 164166f + b012a1b commit 14953a1

172 files changed

Lines changed: 3654 additions & 400 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.

.github/ISSUE_TEMPLATE/partner-contributed-documentation.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ Please be sure to complete all items in the checklists that follow, and feel fre
2121

2222
- [ ] Prior to submitting documentation, please apply to join the GitHub Technology Partner Program: [partner.github.com/apply](https://partner.github.com/apply?partnershipType=Technology+Partner). Please feel free to proceed once your application is approved.
2323

24+
## What information would you like to add to docs.github.com?
25+
<!-- Please explain what your proposed article is about, what customers it benefits, and any other information that would help us to prioritize this request -->
26+
2427
## Tasks
2528

2629
Please be sure to complete each of the following:

.github/workflows/move-ready-to-merge-issues.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: Move and unlabel ready to merge issues
2+
3+
# **What it does**: This moves ready to merge PRs on the project board for the open source repo. When a PR in the open source repo is labeled "ready to merge," the "waiting for review" label is removed and the PR is moved to the "Triage" column.
4+
# **Why we have it**: To help with managing our project boards.
5+
# **Who does it impact**: Open source contributors, open-source maintainers.
6+
27
on:
3-
issues:
8+
pull_request:
49
types:
510
- labeled
611

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+
}

app.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"env": {
44
"NODE_ENV": "production",
55
"NPM_CONFIG_PRODUCTION": "true",
6-
"ENABLED_LANGUAGES": "en"
6+
"ENABLED_LANGUAGES": "en",
7+
"WEB_CONCURRENCY": "1"
78
},
89
"buildpacks": [
910
{ "url": "heroku/nodejs" }
34.6 KB
Loading
118 KB
Loading
207 KB
Loading
62.3 KB
Loading
59.6 KB
Loading
6.14 KB
Loading

0 commit comments

Comments
 (0)