From df4623c0bcfeecb8f648e6defad52617aec6acfb Mon Sep 17 00:00:00 2001 From: mc4117 Date: Mon, 12 Aug 2024 17:28:29 +0200 Subject: [PATCH] 8 feature add changelog (#11) * feat: add changelog * ci: add changelog check * ci: changelog action on develop --- .github/workflows/changelog-pr-update.yml | 15 +++++++++++++++ CHANGELOG.md | 19 +++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 .github/workflows/changelog-pr-update.yml create mode 100644 CHANGELOG.md diff --git a/.github/workflows/changelog-pr-update.yml b/.github/workflows/changelog-pr-update.yml new file mode 100644 index 00000000..4bc51df6 --- /dev/null +++ b/.github/workflows/changelog-pr-update.yml @@ -0,0 +1,15 @@ +name: Check Changelog Update on PR +on: + pull_request: + types: [assigned, opened, synchronize, reopened, labeled, unlabeled] + branches: + - main + - develop +jobs: + Check-Changelog: + name: Check Changelog Action + runs-on: ubuntu-20.04 + steps: + - uses: tarides/changelog-check-action@v2 + with: + changelog: CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..e033098f --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,19 @@ +# Changelog + + All notable changes to this project will be documented in this file. + + The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), + and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + + Please add your functional changes to the appropriate section in the PR. + Keep it human-readable, your future self will thank you! + + ## [Unreleased] + + ### Added + - MLflow token authentication + - Added Changelog + + ### Changed + + ### Removed