GitXplorerGitXplorer
v

update-changelog

public
14 stars
3 forks
3 issues

Commits

List of commits on branch master.
Verified
7ab4ee1ffd4381b9f76ead125079e1bf3b58d326

Merge pull request #2 from gyama770/patch-1

vvemel committed 4 years ago
Verified
011521123ffe3e224d7e26cf85c0f5e33b8d5f13

Merge pull request #3 from Andre601/patch-1

vvemel committed 4 years ago
Verified
4cf9ce2b99b667808ab8c8d5ce60e31c8443222f

fix wrong info for path

AAndre601 committed 4 years ago
Verified
3b020b3ae015a733ac32d7617e63af0248bdca23

Update LICENSE

ggyama770 committed 4 years ago
Verified
621d4009ec56b00d87eca59aba77ec5258c44ef0

Bump @actions/core from 1.2.2 to 1.2.6

ddependabot[bot] committed 4 years ago
Verified
dd2566d9cc1216cf6b080fa9625c7ef180af1d44

Add release marker support

vvemel committed 5 years ago

README

The README file for this repository.

Update CHANGELOG.md Action

This Action keeps your CHANGELOG.md up to date.

Getting started

  • Create CHANGELOG.md file using keep a changelog format
  • Use the example workflow to create a PR for eash release automatically.
  • Use Keep a changelog style in your PR notes to automatically include these entries to CHANGELOG.md on release

Examples

on:
  release:
    type: published

jobs:
  comment:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Set up Python
        uses: actions/setup-python@v1
        with:
          python-version: "3.8"
      - name: Update version
        id: version
        run: |
          echo "GITHUB_REF is a tag you set for the release"
          echo "Your GitHub ref: ${GITHUB_REF}"
          VERSION=`echo "${GITHUB_REF}" | cut -f 3 -d "/"`
          echo "Preparing version ${VERSION}"
          echo "__version__ = \"${VERSION}\"" > __version__.py
          echo "##[set-output name=version;]$(echo ${VERSION})"
      - uses: vemel/update-changelog@0.0.1
        id: changelog
        with:
          version: ${{ steps.version.outputs.version }}
      - name: Create Pull Request
        uses: peter-evans/create-pull-request@v2
        with:
          commit-message: Release ${{ steps.version.outputs.version }}
          labels: release, bot
          title: "Release ${{ steps.version.outputs.version }}"
          body: |
            # Release ${{ steps.version.outputs.version }}

            Merge this PR to update your version and changelog!

            ## Included Pull Requests

            ${{ steps.changelog.outputs.pulls_list_md }}

Variables

Inputs

  • version - New product version, defaults to env VERSION
  • token - GitHub Token, defaults to env GITHUB_TOKEN
  • repository - GitHub repository name, defaults to env GITHUB_REPOSITORY
  • path - Path to the CHANGELOG.md file, defaults to ./CHANGELOG.md
  • release-marker - Case-insensitive release marker in PR title, defaults to release

Outputs

  • pulls_list_md - Generated included Pull Requests list in MarkDown format

Versioning

create_release version follows Semantic Versioning.