GD-Personal/flexi-json

View on GitHub
.github/workflows/update_changelog.yml

Summary

Maintainability
Test Coverage
name: Update Changelog on Merge to Main

on:
  pull_request:
    types: [ opened ]

jobs:
  build:
    runs-on: ubuntu-latest
    name: Ruby ${{ matrix.ruby }}
    strategy:
      matrix:
        ruby:
          - '3.3.4'

    steps:
    - uses: actions/checkout@v4
    - name: Run Changelog CI
      uses: saadmk11/changelog-ci@v1.1.2
      with:
        committer_username: 'github-actions.bot'
        committer_email: 'github-actions.bot@users.noreply.github.com'
        config_file: 'changelog_config.yml'
        release_version: ${{ github.event.inputs.release_version }}
        github_token: ${{ secrets.GH_PAT }}