Skip to content

Commit 82faf02

Browse files
Merge branch 'production' into rebecca/dns-proxy-status-review
2 parents e1688bc + e8a63d5 commit 82faf02

File tree

303 files changed

+5052
-5865
lines changed

Some content is hidden

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

303 files changed

+5052
-5865
lines changed

.github/CODEOWNERS

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
# AI
1919

20+
/src/content/docs/agents/ @irvinebroque @rita3ko @elithrar @thomasgauvin @threepointone
2021
/src/content/docs/ai-gateway/ @kathayl @G4brym @mchenco @daisyfaithauma @cloudflare/pcx-technical-writing
2122
/src/content/docs/workers-ai/ @rita3ko @craigsdennis @markdembo @mchenco @daisyfaithauma @cloudflare/pcx-technical-writing
2223
/src/content/docs/vectorize/ @elithrar @vy-ton @sejoker @mchenco @cloudflare/pcx-technical-writing
@@ -40,11 +41,12 @@
4041

4142
# Browser Rendering API
4243

43-
/src/content/docs/browser-rendering/ @mchenco @cloudflare/pcx-technical-writing @celso @meddulla
44+
/src/content/docs/browser-rendering/ @mchenco @cloudflare/pcx-technical-writing @celso @meddulla @danielgek
4445

4546
# Changelogs
4647

47-
/src/content/changelogs-next/ @elithrar @irvinebroque @jonesphillip @rita3ko @zaidf
48+
/src/content/changelogs-next/ @cloudflare/pm-changelogs
49+
/src/assets/images/changelog-next/ @cloudflare/pm-changelogs
4850

4951
# Cloudflare One
5052

.github/actions/show-changed-files/action.yml

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

.github/actions/show-changed-files/index.js

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

.github/actions/show-changed-files/index.ts

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

.github/actions/show-changed-files/package.json

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

.github/actions/show-changed-files/readme.md

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

.github/styles/cloudflare/NonStandardQuotes.yml

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

.github/workflows/publish-preview.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
runs-on: ubuntu-22.04
1313
permissions:
1414
contents: read
15+
pull-requests: write
1516
name: Publish Preview
1617
steps:
1718
- uses: actions/checkout@v4
@@ -31,15 +32,19 @@ jobs:
3132
name: Build
3233
env:
3334
NODE_OPTIONS: --max-old-space-size=4096
34-
- run: npx wrangler pages deploy --project-name cloudflare-docs dist
35-
name: Deploy to Cloudflare Pages
35+
- name: Deploy to Cloudflare Workers
3636
env:
37-
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
3837
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
39-
- run: npx wrangler versions upload -c ./wrangler-workers.toml
40-
name: Deploy to Cloudflare Workers
38+
run: |
39+
SHORT_SHA=$(git rev-parse --short=8 HEAD)
40+
BRANCH_SLUG=$(git rev-parse --abbrev-ref HEAD | iconv -c -t ascii//TRANSLIT | sed -E 's/[~^]+//g' | sed -E 's/[^a-zA-Z0-9]+/-/g' | sed -E 's/^-+|-+$//g' | tr A-Z a-z)
41+
42+
npx wrangler deploy --dispatch-namespace preview-deployments --name $SHORT_SHA
43+
npx wrangler deploy --dispatch-namespace preview-deployments --name $BRANCH_SLUG
44+
- name: Post preview URL on PR
4145
env:
42-
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
46+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
47+
run: npx tsx bin/post-preview-url-comment/index.ts
4348
- uses: actions/cache/save@v4
4449
if: always()
4550
with:

.github/workflows/publish-production.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,7 @@ jobs:
2828
name: Build
2929
env:
3030
NODE_OPTIONS: --max-old-space-size=4096
31-
- run: npx wrangler pages deploy --project-name cloudflare-docs dist
32-
name: Deploy to Cloudflare Pages
33-
env:
34-
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
35-
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
36-
- run: npx wrangler deploy -c ./wrangler-workers.toml
31+
- run: npx wrangler deploy
3732
name: Deploy to Cloudflare Workers
3833
env:
3934
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}

.github/workflows/show-changed-files.yml

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

0 commit comments

Comments
 (0)