Skip to content

Commit f2f85e7

Browse files
committed
Merge branch 'production' into ranbel/browser-isolation-extension
import errors
2 parents 2d08d59 + a891d45 commit f2f85e7

File tree

623 files changed

+9220
-149525
lines changed

Some content is hidden

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

623 files changed

+9220
-149525
lines changed

.github/CODEOWNERS

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
/src/content/docs/fundamentals/account-and-billing/ @patriciasantaana @cloudflare/pcx-technical-writing
7676
/src/content/docs/learning-paths/ @cloudflare/pcx-technical-writing
7777
/src/content/docs/network-error-logging/ @dcpena @cloudflare/pcx-technical-writing
78-
/src/content/docs/network-interconnect/ @dcpena @cloudflare/pcx-technical-writing
78+
/src/content/docs/network-interconnect/ @marciocloudflare @cloudflare/pcx-technical-writing
7979
/src/content/docs/notifications/ @patriciasantaana @cloudflare/pcx-technical-writing
8080
/src/content/docs/registrar/ @jason-cf @cloudflare/pcx-technical-writing
8181
/src/content/docs/rules/ @pedrosousa @cloudflare/pcx-technical-writing
@@ -124,10 +124,12 @@
124124
/src/content/docs/workers/reference/security-model/ @irvinebroque @GregBrimble @cloudflare/pcx-technical-writing
125125
/src/content/compatibility-dates/ @irvinebroque @kflansburg @mikenomitch @GregBrimble @cloudflare/pcx-technical-writing
126126
/src/content/docs/workers/wrangler/ @penalosa @petebacondarwin @dario-piotrowicz @irvinebroque @GregBrimble @cloudflare/pcx-technical-writing
127-
/src/content/docs/pages/framework-guides/ @igorminar @dario-piotrowicz @jculvey @aninibread @GregBrimble @cloudflare/pcx-technical-writing
127+
/src/content/docs/workers/frameworks/ @igorminar @dario-piotrowicz @jculvey @aninibread @GregBrimble @cloudflare/pcx-technical-writing
128+
/src/content/docs/pages/framework-guides/ @igorminar @dario-piotrowicz @jculvey @aninibread @GregBrimble @tanushree-sharma @cloudflare/pcx-technical-writing
128129
/src/content/docs/analytics/analytics-engine/ @irvinebroque @elithrar @cloudflare/pcx-technical-writing
129130
/cloudflare-for-platforms/workers-for-platforms/ @irvinebroque @tanushree-sharma @angelampcosta @GregBrimble @cloudflare/pcx-technical-writing
130131
/src/content/docs/workers/observability/ @irvinebroque @mikenomitch @rohinlohe @cloudflare/pcx-technical-writing
132+
/src/content/docs/workers/static-assets @irvinebroque @tanushree-sharma @GregBrimble @WalshyDev @cloudflare/pcx-technical-writing
131133

132134
# DDoS Protection
133135

.github/ISSUE_TEMPLATE/engineering.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ name: Cloudflare docs website error(s)
22
description: Report an issue with the live documentation website; for example, issues with content display, buggy browser behavior, etc.
33
labels: ["engineering"]
44
assignees:
5-
- kodster28
65
- KianNH
76
body:
87
- type: textarea

.github/actions/assign-issue/index.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/assign-issue/index.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,10 @@ import * as codeOwnersUtils from "codeowners-utils";
6767
console.log(assignees);
6868

6969
if (assignees.size === 0) {
70-
assignees.add("kodster28");
70+
// assign folks which will manually reassign
71+
["haleycode", "pedrosousa", "dcpena", "patriciasantaana"].forEach(
72+
(username) => assignees.add(username),
73+
);
7174
}
7275

7376
const client = github.getOctokit(token);

.github/actions/assign-pr/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/assign-pr/index.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,10 @@ async function list(
8080
}
8181

8282
if (assignees.size === 0) {
83-
assignees.add("kodster28");
83+
// assign folks which will manually reassign
84+
["haleycode", "pedrosousa", "dcpena", "patriciasantaana"].forEach(
85+
(username) => assignees.add(username),
86+
);
8487
}
8588

8689
// don't self-assign

.github/workflows/anchor-link-audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ jobs:
5757
curl --silent -X POST -H "Authorization: Bearer $GITHUB_TOKEN" \
5858
-H "Accept: application/vnd.github+json" \
5959
"https://api.github.com/repos/$GITHUB_REPOSITORY/issues" \
60-
-d "{\"title\": \"Broken Header Links Found\", \"body\": \"$(cat issue_body.txt)\", \"assignees\": [\"kodster28\", \"haleycode\"]}"
60+
-d "{\"title\": \"Broken Header Links Found\", \"body\": \"$(cat issue_body.txt)\", \"assignees\": [\"haleycode\"]}"

.github/workflows/api-links-crawl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ jobs:
5050
curl --silent -X POST -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
5151
-H "Accept: application/vnd.github+json" \
5252
"https://api.github.com/repos/cloudflare/cloudflare-docs/issues" \
53-
-d "{\"title\": \"Broken API docs links\", \"body\": \"The following API doc links are broken: ${EXPORTED_VARIABLE}\", \"assignees\": [\"kodster28\", \"haleycode\"]}"
53+
-d "{\"title\": \"Broken API docs links\", \"body\": \"The following API doc links are broken: ${EXPORTED_VARIABLE}\", \"assignees\": [\"haleycode\"]}"

.github/workflows/image-audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ jobs:
4747
curl --silent -X POST -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
4848
-H "Accept: application/vnd.github+json" \
4949
"https://api.github.com/repos/cloudflare/cloudflare-docs/issues" \
50-
-d "{\"title\": \"Unused Image Files Found\", \"body\": \"$(cat unused_files.txt)\", \"assignees\": [\"kodster28\", \"haleycode\"]}"
50+
-d "{\"title\": \"Unused Image Files Found\", \"body\": \"$(cat unused_files.txt)\", \"assignees\": [\"haleycode\"]}"

.github/workflows/semgrep.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ name: Semgrep config
1212
jobs:
1313
semgrep:
1414
name: semgrep/ci
15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-latest
1616
env:
1717
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
1818
SEMGREP_URL: https://cloudflare.semgrep.dev
1919
SEMGREP_APP_URL: https://cloudflare.semgrep.dev
2020
SEMGREP_VERSION_CHECK_URL: https://cloudflare.semgrep.dev/api/check-version
2121
container:
22-
image: returntocorp/semgrep
22+
image: semgrep/semgrep
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
- run: semgrep ci

0 commit comments

Comments
 (0)