From f1f1e4c563c47821ae9bfd53c69fa0c8f20d4a10 Mon Sep 17 00:00:00 2001 From: Heemank Verma Date: Mon, 22 Jul 2024 13:20:19 +0530 Subject: [PATCH] Chore/changelog mgmt (#49) * update: added change-log test workflow file * update: added basic change-log file * fix: linting build --- .github/workflows/changelog.yml | 13 +++++++++++++ CHANGELOG.md | 13 +++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 .github/workflows/changelog.yml create mode 100644 CHANGELOG.md diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml new file mode 100644 index 00000000..6e49d286 --- /dev/null +++ b/.github/workflows/changelog.yml @@ -0,0 +1,13 @@ +name: "Changelog Workflow" +on: + pull_request: + types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled] + branches: [main] + +jobs: + # Enforces the update of a changelog file on every pull request + # skipLabel default is "Skip-Changelog" + changelog: + runs-on: ubuntu-latest + steps: + - uses: dangoslen/changelog-enforcer@v3 diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..40ab2534 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,13 @@ +# 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/). + +## Added + +## Changed + +## Removed + +## Fixed