Skip to content

test: fix golden tests to skip on non-macOS platforms #10

test: fix golden tests to skip on non-macOS platforms

test: fix golden tests to skip on non-macOS platforms #10

Workflow file for this run

name: Changelog
on:
push:
branches:
- main
jobs:
changelog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Generate CHANGELOG
run: |
git log --pretty=format:"- %s (%h)" HEAD~20..HEAD > CHANGELOG.md
- name: Commit CHANGELOG
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add CHANGELOG.md
git commit -m "docs: update CHANGELOG" || echo "No changes"