From 40da7365e4cb80a7525b3ec6fe040598cd6293f9 Mon Sep 17 00:00:00 2001 From: Justin Gordon Date: Sat, 9 May 2026 12:09:58 -1000 Subject: [PATCH 1/5] Update HorizontalForm.res with demo text --- .../comments/rescript/CommentForm/forms/HorizontalForm.res | 1 + 1 file changed, 1 insertion(+) diff --git a/client/app/bundles/comments/rescript/CommentForm/forms/HorizontalForm.res b/client/app/bundles/comments/rescript/CommentForm/forms/HorizontalForm.res index 2a64a0ca3..95be2da01 100644 --- a/client/app/bundles/comments/rescript/CommentForm/forms/HorizontalForm.res +++ b/client/app/bundles/comments/rescript/CommentForm/forms/HorizontalForm.res @@ -8,6 +8,7 @@ let make = (~author, ~handleAuthorChange, ~text, ~handleTextChange, ~handleSubmi
Date: Thu, 21 May 2026 11:31:42 -1000 Subject: [PATCH 2/5] Update client/app/bundles/comments/rescript/CommentForm/forms/HorizontalForm.res Co-authored-by: claude[bot] <209825114+claude[bot]@users.noreply.github.com> --- .../comments/rescript/CommentForm/forms/HorizontalForm.res | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/app/bundles/comments/rescript/CommentForm/forms/HorizontalForm.res b/client/app/bundles/comments/rescript/CommentForm/forms/HorizontalForm.res index 95be2da01..991862605 100644 --- a/client/app/bundles/comments/rescript/CommentForm/forms/HorizontalForm.res +++ b/client/app/bundles/comments/rescript/CommentForm/forms/HorizontalForm.res @@ -8,7 +8,7 @@ let make = (~author, ~handleAuthorChange, ~text, ~handleTextChange, ~handleSubmi
Date: Thu, 21 May 2026 11:55:30 -1000 Subject: [PATCH 3/5] Update comment author label in HorizontalForm --- .../comments/rescript/CommentForm/forms/HorizontalForm.res | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/app/bundles/comments/rescript/CommentForm/forms/HorizontalForm.res b/client/app/bundles/comments/rescript/CommentForm/forms/HorizontalForm.res index 991862605..04991597d 100644 --- a/client/app/bundles/comments/rescript/CommentForm/forms/HorizontalForm.res +++ b/client/app/bundles/comments/rescript/CommentForm/forms/HorizontalForm.res @@ -8,7 +8,7 @@ let make = (~author, ~handleAuthorChange, ~text, ~handleTextChange, ~handleSubmi
Date: Thu, 21 May 2026 12:14:51 -1000 Subject: [PATCH 4/5] Use Node 24 GitHub action versions --- .../cpflow-cleanup-stale-review-apps.yml | 2 +- .github/workflows/cpflow-delete-review-app.yml | 8 ++++---- .github/workflows/cpflow-deploy-review-app.yml | 16 ++++++++-------- .github/workflows/cpflow-deploy-staging.yml | 6 +++--- .github/workflows/cpflow-help-command.yml | 4 ++-- .../cpflow-promote-staging-to-production.yml | 2 +- .github/workflows/cpflow-review-app-help.yml | 2 +- 7 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/cpflow-cleanup-stale-review-apps.yml b/.github/workflows/cpflow-cleanup-stale-review-apps.yml index 7861e6720..e52932be8 100644 --- a/.github/workflows/cpflow-cleanup-stale-review-apps.yml +++ b/.github/workflows/cpflow-cleanup-stale-review-apps.yml @@ -22,7 +22,7 @@ jobs: timeout-minutes: 30 steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: persist-credentials: false diff --git a/.github/workflows/cpflow-delete-review-app.yml b/.github/workflows/cpflow-delete-review-app.yml index ffdc45f44..d004b0e69 100644 --- a/.github/workflows/cpflow-delete-review-app.yml +++ b/.github/workflows/cpflow-delete-review-app.yml @@ -49,7 +49,7 @@ jobs: # the trust boundary. All local composite actions below are therefore loaded from # trusted base-branch code; keep them that way when changing this workflow. - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: # Delete only invokes `cpln`/`cpflow`; no git push happens, so drop the # GITHUB_TOKEN credential helper to keep the token out of .git/config under @@ -81,7 +81,7 @@ jobs: - name: Set workflow links if: steps.config.outputs.ready == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const workflowUrl = `${process.env.GITHUB_SERVER_URL}/${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId}`; @@ -94,7 +94,7 @@ jobs: - name: Create initial PR comment if: steps.config.outputs.ready == 'true' id: create-comment - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const comment = await github.rest.issues.createComment({ @@ -117,7 +117,7 @@ jobs: # created the initial PR comment and workflow link env vars it updates. - name: Finalize delete status if: always() && steps.config.outputs.ready == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v8 env: COMMENT_ID: ${{ steps.create-comment.outputs.comment-id }} JOB_STATUS: ${{ job.status }} diff --git a/.github/workflows/cpflow-deploy-review-app.yml b/.github/workflows/cpflow-deploy-review-app.yml index f4b029fd4..5560118ce 100644 --- a/.github/workflows/cpflow-deploy-review-app.yml +++ b/.github/workflows/cpflow-deploy-review-app.yml @@ -52,7 +52,7 @@ jobs: steps: - name: Checkout trusted workflow sources - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: # Keep generated composite actions on the trusted base branch. The PR # application code is checked out separately under ./app after source @@ -164,7 +164,7 @@ jobs: - name: Checkout PR commit if: steps.config.outputs.ready == 'true' && steps.source.outputs.allowed == 'true' - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ env.PR_SHA }} path: app @@ -251,7 +251,7 @@ jobs: - name: Create initial PR comment if: steps.config.outputs.ready == 'true' && steps.source.outputs.allowed == 'true' && (steps.check-app.outputs.exists == 'true' || steps.setup-review-app.outcome == 'success') id: create-comment - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const result = await github.rest.issues.createComment({ @@ -264,7 +264,7 @@ jobs: - name: Set deployment links if: steps.config.outputs.ready == 'true' && steps.source.outputs.allowed == 'true' && (steps.check-app.outputs.exists == 'true' || steps.setup-review-app.outcome == 'success') - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const workflowUrl = `${process.env.GITHUB_SERVER_URL}/${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId}`; @@ -277,7 +277,7 @@ jobs: - name: Initialize GitHub deployment if: steps.config.outputs.ready == 'true' && steps.source.outputs.allowed == 'true' && (steps.check-app.outputs.exists == 'true' || steps.setup-review-app.outcome == 'success') id: init-deployment - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const deployment = await github.rest.repos.createDeployment({ @@ -302,7 +302,7 @@ jobs: - name: Update PR comment with build status if: steps.config.outputs.ready == 'true' && steps.source.outputs.allowed == 'true' && (steps.check-app.outputs.exists == 'true' || steps.setup-review-app.outcome == 'success') - uses: actions/github-script@v7 + uses: actions/github-script@v8 env: COMMENT_ID: ${{ steps.create-comment.outputs.comment-id }} with: @@ -343,7 +343,7 @@ jobs: - name: Update PR comment with deploy status if: steps.config.outputs.ready == 'true' && steps.source.outputs.allowed == 'true' && (steps.check-app.outputs.exists == 'true' || steps.setup-review-app.outcome == 'success') - uses: actions/github-script@v7 + uses: actions/github-script@v8 env: COMMENT_ID: ${{ steps.create-comment.outputs.comment-id }} with: @@ -399,7 +399,7 @@ jobs: - name: Finalize deployment status if: always() && steps.config.outputs.ready == 'true' && steps.source.outputs.allowed == 'true' && (steps.check-app.outputs.exists == 'true' || steps.setup-review-app.outcome == 'success') - uses: actions/github-script@v7 + uses: actions/github-script@v8 env: COMMENT_ID: ${{ steps.create-comment.outputs.comment-id }} DEPLOYMENT_ID: ${{ steps.init-deployment.outputs.result }} diff --git a/.github/workflows/cpflow-deploy-staging.yml b/.github/workflows/cpflow-deploy-staging.yml index 076145d6b..3eeb6bfab 100644 --- a/.github/workflows/cpflow-deploy-staging.yml +++ b/.github/workflows/cpflow-deploy-staging.yml @@ -55,7 +55,7 @@ jobs: - name: Checkout repository if: steps.check-branch.outputs.is_deployable == 'true' - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: persist-credentials: false @@ -79,7 +79,7 @@ jobs: timeout-minutes: 30 steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: persist-credentials: false @@ -108,7 +108,7 @@ jobs: timeout-minutes: 30 steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: persist-credentials: false diff --git a/.github/workflows/cpflow-help-command.yml b/.github/workflows/cpflow-help-command.yml index 0818dfb2a..b1233f21b 100644 --- a/.github/workflows/cpflow-help-command.yml +++ b/.github/workflows/cpflow-help-command.yml @@ -33,14 +33,14 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: # Help only reads `.github/cpflow-help.md`; no git push happens, so drop the # GITHUB_TOKEN credential helper to keep the token out of .git/config. persist-credentials: false - name: Post help message - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const fs = require("fs"); diff --git a/.github/workflows/cpflow-promote-staging-to-production.yml b/.github/workflows/cpflow-promote-staging-to-production.yml index dc43d401f..8fa0622be 100644 --- a/.github/workflows/cpflow-promote-staging-to-production.yml +++ b/.github/workflows/cpflow-promote-staging-to-production.yml @@ -52,7 +52,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: persist-credentials: false diff --git a/.github/workflows/cpflow-review-app-help.yml b/.github/workflows/cpflow-review-app-help.yml index f590ea607..e8b12f661 100644 --- a/.github/workflows/cpflow-review-app-help.yml +++ b/.github/workflows/cpflow-review-app-help.yml @@ -22,7 +22,7 @@ jobs: timeout-minutes: 5 steps: - name: Post quick reference - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const body = [ From 9db5381937fa3b54f0c270e65c3f5282c2713e61 Mon Sep 17 00:00:00 2001 From: Justin Gordon Date: Thu, 21 May 2026 14:34:26 -1000 Subject: [PATCH 5/5] Update label text in HorizontalForm.res --- .../comments/rescript/CommentForm/forms/HorizontalForm.res | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/app/bundles/comments/rescript/CommentForm/forms/HorizontalForm.res b/client/app/bundles/comments/rescript/CommentForm/forms/HorizontalForm.res index 04991597d..699205d29 100644 --- a/client/app/bundles/comments/rescript/CommentForm/forms/HorizontalForm.res +++ b/client/app/bundles/comments/rescript/CommentForm/forms/HorizontalForm.res @@ -8,7 +8,7 @@ let make = (~author, ~handleAuthorChange, ~text, ~handleTextChange, ~handleSubmi