Skip to content

zattoo/changelog

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

71 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐Ÿ“‹ Changelog Validate

GitHub Action to validate CHANGELOG.md files and indicate if the changelog should be modified based on watch folders.

Validations:

  • A h1 title must be present
  • Only one h1 heading
  • Only one h2 with unreleased is allowed
  • Unreleased must be the fist heading
  • H2 should contain a valid version or be unreleased
  • H2 heading should have a proper SemVer
  • H2 should have valid dates
  • No repeated H3 under the same H2
  • Versions should be in decremental order from top to bottom
  • A greater alfa version can be after a smaller version
  • It cannot contain two equal versions
  • Headings should have a correct number of spaces
  • Headings space before and after
  • H3 headings must be of a valid type
    • Added
    • Changed
    • Deprecated
    • Removed
    • Fixed
    • Security
    • Infrastructure
    • Updated
  • For "release" branch
    • Should have a valid date
    • Version should match package.json and package-lock.json
    • Can't be "Unreleased"

To avoid doing checks a label with the message -changelog should be in the pull request.

Inputs

token

string

Required. GitHub token

sources

array of strings

Optional. String with folders to watch separated by commas Example : 'projects/app/, projects/embed/, projects/account/'

exclude

array of strings

Optional. String with folders or files to exclude from watch Example : '.eslintrc, packages/**'

release_branches

array of strings

Optional. String with branches to watch separated by commas Example : 'release, hotfix'

ignoreActionLabel

string, default: -changelog

Pull request label name to avoid executing the action

Usage Example

on: [pull_request]

jobs:
  changelog:
    runs-on: ubuntu-latest
    name: Changelog Validate
    steps:
      - uses: actions/checkout@v4
      - uses: zattoo/changelog@v1
        with:
          token: ${{github.token}}
          sources: 'src/projects/a/, src/projects/b/'

About

๐Ÿ“‹ GitHub Action to validate CHANGELOG.md files and indicate if the changelog should be modified based on watch folders.

Resources

License

Stars

Watchers

Forks

Packages

No packages published