Add custom changelog formatter with frog emoji #4
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: Release | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: oven-sh/setup-bun@v2 | |
| - run: bun install | |
| # Using local source since this is bumpy's own repo — normally use the published package: | |
| # - run: bunx @varlock/bumpy ci release | |
| - run: bun packages/bumpy/src/cli.ts ci release | |
| env: | |
| GH_TOKEN: ${{ github.token }} |