Skip to content

GitHub Action to convert CHANGELOG file to GitHub Release

License

Notifications You must be signed in to change notification settings

stylelint/changelog-to-github-release-action

Folders and files

NameName
Last commit message
Last commit date
Oct 2, 2023
Feb 8, 2024
Mar 2, 2025
Jan 12, 2025
Jul 27, 2023
Jul 27, 2023
Jul 27, 2023
Jul 27, 2023
Feb 17, 2025
Aug 10, 2023
Jul 27, 2023
Oct 2, 2023
Oct 2, 2023
Apr 1, 2025
Apr 1, 2025
Oct 2, 2023

Repository files navigation

changelog-to-github-release-action

GitHub Action to convert CHANGELOG file to GitHub Release

Usage

Create .github/workflows/release.yml with the following content:

name: Release

on:
  push:
    tags: ["**"]

concurrency:
  group: ${{ github.workflow }}
  cancel-in-progress: true

jobs:
  release:
    runs-on: ubuntu-latest
    permissions:
      contents: write
    timeout-minutes: 10
    steps:
      - name: Checkout
        uses: actions/checkout@v4
      - name: Create release
        uses: stylelint/changelog-to-github-release-action@main

Inputs

You can tune this action by the input parameters, for example:

- name: Create release
  uses: stylelint/changelog-to-github-release-action@main
  with:
    draft: true

For all the inputs, see action.yml.

For developers

See the developer guide.