Skip to content

Commit a690c48

Browse files
committed
Merge branch 'production' into patch-29
2 parents d216bf8 + 90a6e40 commit a690c48

File tree

5,438 files changed

+306033
-110217
lines changed

Some content is hidden

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

5,438 files changed

+306033
-110217
lines changed

.github/CODEOWNERS

Lines changed: 49 additions & 43 deletions
Large diffs are not rendered by default.

.github/ISSUE_TEMPLATE/engineering.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ 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-
- KianNH
5+
- kodster28
66
body:
77
- type: textarea
88
id: location-urls

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

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

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

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,14 @@ import * as codeOwnersUtils from "codeowners-utils";
9696
}
9797
}
9898

99-
console.log(newLabels);
99+
// Add "date labels to issues"
100+
101+
const formattedDate: string = new Date().toLocaleDateString("en-US", {
102+
month: "long",
103+
year: "numeric",
104+
});
105+
106+
newLabels.add(formattedDate);
100107

101108
if (newLabels.size > 0) {
102109
await client.rest.issues.addLabels({

.github/actions/label-products/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/label-products/index.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,15 @@ async function labelPRSubFolders(
101101
}
102102
}
103103

104+
// Add "date labels to PRs"
105+
106+
const formattedDate: string = new Date().toLocaleDateString("en-US", {
107+
month: "long",
108+
year: "numeric",
109+
});
110+
111+
newLabels.push(formattedDate);
112+
104113
if (newLabels.length > 0) {
105114
await octokit.rest.issues.addLabels({
106115
...repo,

.github/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ updates:
88
schedule:
99
interval: "daily"
1010
assignees:
11-
- "KianNH"
11+
- "kodster28"
1212
reviewers:
13-
- "KianNH"
13+
- "kodster28"

.github/pull_request_template.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
<!-- Remove items that do not apply -->
1212

13-
- [ ] The [documentation style guide](https://developers.cloudflare.com/style-guide/) has been adhered to.
13+
- [ ] Is there a [changelog](https://developers.cloudflare.com/changelog/) entry ([guidelines](https://developers.cloudflare.com/style-guide/documentation-content-strategy/content-types/changelog/))? If you don't add one for something awesome and new (however small) — how will our customers find out? Changelogs are automatically posted to [RSS feeds](https://developers.cloudflare.com/fundamentals/new-features/available-rss-feeds/), the [Discord](https://discord.com/channels/595317990191398933/1040420029080018945), and [X](https://x.com/CFchangelog).
14+
- [ ] The change adheres to the [documentation style guide](https://developers.cloudflare.com/style-guide/).
1415
- [ ] If a larger change - such as adding a new page- an issue has been opened in relation to any incorrect or out of date information that this PR fixes.
1516
- [ ] Files which have changed name or location have been allocated [redirects](https://developers.cloudflare.com/pages/configuration/redirects/#per-file).

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ jobs:
3939
- run: npm run build
4040
env:
4141
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42-
NODE_OPTIONS: "--max-old-space-size=4192"
4342

4443
- name: Install dependencies
4544
run: curl https://htmltest.wjdp.uk | bash

.github/workflows/ci.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,23 @@ jobs:
2727
node_modules/.astro/assets
2828
key: static
2929

30+
- run: |
31+
FILES=$(
32+
find src/content \
33+
-type f \
34+
-not -name '*.mdx' \
35+
-not -name '*.md' \
36+
-not -name '*.json' \
37+
-not -name '*.yml' \
38+
-not -name '*.yaml' \
39+
-not -name '*.txt'
40+
)
41+
42+
if [ -n "$FILES" ]; then
43+
echo "Found files with invalid file extensions:\n\n$FILES"
44+
exit 1
45+
fi
46+
3047
- run: npm ci
3148

3249
- run: npx tsx bin/post-codeowners-comment/index.ts
@@ -48,7 +65,6 @@ jobs:
4865
- run: npm run build
4966
env:
5067
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
51-
NODE_OPTIONS: "--max-old-space-size=4192"
5268
RUN_LINK_CHECK: true
5369

5470
- run: npm run check:worker

0 commit comments

Comments
 (0)