Skip to content

Commit b3ea99a

Browse files
committed
Merge remote-tracking branch 'origin/main' into fix-memory-leak
2 parents 55421ae + 96bf4c9 commit b3ea99a

File tree

73 files changed

+6503
-1649
lines changed

Some content is hidden

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

73 files changed

+6503
-1649
lines changed

.github/workflows/claude-code-review.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
# Skip review for automated "Version Packages" PRs created by changesets
2020
if: github.event.pull_request.title != 'Version Packages'
2121

22+
timeout-minutes: 30
2223
runs-on: ubuntu-latest
2324
permissions:
2425
contents: read

.github/workflows/claude.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
(github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) ||
1818
(github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude')) ||
1919
(github.event_name == 'issues' && (contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude')))
20+
timeout-minutes: 30
2021
runs-on: ubuntu-latest
2122
permissions:
2223
contents: write

.github/workflows/pullrequest.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,14 @@ jobs:
136136
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
137137
command: deploy --name ${{ steps.env-name.outputs.worker_name }}
138138
workingDirectory: tests/e2e/test-worker
139+
secrets: |
140+
AWS_ACCESS_KEY_ID
141+
AWS_SECRET_ACCESS_KEY
142+
CLOUDFLARE_ACCOUNT_ID
143+
env:
144+
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
145+
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
146+
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
139147

140148
# Construct worker URL from worker name
141149
- name: Get deployment URL
@@ -149,6 +157,9 @@ jobs:
149157
env:
150158
TEST_WORKER_URL: ${{ steps.get-url.outputs.worker_url }}
151159
CI: true
160+
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
161+
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
162+
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
152163

153164
# Cleanup: Delete test worker and container (only for PR environments)
154165
- name: Cleanup test deployment

0 commit comments

Comments
 (0)