mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-14 14:45:49 +01:00
Fix YAML syntax error in v3-check-changelog workflow
Fixed multiline commit message using HEREDOC syntax on line 421 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
52cd0d4cc7
commit
cad1fae3e4
1 changed files with 6 additions and 3 deletions
9
.github/workflows/v3-check-changelog.yml
vendored
9
.github/workflows/v3-check-changelog.yml
vendored
|
|
@ -34,7 +34,7 @@ jobs:
|
|||
- name: Setup Go
|
||||
uses: actions/setup-go@v4
|
||||
with:
|
||||
go-version: '1.24'
|
||||
go-version: '1.23'
|
||||
|
||||
- name: Get PR information
|
||||
id: pr_info
|
||||
|
|
@ -416,12 +416,15 @@ jobs:
|
|||
else
|
||||
# Add and commit the changes
|
||||
git add docs/src/content/docs/changelog.mdx
|
||||
git commit -m "🤖 Fix changelog: move entries to Unreleased section
|
||||
git commit -m "$(cat <<'EOF'
|
||||
🤖 Fix changelog: move entries to Unreleased section
|
||||
|
||||
This automated fix was triggered by the v3-check-changelog workflow.
|
||||
Misplaced entries in already-released versions have been moved to the [Unreleased] section.
|
||||
|
||||
Co-Authored-By: GitHub Action <action@github.com>"
|
||||
Co-Authored-By: GitHub Action <action@github.com>
|
||||
EOF
|
||||
)"
|
||||
|
||||
# Push the changes
|
||||
git push origin HEAD
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue