Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/auto-assign.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Assign PR to author
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
github.rest.issues.addAssignees({
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/claude-code-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:
- name: Get PR details
id: pr
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const pr = await github.rest.pulls.get({
Expand All @@ -40,7 +40,7 @@ jobs:
fetch-depth: 0

- name: Add reaction
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
github.rest.reactions.createForIssueComment({
Expand Down Expand Up @@ -296,7 +296,7 @@ jobs:

- name: Add success reaction
if: success()
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
github.rest.reactions.createForIssueComment({
Expand All @@ -308,7 +308,7 @@ jobs:

- name: Add failure reaction
if: failure()
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
github.rest.reactions.createForIssueComment({
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/continuous-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Add reaction
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
github.rest.reactions.createForIssueComment({
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
run: bunx pkg-pr-new publish './packages/*' './packages/react-headless/*' './packages/utils/*' --compact --comment=off --json output.json

- name: Comment on PR
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const fs = require('fs');
Expand All @@ -72,7 +72,7 @@ jobs:

- name: Add success reaction
if: success()
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
github.rest.reactions.createForIssueComment({
Expand All @@ -84,7 +84,7 @@ jobs:

- name: Add failure reaction
if: failure()
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
github.rest.reactions.createForIssueComment({
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-seed-design-docs-alpha-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:

- name: Find related PR
id: pr
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const { owner, repo } = context.repo;
Expand All @@ -107,7 +107,7 @@ jobs:

- name: Upsert PR preview comment
if: ${{ steps.pr.outputs.number != '' }}
uses: actions/github-script@v8
uses: actions/github-script@v9
env:
PR_NUMBER: ${{ steps.pr.outputs.number }}
PREVIEW_ALIAS_URL: ${{ steps.deploy.outputs.pages-deployment-alias-url }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:

- name: Find related PR
id: pr
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const { owner, repo } = context.repo;
Expand All @@ -70,7 +70,7 @@ jobs:

- name: Upsert PR preview comment
if: ${{ steps.pr.outputs.number != '' }}
uses: actions/github-script@v8
uses: actions/github-script@v9
env:
PR_NUMBER: ${{ steps.pr.outputs.number }}
PREVIEW_ALIAS_URL: ${{ steps.deploy.outputs.pages-deployment-alias-url }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

- name: Find related PR
id: pr
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const { owner, repo } = context.repo;
Expand All @@ -68,7 +68,7 @@ jobs:

- name: Upsert PR preview comment
if: ${{ steps.pr.outputs.number != '' }}
uses: actions/github-script@v8
uses: actions/github-script@v9
env:
PR_NUMBER: ${{ steps.pr.outputs.number }}
PREVIEW_ALIAS_URL: ${{ steps.deploy.outputs.pages-deployment-alias-url }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/renovate-dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Get PR details
if: github.event_name == 'issue_comment'
id: pr-info
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const pr = await github.rest.pulls.get({
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:

- name: Add reaction
if: github.event_name == 'issue_comment'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
await github.rest.reactions.createForIssueComment({
Expand Down Expand Up @@ -344,7 +344,7 @@ jobs:

- name: Add success reaction
if: success() && github.event_name == 'issue_comment'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
await github.rest.reactions.createForIssueComment({
Expand All @@ -356,7 +356,7 @@ jobs:

- name: Add failure reaction
if: failure() && github.event_name == 'issue_comment'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
await github.rest.reactions.createForIssueComment({
Expand Down
Loading