From 056158ee75fa3c43ba3c9498fab78c69914533fa Mon Sep 17 00:00:00 2001 From: Diwank Singh Tomer Date: Wed, 17 Apr 2024 19:03:47 +0530 Subject: [PATCH] feat: Create github action changelog-ci.yml (#209) * feat: Create github action changelog-ci.yml * Update .github/workflows/changelog-ci.yml Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * Update .github/workflows/changelog-ci.yml Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * Update changelog-ci.yml --------- Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> --- .github/workflows/changelog-ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/changelog-ci.yml diff --git a/.github/workflows/changelog-ci.yml b/.github/workflows/changelog-ci.yml new file mode 100644 index 000000000..11ea4fc95 --- /dev/null +++ b/.github/workflows/changelog-ci.yml @@ -0,0 +1,20 @@ +name: Changelog CI + +on: + pull_request: + types: [ opened, synchronize ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + # Checks-out your repository + - uses: actions/checkout@v2 + + - name: Run Changelog CI + uses: saadmk11/changelog-ci@v1.1.2 + with: + changelog_filename: CHANGELOG.md + # config_file: changelog-ci-config.json + github_token: ${{ secrets.GITHUB_TOKEN }}