Merge pull request #82 from pras75299/feat/fullscreen-preview-align #70
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Prepare Release Changelog | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - pras75299/initial-feature-setup | |
| workflow_dispatch: | |
| jobs: | |
| changesets: | |
| name: Open or update release PR | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10.33.0 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "24" | |
| cache: "pnpm" | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Create release PR from changesets | |
| uses: changesets/action@v1 | |
| with: | |
| version: pnpm version-packages | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| # The pre-commit hook (scripts/pre-commit.sh) refuses to commit | |
| # Markdown files without explicit approval. The changesets action | |
| # commits regenerated CHANGELOG.md files programmatically, so opt | |
| # into the documented escape hatch. Tests + lint still run. | |
| ALLOW_MD: "1" |