Skip to content

Commit 02a066c

Browse files
authored
Merge branch 'cloudflare:production' into production
2 parents 2804b06 + 824f50f commit 02a066c

File tree

56 files changed

+11242
-144
lines changed

Some content is hidden

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

56 files changed

+11242
-144
lines changed

.github/CODEOWNERS

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,9 @@
115115
/src/content/release-notes/queues.yaml @elithrar @jonesphillip @cloudflare/pcx-technical-writing
116116
/src/content/docs/r2/ @oxyjun @elithrar @jonesphillip @aninibread @harshil1712 @cloudflare/workers-docs @cloudflare/pcx-technical-writing
117117
/src/content/release-notes/r2.yaml @oxyjun @elithrar @aninibread @cloudflare/workers-docs @cloudflare/pcx-technical-writing
118-
/src/content/docs/realtime/ @cloudflare/pcx-technical-writing @cloudflare/calls @roerohan @ravindra-dyte
119-
/src/assets/images/realtime/ @cloudflare/pcx-technical-writing @cloudflare/calls @roerohan @ravindra-dyte
120-
/public/realtime/ @cloudflare/pcx-technical-writing @cloudflare/calls @roerohan @ravindra-dyte
118+
/src/content/docs/realtime/ @cloudflare/pcx-technical-writing @cloudflare/realtime @cloudflare/RealtimeKit @roerohan @ravindra-dyte
119+
/src/assets/images/realtime/ @cloudflare/pcx-technical-writing @cloudflare/realtime @cloudflare/RealtimeKit @roerohan @ravindra-dyte
120+
/public/realtime/ @cloudflare/pcx-technical-writing @cloudflare/realtime @cloudflare/RealtimeKit @roerohan @ravindra-dyte
121121
/src/content/docs/stream/ @tsmith512 @ToriLindsay @cloudflare/pcx-technical-writing @renandincer @third774
122122
/src/content/release-notes/stream.yaml @tsmith512 @ToriLindsay @cloudflare/pcx-technical-writing
123123
/src/content/docs/workers/ @cloudflare/workers-docs @GregBrimble @irvinebroque @mikenomitch @korinne @WalshyDev @cloudflare/deploy-config @cloudflare/pcx-technical-writing @kodster28 @cloudflare/wrangler @cloudflare/workers-runtime-1

.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,
29 KB
Loading
126 KB
Loading
16.2 KB
Loading
101 KB
Loading
154 KB
Loading

0 commit comments

Comments
 (0)