Skip to content

Commit f030862

Browse files
authored
Merge branch 'main' into patch-1
2 parents a68ce64 + 4dd9e02 commit f030862

File tree

105 files changed

+625
-106
lines changed

Some content is hidden

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

105 files changed

+625
-106
lines changed

.all-contributorsrc

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,50 @@
312312
"contributions": [
313313
"code"
314314
]
315+
},
316+
{
317+
"login": "casals",
318+
"name": "Arthur Casals",
319+
"avatar_url": "https://avatars0.githubusercontent.com/u/785860?v=4",
320+
"profile": "https://github.com/casals",
321+
"contributions": [
322+
"content",
323+
"doc"
324+
]
325+
},
326+
{
327+
"login": "Simran-B",
328+
"name": "Simran",
329+
"avatar_url": "https://avatars3.githubusercontent.com/u/7819991?v=4",
330+
"profile": "https://www.arangodb.com/",
331+
]
332+
},
333+
{
334+
"login": "Ruth",
335+
"name": "Ruth",
336+
"avatar_url": "https://avatars0.githubusercontent.com/u/85029?v=4",
337+
"profile": "https://github.com/ruth",
338+
"contributions": [
339+
"content"
340+
]
341+
},
342+
{
343+
"login": "wi5nia",
344+
"name": "Tomasz Wisniewski",
345+
"avatar_url": "https://avatars2.githubusercontent.com/u/12593852?v=4",
346+
"profile": "http://tomaszwisniewski.com",
347+
"contributions": [
348+
"doc"
349+
]
350+
},
351+
{
352+
"login": "chiedo",
353+
"name": "Chiedo John",
354+
"avatar_url": "https://avatars2.githubusercontent.com/u/2156688?v=4",
355+
"profile": "https://chiedojohn.com/",
356+
"contributions": [
357+
"code"
358+
]
315359
}
316360
],
317361
"contributorsPerLine": 7,

.github/CODEOWNERS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,7 @@ package-lock.json @github/docs-engineering
1414
package.json @github/docs-engineering
1515

1616
/content/github/site-policy/ @github/site-policy-admins
17+
18+
# Make sure that Octokit maintainers get notified about changes
19+
# relevant to the Octokit libraries (https://github.com/octokit)
20+
/content/rest/reference @github/octokit-maintainers

.github/allowed-actions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module.exports = [
2323
'juliangruber/approve-pull-request-action@v1',
2424
'juliangruber/find-pull-request-action@v1',
2525
'juliangruber/read-file-action@v1',
26-
'pascalgn/automerge-action@135f0bdb927d9807b5446f7ca9ecc2c51de03c4a',
26+
'pascalgn/automerge-action@c9bd182',
2727
'peter-evans/create-issue-from-file@v2',
2828
'peter-evans/create-pull-request@v2',
2929
'rachmari/actions-add-new-issue-to-column@v1.1.1',

.github/workflows/automerge.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,17 @@ on:
2020
jobs:
2121
automerge:
2222
runs-on: ubuntu-latest
23-
if: contains(github.event.pull_request.labels.*.name, 'automerge')
23+
if: contains(github.event.pull_request.labels.*.name, 'automerge') || contains(github.event.pull_request.labels.*.name, 'autosquash')
2424
steps:
2525
- name: automerge
26-
uses: "pascalgn/automerge-action@135f0bdb927d9807b5446f7ca9ecc2c51de03c4a"
26+
uses: "pascalgn/automerge-action@c9bd182"
2727
env:
2828
GITHUB_TOKEN: "${{ secrets.OCTOMERGER_PAT_WITH_REPO_AND_WORKFLOW_SCOPE }}"
29-
MERGE_LABELS: "automerge"
30-
MERGE_REMOVE_LABELS: ""
29+
MERGE_METHOD_LABELS: "automerge=merge,autosquash=squash"
3130
MERGE_COMMIT_MESSAGE: "pull-request-title"
3231
MERGE_METHOD: "merge"
3332
MERGE_FORKS: "true"
3433
MERGE_RETRIES: "50"
35-
MERGE_RETRY_SLEEP: "10000"
36-
UPDATE_LABELS: "automerge"
34+
MERGE_RETRY_SLEEP: "10000" # ten seconds
35+
UPDATE_LABELS: "automerge,autosquash"
3736
UPDATE_METHOD: "merge"

.github/workflows/autosquash.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

.github/workflows/start-new-engineering-pr-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ on:
66

77
jobs:
88
triage:
9-
if: github.repository == 'github/docs-internal'
109
runs-on: ubuntu-latest
1110
continue-on-error: true
1211
env:
@@ -15,6 +14,7 @@ jobs:
1514
steps:
1615
- name:
1716
uses: actions/github-script@v2
17+
continue-on-error: true
1818
with:
1919
github-token: ${{ secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES }}
2020
script: |

.github/workflows/test-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
name: Node.js Tests - Windows
44

55
on:
6+
workflow_dispatch:
67
schedule:
78
- cron: "50 19 * * *" # once a day at 19:50 UTC / 11:50 PST
89

@@ -44,7 +45,6 @@ jobs:
4445
run: npm run check-deps
4546

4647
test:
47-
if: github.repository == 'github/docs-internal'
4848
runs-on: windows-latest
4949
strategy:
5050
fail-fast: false

0 commit comments

Comments
 (0)