0.0.34 • Published 3 months ago

changeloggithub v0.0.34

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

Generate changelog for GitHub releases from Conventional Commits, powered by changelogen.

Features

  • Support exclamation mark as breaking change, e.g. chore!: drop node v10
  • Grouped scope in changelog
  • Create the release note, or update the existing one
  • List contributors
  • Support --dry mode to preview the changelog
  • Support --all mode to write to a file
  • Support --from and --to mode to write to a file between two tags

Usage

In GitHub Actions:

# .github/workflows/release.yml

name: Release

permissions:
  contents: write

on:
  push:
    tags:
      - 'v*'

jobs:
  release:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
        with:
          fetch-depth: 0

      - uses: actions/setup-node@v3
        with:
          node-version: 18.x

      - run: npx changeloggithub@latest
        env:
          GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

It will be trigged whenever you push a tag to GitHub that starts with v.

Preview Locally

npx changeloggithub@latest --dry

Write to a file

npx changeloggithub@latest --all true

Write to a file between two tags

npx changeloggithub@latest --from v1.0.0 --to v2.0.0 --output changelog-v2.0.0.md
0.0.34

3 months ago

0.0.33

4 months ago

0.0.32

8 months ago

0.0.31

9 months ago

0.0.29

9 months ago

0.0.28

9 months ago

0.0.27

9 months ago

0.0.26

9 months ago

0.0.25

9 months ago

0.0.24

9 months ago

0.0.23

9 months ago

0.0.22

9 months ago

0.0.21

9 months ago

0.0.20

9 months ago

0.0.19

9 months ago

0.0.18

9 months ago

0.0.17

9 months ago

0.0.16

9 months ago

0.0.15

9 months ago

0.0.14

9 months ago

0.0.13

9 months ago

0.0.12

9 months ago

0.0.11

9 months ago

0.0.10

9 months ago

0.0.9

9 months ago

0.0.8

9 months ago

0.0.7

9 months ago

0.0.6

9 months ago

0.0.5

9 months ago

0.0.4

9 months ago

0.0.3

9 months ago

0.0.2

9 months ago