Skip to content
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/update-internal-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- run: pnpm exec playwright install chromium
- name: Get PR information
id: pr
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const { data: pullRequest } = await github.rest.pulls.get({
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
git push
- name: Trigger CI
if: steps.changes.outputs.changed == 'true'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
await github.rest.repos.createDispatchEvent({
Expand All @@ -88,7 +88,7 @@ jobs:
});
- name: Comment on PR - Success
if: steps.changes.outputs.changed == 'true'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
await github.rest.issues.createComment({
Expand All @@ -99,7 +99,7 @@ jobs:
});
- name: Comment on PR - No changes
if: steps.changes.outputs.changed == 'false'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
await github.rest.issues.createComment({
Expand Down
Loading