Skip to content
Merged
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/commit-convention.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check PR title
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
let title;
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-clean-description.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- run: npm install marked@latest

- name: Rewrite PR description and post original as comment
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const { marked } = require('marked');
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/prettier-pr-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
pull-requests: write
steps:
- name: Check user permission
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const { data: permission } = await github.rest.repos.getCollaboratorPermissionLevel({
Expand All @@ -32,7 +32,7 @@ jobs:

- name: Get PR details
id: pr-details
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const { data: pr } = await github.rest.pulls.get({
Expand All @@ -48,7 +48,7 @@ jobs:
}

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

- name: Add completion reaction
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
await github.rest.reactions.createForIssueComment({
Expand Down