Skip to content

Commit ce68a9f

Browse files
authored
Merge branch 'main' into fix/layer-editor-review-nits
2 parents c80c4fc + 98dd03a commit ce68a9f

123 files changed

Lines changed: 4065 additions & 1754 deletions

File tree

Some content is hidden

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

.coderabbit.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ reviews:
55
profile: assertive
66
high_level_summary: false
77
request_changes_workflow: true
8+
# Without this, a review that never happened (rate limit, internal error)
9+
# still reports green, so an unreviewed PR is indistinguishable from a
10+
# cleanly reviewed one.
11+
fail_commit_status: true
812
auto_review:
913
drafts: true
1014
ignore_title_keywords:

.github/actions/find-workflow-run/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ runs:
2929
steps:
3030
- name: Find workflow run
3131
id: find
32-
uses: actions/github-script@v8
32+
uses: actions/github-script@v9
3333
env:
3434
WORKFLOW_ID: ${{ inputs.workflow-id }}
3535
HEAD_SHA: ${{ inputs.head-sha }}

.github/actions/resolve-pr-from-workflow-run/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ runs:
3232
steps:
3333
- name: Resolve PR
3434
id: resolve
35-
uses: actions/github-script@v8
35+
uses: actions/github-script@v9
3636
with:
3737
github-token: ${{ inputs.token }}
3838
script: |

.github/actions/upsert-comment-section/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ inputs:
2626
runs:
2727
using: composite
2828
steps:
29-
- uses: actions/github-script@v8
29+
- uses: actions/github-script@v9
3030
env:
3131
INPUT_PR_NUMBER: ${{ inputs.pr-number }}
3232
INPUT_SECTION_NAME: ${{ inputs.section-name }}

.github/workflows/ci-lint-format.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
- name: Comment on PR about auto-fix
7979
if: steps.verify-changed-files.outputs.changed == 'true' && github.event.pull_request.head.repo.full_name == github.repository
8080
continue-on-error: true
81-
uses: actions/github-script@v8
81+
uses: actions/github-script@v9
8282
with:
8383
script: |
8484
github.rest.issues.createComment({

.github/workflows/ci-tests-e2e-coverage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116

117117
- name: Upload E2E coverage to Codecov
118118
if: steps.coverage-shards.outputs.has-coverage == 'true'
119-
uses: codecov/codecov-action@1af58845a975a7985b0beb0cbe6fbbb71a41dbad # v5.5.3
119+
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
120120
with:
121121
files: coverage/playwright/coverage.lcov
122122
flags: e2e

.github/workflows/ci-tests-unit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949

5050
- name: Upload coverage to Codecov
5151
if: always()
52-
uses: codecov/codecov-action@1af58845a975a7985b0beb0cbe6fbbb71a41dbad # v5.5.3
52+
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
5353
with:
5454
files: coverage/lcov.info
5555
flags: unit

.github/workflows/ci-vercel-website-preview.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363

6464
- name: Fetch head commit metadata
6565
id: head-commit
66-
uses: actions/github-script@v8
66+
uses: actions/github-script@v9
6767
with:
6868
script: |
6969
const { data } = await github.rest.repos.getCommit({

.github/workflows/ci-website-e2e.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
- name: Categorize failures
106106
id: failures
107107
if: always() && !cancelled() && steps.tests.outcome != 'success'
108-
uses: actions/github-script@v8
108+
uses: actions/github-script@v9
109109
with:
110110
script: |
111111
const fs = require('fs')
@@ -136,7 +136,7 @@ jobs:
136136
137137
- name: Write job summary
138138
if: always() && !cancelled()
139-
uses: actions/github-script@v8
139+
uses: actions/github-script@v9
140140
env:
141141
TEST_OUTCOME: ${{ steps.tests.outcome }}
142142
REPORT_URL: ${{ steps.deploy.outputs.url }}
@@ -221,7 +221,7 @@ jobs:
221221

222222
- name: Build e2e section content
223223
id: content
224-
uses: actions/github-script@v8
224+
uses: actions/github-script@v9
225225
env:
226226
TEST_OUTCOME: ${{ needs.website-e2e.outputs.test-outcome }}
227227
REPORT_URL: ${{ needs.website-e2e.outputs.report-url }}

.github/workflows/coverage-slack-notify.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464

6565
- name: Resolve merged PR metadata
6666
id: pr-meta
67-
uses: actions/github-script@v8
67+
uses: actions/github-script@v9
6868
with:
6969
script: |
7070
const sha = context.payload.workflow_run.head_sha;

0 commit comments

Comments
 (0)