Skip to content
Closed
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/trademark-cla-approval.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

- name: Process CLA Agreement Comment
id: process-comment
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ steps.generate-token.outputs.token || secrets.GITHUB_TOKEN }}
script: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/trademark-cla-notice.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Check if docs changed
id: docs-changed
if: github.event_name == 'pull_request_target'
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ steps.generate-token.outputs.token || secrets.GITHUB_TOKEN }}
script: |
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
- name: Get PR info for comment events
id: pr-info
if: github.event_name == 'issue_comment'
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.GITHUB_PAT || secrets.GITHUB_TOKEN }}
script: |
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:

- name: Post CLA comment and block merge
if: github.event_name == 'pull_request_target' && steps.docs-changed.outputs.requires_cla == 'true'
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ steps.generate-token.outputs.token || secrets.GITHUB_TOKEN }}
script: |
Expand Down
Loading