This repository was archived by the owner on Feb 15, 2026. It is now read-only.
docs(README.md): mark repo as archived and unmaintained #29
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: ChangeSet | |
| on: | |
| push: | |
| branches: | |
| - main | |
| concurrency: ${{ github.workflow }}-${{ github.ref }} | |
| jobs: | |
| release: | |
| if: github.repository == 'KemingHe/buckeye-gpt' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| env: | |
| # Disable Husky hooks during CI. | |
| HUSKY: 0 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up pnpm before node | |
| # Pinned to commit hash of release v4.0.0 on 05/07/24. | |
| uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 | |
| # Omit with to use package.json packageManager field pnpm version. | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: .nvmrc | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Create changeset release pull request | |
| # Pinned to commit hash of release v1.4.9 on 10/14/24. | |
| uses: changesets/action@c8bada60c408975afd1a20b3db81d6eee6789308 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| commit: 'chore(package.json, CHANGELOG.md): created new changeset release' | |
| title: 'chore(package.json, CHANGELOG.md): created new changeset release' |