Skip to content

Breaking Change: Optionalize Sklearn Package #663

Breaking Change: Optionalize Sklearn Package

Breaking Change: Optionalize Sklearn Package #663

Workflow file for this run

name: Update changelog on Releases
on:
pull_request:
types:
- opened
- reopened
- labeled
- unlabeled
- edited
- synchronize
branches:
- prod
jobs:
changelog-updated:
runs-on: ubuntu-latest
if: "!contains(github.event.pull_request.labels.*.name, 'skip-release')"
steps:
- name: debug info
run: |
echo "PR: ${GITHUB_REF}"
echo "Branch: ${{ github.base_ref }}"
- uses: actions/checkout@v1
- name: Changelog check
uses: Zomzog/[email protected]
with:
fileName: CHANGELOG.md
checkNotification: Simple # Default 'Detailed' doesn't work with forks
# noChangelogLabel: skip-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}