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/changelog-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

- name: Add workflow source comment
if: github.event_name == 'pull_request'
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:

- name: Add workflow source comment
if: github.event_name == 'pull_request'
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,7 @@ Improves the changelog comparison functionality by implementing a more accurate
<!-- Updated for AI processing at 2025-08-19T14:08:56.727Z -->

<!-- Updated for AI processing at 2025-08-19T14:08:57.564Z -->


<!-- AI_APPEND_HERE -->
<!-- Updated for AI processing at 2025-09-15T23:37:28.419Z -->
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ runs:

- name: Ensure changelog is in PR diff
if: github.event_name == 'pull_request' && steps.check-suggestions.outputs.should_skip != 'true'
uses: actions/github-script@v7
uses: actions/github-script@v8
env:
CHANGELOG_PATH: ${{ inputs.changelog_path }}
with:
Expand Down Expand Up @@ -367,7 +367,7 @@ runs:

- name: Comment about missing API key
if: steps.check-suggestions.outputs.should_skip != 'true' && steps.check-api-key.outputs.api_key_missing == 'true' && github.event_name == 'pull_request'
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ inputs.github_token }}
script: |
Expand Down Expand Up @@ -506,7 +506,7 @@ runs:
github.event_name == 'pull_request' &&
steps.check-status.outputs.has_changes == 'true' &&
inputs.create_pr_suggestions == 'true'
uses: actions/github-script@v7
uses: actions/github-script@v8
env:
CHANGELOG_PATH: ${{ inputs.changelog_path }}
with:
Expand Down