mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-14 14:45:49 +01:00
- 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>
25 lines
No EOL
526 B
YAML
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 |