wails/.github/workflows/changelog-v3.yml
Lea Anthony d2d9acbdf6 Add v3 changelog validation workflow to master branch
- Add changelog-v3.yml workflow for GitHub Actions visibility
- Add v3/scripts/validate-changelog.go validation script
- Monitors PRs to v3-alpha branch for changelog compliance
- Automatically fixes misplaced entries by moving to [Unreleased]

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-13 11:15:38 +10:00

25 lines
No EOL
526 B
YAML

name: Changelog V3
on:
workflow_dispatch:
inputs:
pr_number:
description: 'PR number'
required: true
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: '1.23'
- name: Validate
run: |
echo "PR: ${{ github.event.inputs.pr_number }}"
if [ -f "v3/scripts/validate-changelog.go" ]; then
echo "Script found"
else
echo "Script not found"
fi