├── .all-contributorsrc ├── .github ├── dependabot.yml └── workflows │ ├── sync-release-version.yml │ ├── test.yml │ └── update-readme.yml ├── .gitignore ├── CONTRIBUTING.md ├── HISTORY.md ├── LICENSE ├── README.md ├── action.yml ├── cleanup.sh ├── cliff-template.toml └── entrypoint.sh /.all-contributorsrc: -------------------------------------------------------------------------------- 1 | { 2 | "files": [ 3 | "README.md" 4 | ], 5 | "imageSize": 100, 6 | "commit": false, 7 | "commitType": "docs", 8 | "commitConvention": "angular", 9 | "contributors": [ 10 | { 11 | "login": "viceice", 12 | "name": "Michael Kriese", 13 | "avatar_url": "https://avatars.githubusercontent.com/u/1798109?v=4", 14 | "profile": "https://visualon.de", 15 | "contributions": [ 16 | "code" 17 | ] 18 | }, 19 | { 20 | "login": "boidolr", 21 | "name": "Raphael Boidol", 22 | "avatar_url": "https://avatars.githubusercontent.com/u/652404?v=4", 23 | "profile": "https://home.boidol.dev/", 24 | "contributions": [ 25 | "doc" 26 | ] 27 | } 28 | ], 29 | "contributorsPerLine": 7, 30 | "skipCi": true, 31 | "repoType": "github", 32 | "repoHost": "https://github.com", 33 | "projectName": "git-cliff", 34 | "projectOwner": "tj-actions" 35 | } 36 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: docker 4 | directory: "/" 5 | schedule: 6 | interval: daily 7 | open-pull-requests-limit: 10 8 | - package-ecosystem: github-actions 9 | directory: "/" 10 | schedule: 11 | interval: daily 12 | open-pull-requests-limit: 10 13 | -------------------------------------------------------------------------------- /.github/workflows/sync-release-version.yml: -------------------------------------------------------------------------------- 1 | name: Update release version. 2 | on: 3 | release: 4 | types: [published] 5 | 6 | 7 | jobs: 8 | update-version: 9 | runs-on: ubuntu-latest 10 | steps: 11 | - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 12 | with: 13 | fetch-depth: 0 14 | - name: Run release-tagger 15 | uses: tj-actions/release-tagger@v4 16 | - name: Sync release version. 17 | uses: tj-actions/sync-release-version@v13 18 | id: sync-release-version 19 | with: 20 | pattern: '${{ github.repository }}@' 21 | only_major: true 22 | paths: README.md 23 | - name: Run git-cliff 24 | uses: tj-actions/git-cliff@v1 25 | - name: Create Pull Request 26 | uses: peter-evans/create-pull-request@v7 27 | with: 28 | base: "main" 29 | labels: "merge when passing" 30 | title: "Upgraded to ${{ steps.sync-release-version.outputs.new_version }}" 31 | branch: "upgrade-to-${{ steps.sync-release-version.outputs.new_version }}" 32 | commit-message: "Upgraded from ${{ steps.sync-release-version.outputs.old_version }} -> ${{ steps.sync-release-version.outputs.new_version }}" 33 | body: "View [CHANGES](https://github.com/${{ github.repository }}/compare/${{ steps.sync-release-version.outputs.old_version }}...${{ steps.sync-release-version.outputs.new_version }})" 34 | token: ${{ secrets.PAT_TOKEN }} 35 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | pull_request: 8 | branches: 9 | - main 10 | 11 | jobs: 12 | shellcheck: 13 | name: shellcheck 14 | runs-on: ubuntu-latest 15 | steps: 16 | - name: Checkout 17 | uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 18 | 19 | - name: shellcheck 20 | uses: reviewdog/action-shellcheck@v1 21 | 22 | test: 23 | name: Test git-cliff 24 | runs-on: ubuntu-latest 25 | steps: 26 | - name: Checkout 27 | uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 28 | with: 29 | fetch-depth: 0 30 | 31 | - name: Run git-cliff 32 | uses: ./ 33 | 34 | - name: Run git-cliff with a URL based template 35 | uses: ./ 36 | with: 37 | template-config: "https://raw.githubusercontent.com/tj-actions/git-cliff/main/cliff-template.toml" 38 | -------------------------------------------------------------------------------- /.github/workflows/update-readme.yml: -------------------------------------------------------------------------------- 1 | name: Format README.md 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | 8 | jobs: 9 | sync-assets: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 13 | with: 14 | fetch-depth: 0 15 | 16 | - name: Run auto-doc 17 | uses: tj-actions/auto-doc@v3 18 | 19 | - name: Run remark 20 | uses: tj-actions/remark@v3 21 | 22 | - name: Verify Changed files 23 | uses: tj-actions/verify-changed-files@v20 24 | id: verify_changed_files 25 | with: 26 | files: | 27 | README.md 28 | 29 | - name: README.md changed 30 | if: steps.verify_changed_files.outputs.files_changed == 'true' 31 | run: | 32 | echo "README.md has uncommitted changes" 33 | exit 1 34 | 35 | - name: Create Pull Request 36 | if: failure() 37 | uses: peter-evans/create-pull-request@v7 38 | with: 39 | base: "main" 40 | labels: "merge when passing" 41 | title: "Updated README.md" 42 | branch: "chore/update-readme" 43 | commit-message: "Updated README.md" 44 | body: "Updated README.md" 45 | token: ${{ secrets.PAT_TOKEN }} 46 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .envrc 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/git-cliff/6bd3583581c4f41b42d1f9ad5d8b97bf377c03f8/CONTRIBUTING.md -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | # [1.5.0](https://github.com/tj-actions/git-cliff/compare/v1.4.2...v1.5.0) - (2024-03-01) 4 | 5 | ## 🚀 Features 6 | 7 | - Add `ci` commit type ([#53](https://github.com/tj-actions/git-cliff/issues/53)) ([5b80224](https://github.com/tj-actions/git-cliff/commit/5b802247f352df9588ae857e3c50456f357030e6)) - (Michael Kriese) 8 | 9 | ## ➕ Add 10 | 11 | - Added .github/FUNDING.yml ([5167524](https://github.com/tj-actions/git-cliff/commit/5167524005b1408375f8d7f0d9c041feeeeddddd)) - (Tonye Jack) 12 | 13 | ## ➖ Remove 14 | 15 | - Deleted .github/workflows/auto-approve.yml ([c19f186](https://github.com/tj-actions/git-cliff/commit/c19f186592ffd5d6984cf2da0c4e38d5ea3490f7)) - (Tonye Jack) 16 | - Deleted .github/workflows/greetings.yml ([529aa6a](https://github.com/tj-actions/git-cliff/commit/529aa6acc2ce62b3f6c879eef8e6d485f04aa83e)) - (Tonye Jack) 17 | - Deleted .github/ISSUE_TEMPLATE/feature_request.yaml ([77ba041](https://github.com/tj-actions/git-cliff/commit/77ba0417dfdd10b503ff507d94103ae877bb465a)) - (Tonye Jack) 18 | - Deleted .github/ISSUE_TEMPLATE/bug_report.yaml ([5974ecb](https://github.com/tj-actions/git-cliff/commit/5974ecb9db7cbc74881ca951423e489d019e3add)) - (Tonye Jack) 19 | - Deleted .github/FUNDING.yml ([5b0df87](https://github.com/tj-actions/git-cliff/commit/5b0df873f68529ea690fead5f0a72d351d78c4ae)) - (Tonye Jack) 20 | - Deleted .github/workflows/auto-merge.yml ([d1b1f8b](https://github.com/tj-actions/git-cliff/commit/d1b1f8bbed7467b7291b18221aa633afa27949bb)) - (Tonye Jack) 21 | 22 | ## 🔄 Update 23 | 24 | - Updated README.md ([#57](https://github.com/tj-actions/git-cliff/issues/57)) 25 | 26 | Co-authored-by: jackton1 <17484350+jackton1@users.noreply.github.com> ([75599f7](https://github.com/tj-actions/git-cliff/commit/75599f745633e29f99bd9e14a30865b7d2fcbe84)) - (tj-actions[bot]) 27 | - Update README.md ([4a075fe](https://github.com/tj-actions/git-cliff/commit/4a075fe78c15642439b2b34682f9d237965e7712)) - (Tonye Jack) 28 | - Updated .github/FUNDING.yml ([4109a0c](https://github.com/tj-actions/git-cliff/commit/4109a0c89ac7289761301689ebef9ef027debf7d)) - (Tonye Jack) 29 | - Updated README.md 30 | ([9d9aa0a](https://github.com/tj-actions/git-cliff/commit/9d9aa0aa04105494a9b3d72c973248735208b240)) - (jackton1) 31 | - Updated renovate.json ([555d867](https://github.com/tj-actions/git-cliff/commit/555d867e492e96f4ca0db2458907cae6cd6ce0ad)) - (Tonye Jack) 32 | - Updated README.md 33 | ([073834b](https://github.com/tj-actions/git-cliff/commit/073834b0f65aadc3c4786db60d0254542d08dc47)) - (repo-ranger[bot]) 34 | 35 | ## 📚 Documentation 36 | 37 | - Add viceice as a contributor for code ([#56](https://github.com/tj-actions/git-cliff/issues/56)) ([c554af3](https://github.com/tj-actions/git-cliff/commit/c554af363dd190943a3e04278827fcd86b27a4ac)) - (allcontributors[bot]) 38 | 39 | ## 📝 Other 40 | 41 | - PR [#55](https://github.com/tj-actions/git-cliff/pull/55): update tj-actions/verify-changed-files action to v19 ([3dc0c79](https://github.com/tj-actions/git-cliff/commit/3dc0c798014011c42872bb2239f818e7eabbc3c9)) - (repo-ranger[bot]) 42 | - PR [#54](https://github.com/tj-actions/git-cliff/pull/54): update orhun/git-cliff-action action to v3 ([9a3266f](https://github.com/tj-actions/git-cliff/commit/9a3266ff5e7a82c559170ca4d8c7cc99e9943596)) - (repo-ranger[bot]) 43 | - PR [#52](https://github.com/tj-actions/git-cliff/pull/52): update tj-actions/verify-changed-files action to v18 ([508e2e3](https://github.com/tj-actions/git-cliff/commit/508e2e3ef9b63de10f1aa457271e78b9456fcc52)) - (repo-ranger[bot]) 44 | - PR [#51](https://github.com/tj-actions/git-cliff/pull/51): update peter-evans/create-pull-request action to v6 ([ee167e1](https://github.com/tj-actions/git-cliff/commit/ee167e12307321b4db86505428fc2b398f44559d)) - (repo-ranger[bot]) 45 | - PR [#50](https://github.com/tj-actions/git-cliff/pull/50): update tj-actions/verify-changed-files action to v17 ([e5db171](https://github.com/tj-actions/git-cliff/commit/e5db171447fde327496f60ea3829775fbfc88928)) - (repo-ranger[bot]) 46 | - PR [#49](https://github.com/tj-actions/git-cliff/pull/49): update actions/checkout digest to b4ffde6 ([a1f8429](https://github.com/tj-actions/git-cliff/commit/a1f8429d8690acb60a9273520948021810f02bba)) - (repo-ranger[bot]) 47 | - PR [#47](https://github.com/tj-actions/git-cliff/pull/47): update actions/checkout digest to 8ade135 ([83c2d32](https://github.com/tj-actions/git-cliff/commit/83c2d3285248924919d55378d707f9749500e683)) - (repo-ranger[bot]) 48 | - PR [#46](https://github.com/tj-actions/git-cliff/pull/46): update actions/checkout action to v4 ([eb982fc](https://github.com/tj-actions/git-cliff/commit/eb982fc6f599fc31b1ae93fdc0ce763813c25c0e)) - (repo-ranger[bot]) 49 | - PR [#45](https://github.com/tj-actions/git-cliff/pull/45): update tj-actions/release-tagger action to v4 ([c608e62](https://github.com/tj-actions/git-cliff/commit/c608e628d34213be441eb5532f3384b630a3e8d0)) - (repo-ranger[bot]) 50 | - PR [#44](https://github.com/tj-actions/git-cliff/pull/44): README.md ([138a394](https://github.com/tj-actions/git-cliff/commit/138a39425712d7970869ce39c2165f90dadd8a40)) - (repo-ranger[bot]) 51 | - PR [#42](https://github.com/tj-actions/git-cliff/pull/42): update tj-actions/verify-changed-files action to v16 ([81e717e](https://github.com/tj-actions/git-cliff/commit/81e717e153986e24f33455224c36547f0cd25ea4)) - (repo-ranger[bot]) 52 | - PR [#39](https://github.com/tj-actions/git-cliff/pull/39): README.md ([6dc0064](https://github.com/tj-actions/git-cliff/commit/6dc0064f2e9bb6362d5bc8f9d3f34ae075ac2dea)) - (repo-ranger[bot]) 53 | - PR [#40](https://github.com/tj-actions/git-cliff/pull/40): to v1.4.2 ([7b2bbc5](https://github.com/tj-actions/git-cliff/commit/7b2bbc5d60ffbb6824d5811054e0cd5a9d7a5c3b)) - (repo-ranger[bot]) 54 | 55 | ## ⚙️ Miscellaneous Tasks 56 | 57 | - **deps:** Update tj-actions/verify-changed-files action to v19 ([88859da](https://github.com/tj-actions/git-cliff/commit/88859daa4ed721b06a15f791fd13d0193a1959c9)) - (renovate[bot]) 58 | - **deps:** Update orhun/git-cliff-action action to v3 ([abd0263](https://github.com/tj-actions/git-cliff/commit/abd0263f20f14f36615cbfbc922aa975b95a56ed)) - (renovate[bot]) 59 | - **deps:** Update tj-actions/verify-changed-files action to v18 ([76d0591](https://github.com/tj-actions/git-cliff/commit/76d059186618687840abbeccb9497257c8207594)) - (renovate[bot]) 60 | - **deps:** Update peter-evans/create-pull-request action to v6 ([5dbba06](https://github.com/tj-actions/git-cliff/commit/5dbba0623c07d4782c9fcf7450c2139f8370ad72)) - (renovate[bot]) 61 | - **deps:** Update tj-actions/verify-changed-files action to v17 ([4588fb9](https://github.com/tj-actions/git-cliff/commit/4588fb960e10e84ca88943b9467e98a5bb92898d)) - (renovate[bot]) 62 | - **deps:** Update actions/checkout digest to b4ffde6 ([5f6eed1](https://github.com/tj-actions/git-cliff/commit/5f6eed14c3e97999fb944e23a4c4b584469d722f)) - (renovate[bot]) 63 | - **deps:** Update actions/checkout digest to 8ade135 ([78675b1](https://github.com/tj-actions/git-cliff/commit/78675b1b78574303c55546905b3cb80d5dba0167)) - (renovate[bot]) 64 | - **deps:** Update actions/checkout action to v4 ([371997b](https://github.com/tj-actions/git-cliff/commit/371997beebe47f907b80673941e41e74ac8b9dab)) - (renovate[bot]) 65 | - **deps:** Update tj-actions/release-tagger action to v4 ([e248fe1](https://github.com/tj-actions/git-cliff/commit/e248fe1cd52abc34e16122e18a7342490ad42a1f)) - (renovate[bot]) 66 | - **deps:** Update tj-actions/auto-doc action to v3 ([#43](https://github.com/tj-actions/git-cliff/issues/43)) ([ea1a3aa](https://github.com/tj-actions/git-cliff/commit/ea1a3aae74b7f4377c118f1b8c9b98ce36cdc56d)) - (renovate[bot]) 67 | - **deps:** Update tj-actions/verify-changed-files action to v16 ([2aeab75](https://github.com/tj-actions/git-cliff/commit/2aeab75a21bbe3e7a7f5d3312a4c5f502605b41a)) - (renovate[bot]) 68 | - **deps:** Update tj-actions/verify-changed-files action to v15 ([1c853e6](https://github.com/tj-actions/git-cliff/commit/1c853e61d38d6087720a60f34fa0515a052e1b74)) - (renovate[bot]) 69 | 70 | ## ⬆️ Upgrades 71 | 72 | - Upgraded from v1.4.1 -> v1.4.2 73 | ([50865ad](https://github.com/tj-actions/git-cliff/commit/50865ad11bae7a8b256e6a0eb7c232c064aa5695)) - (jackton1) 74 | 75 | # [1.4.2](https://github.com/tj-actions/git-cliff/compare/v1.4.1...v1.4.2) - (2023-06-06) 76 | 77 | ## 🔄 Update 78 | 79 | - Update action.yml ([b8b856a](https://github.com/tj-actions/git-cliff/commit/b8b856ab6829a813d4ed58476b6faaec9c2b24ef)) - (Tonye Jack) 80 | - Update action.yml ([d85dbe1](https://github.com/tj-actions/git-cliff/commit/d85dbe17e1597432fb94c3cf8db953fc2eaffc81)) - (Tonye Jack) 81 | - Update action.yml ([8378219](https://github.com/tj-actions/git-cliff/commit/83782193c091a797a97c7b1573e3c6b2a9d8165b)) - (Tonye Jack) 82 | - Update action.yml ([18318d8](https://github.com/tj-actions/git-cliff/commit/18318d841c3892d6973e96b3b408f47cbd3cd1c2)) - (Tonye Jack) 83 | - Update README.md ([f729ae2](https://github.com/tj-actions/git-cliff/commit/f729ae2faac90e45ecb142ae66d0f81041417f57)) - (Tonye Jack) 84 | - Update README.md ([66d7b6e](https://github.com/tj-actions/git-cliff/commit/66d7b6e4707beebc950058ab94720442cab0a641)) - (Tonye Jack) 85 | - Update README.md ([3a84fda](https://github.com/tj-actions/git-cliff/commit/3a84fda8c305809c9d6b64356a0beedb6f522947)) - (Tonye Jack) 86 | - Update README.md ([2673907](https://github.com/tj-actions/git-cliff/commit/26739074488c8b8d0d0be3910cc50a9b7041ef0f)) - (Tonye Jack) 87 | - Updated README.md 88 | ([8bb852d](https://github.com/tj-actions/git-cliff/commit/8bb852dc440be58244877fce67a69687f6526eb3)) - (jackton1) 89 | - Update README.md ([1f8bdc6](https://github.com/tj-actions/git-cliff/commit/1f8bdc6d59fd3a216ce4873cc5a29b266a1b7124)) - (Tonye Jack) 90 | 91 | ## 📝 Other 92 | 93 | - PR [#37](https://github.com/tj-actions/git-cliff/pull/37): README.md ([8c3fc40](https://github.com/tj-actions/git-cliff/commit/8c3fc40391945854c85f4d501c0b96a6ca5cf49e)) - (repo-ranger[bot]) 94 | - PR [#36](https://github.com/tj-actions/git-cliff/pull/36): to v1.4.1 ([c234f5d](https://github.com/tj-actions/git-cliff/commit/c234f5d3469f96c637a3ee607dd964b11c01ff11)) - (repo-ranger[bot]) 95 | 96 | ## ⬆️ Upgrades 97 | 98 | - Upgraded from v1.4.0 -> v1.4.1 99 | ([72976fe](https://github.com/tj-actions/git-cliff/commit/72976fe42b551ad723c52651b4d2dffb88b0b46e)) - (jackton1) 100 | 101 | # [1.4.1](https://github.com/tj-actions/git-cliff/compare/v1.4.0...v1.4.1) - (2023-04-08) 102 | 103 | ## 🔄 Update 104 | 105 | - Update sync-release-version.yml ([57fe1d0](https://github.com/tj-actions/git-cliff/commit/57fe1d0ae7e42148a6cb4b5db02af6b734a042df)) - (Tonye Jack) 106 | - Update README.md ([a29d2c7](https://github.com/tj-actions/git-cliff/commit/a29d2c70abf64de53bd366b60a5620ec32ec249e)) - (Tonye Jack) 107 | - Updated README.md 108 | ([d66d804](https://github.com/tj-actions/git-cliff/commit/d66d8046a53c845c343dad611eee919aa86e3d6d)) - (jackton1) 109 | - Update README.md ([0282187](https://github.com/tj-actions/git-cliff/commit/028218727125c8bd5101deeaf158a131b0175e24)) - (Tonye Jack) 110 | - Update README.md ([045e031](https://github.com/tj-actions/git-cliff/commit/045e031ab99e28226367751b12d93a8e438e110a)) - (Tonye Jack) 111 | 112 | ## 📝 Other 113 | 114 | - PR [#35](https://github.com/tj-actions/git-cliff/pull/35): update peter-evans/create-pull-request action to v5 ([c136695](https://github.com/tj-actions/git-cliff/commit/c136695b659d9280b057ada89e664ead817d2cd2)) - (repo-ranger[bot]) 115 | - PR [#34](https://github.com/tj-actions/git-cliff/pull/34): README.md ([bc70384](https://github.com/tj-actions/git-cliff/commit/bc70384bbc90bb7fc690e6728588c2f74b2447c6)) - (repo-ranger[bot]) 116 | - PR [#33](https://github.com/tj-actions/git-cliff/pull/33): to v1.4.0 ([821dfb2](https://github.com/tj-actions/git-cliff/commit/821dfb235e6665376860b761fc8b0b121116cb4a)) - (repo-ranger[bot]) 117 | 118 | ## ⚙️ Miscellaneous Tasks 119 | 120 | - **deps:** Update peter-evans/create-pull-request action to v5 ([4896b14](https://github.com/tj-actions/git-cliff/commit/4896b14001cbbec1e03e8f2aa107f14f8745498d)) - (renovate[bot]) 121 | 122 | ## ⬆️ Upgrades 123 | 124 | - Upgraded from v1.3.0 -> v1.4.0 125 | ([65f2aa5](https://github.com/tj-actions/git-cliff/commit/65f2aa5495e63855d29cefbc918321c38d263b5b)) - (jackton1) 126 | 127 | # [1.4.0](https://github.com/tj-actions/git-cliff/compare/v1.3.0...v1.4.0) - (2023-04-03) 128 | 129 | ## 🚀 Features 130 | 131 | - Add support for providing a template config ([ffa7156](https://github.com/tj-actions/git-cliff/commit/ffa715609cfef4ea0809cd0138c419217f448989)) - (Tonye Jack) 132 | 133 | ## 🔄 Update 134 | 135 | - Updated README.md 136 | ([417bfa7](https://github.com/tj-actions/git-cliff/commit/417bfa7e3bb8f9273c5e26cc96d18ae2f9b7457e)) - (repo-ranger[bot]) 137 | - Update entrypoint.sh ([619dd2d](https://github.com/tj-actions/git-cliff/commit/619dd2da98f75c2d4607ba0faa6c9879639fff7c)) - (Tonye Jack) 138 | - Update test.yml ([22febaf](https://github.com/tj-actions/git-cliff/commit/22febafe374bc6202f87fe17631ffa962afd7f56)) - (Tonye Jack) 139 | - Update entrypoint.sh ([f7c3f5b](https://github.com/tj-actions/git-cliff/commit/f7c3f5b9d1123c0c375864b8dfac6b28a4dacc50)) - (Tonye Jack) 140 | - Update action.yml ([c72bca3](https://github.com/tj-actions/git-cliff/commit/c72bca3940077494208fa6bc90990476ad9b9f22)) - (Tonye Jack) 141 | - Update test.yml ([ef9d0bb](https://github.com/tj-actions/git-cliff/commit/ef9d0bb8e485c311722af9f8ff8aa6749a943150)) - (Tonye Jack) 142 | - Update entrypoint.sh ([7a90067](https://github.com/tj-actions/git-cliff/commit/7a90067195384de9d469990e63da0057462323c3)) - (Tonye Jack) 143 | - Update README.md ([b5c72f3](https://github.com/tj-actions/git-cliff/commit/b5c72f3004fe6e8b1004137ac8c73c49c1705260)) - (Tonye Jack) 144 | 145 | ## 📝 Other 146 | 147 | - PR [#32](https://github.com/tj-actions/git-cliff/pull/32): README.md ([f3e96fc](https://github.com/tj-actions/git-cliff/commit/f3e96fc81518f1df748ef55724f48fb7ff57fdf8)) - (repo-ranger[bot]) 148 | - PR [#31](https://github.com/tj-actions/git-cliff/pull/31): add support for providing a template config ([a5ce521](https://github.com/tj-actions/git-cliff/commit/a5ce5216d38f8c8dcf7ab31b9d3d99c46fb36a56)) - (repo-ranger[bot]) 149 | - Merge branch 'main' into feat/add-support-for-providing-a-template-config ([2a9c979](https://github.com/tj-actions/git-cliff/commit/2a9c9792c8807ef9ad92e9c3ff76a524e0419050)) - (repo-ranger[bot]) 150 | - PR [#28](https://github.com/tj-actions/git-cliff/pull/28): to v1.3.0 ([49c9225](https://github.com/tj-actions/git-cliff/commit/49c92251bee16102b609fdadd57871aa1b6d10c5)) - (repo-ranger[bot]) 151 | 152 | ## ⚙️ Miscellaneous Tasks 153 | 154 | - Renumber-commit-parsers ([#30](https://github.com/tj-actions/git-cliff/issues/30)) ([2be92b5](https://github.com/tj-actions/git-cliff/commit/2be92b509f1ff61e09fe399d403cf7dba204179d)) - (Tonye Jack) 155 | 156 | ## ⬆️ Upgrades 157 | 158 | - Upgraded from v1.2.4 -> v1.3.0 159 | ([af5e3c3](https://github.com/tj-actions/git-cliff/commit/af5e3c37410e3adeb2fd711d25d1f0f3b9684acf)) - (jackton1) 160 | 161 | # [1.3.0](https://github.com/tj-actions/git-cliff/compare/v1.2.4...v1.3.0) - (2023-04-01) 162 | 163 | ## 🚀 Features 164 | 165 | - Rename bump group ([2734cb6](https://github.com/tj-actions/git-cliff/commit/2734cb6bc504dba775d6569d263a94a6fc885fa6)) - (Tonye Jack) 166 | 167 | ## 📝 Other 168 | 169 | - PR [#27](https://github.com/tj-actions/git-cliff/pull/27): rename bump group ([8a707d1](https://github.com/tj-actions/git-cliff/commit/8a707d1bca98dc7514153cc1cdff474b5b373fee)) - (repo-ranger[bot]) 170 | - PR [#26](https://github.com/tj-actions/git-cliff/pull/26): to v1.2.4 ([44efd1c](https://github.com/tj-actions/git-cliff/commit/44efd1cf3518aca198fbc5c00bc167ffa8228907)) - (repo-ranger[bot]) 171 | 172 | ## ⬆️ Upgrades 173 | 174 | - Upgraded from v1.2.3 -> v1.2.4 175 | ([9de9f40](https://github.com/tj-actions/git-cliff/commit/9de9f4018521f2bd3d995693a48a61098a334a0b)) - (jackton1) 176 | 177 | # [1.2.4](https://github.com/tj-actions/git-cliff/compare/v1.2.3...v1.2.4) - (2023-04-01) 178 | 179 | ## 🐛 Bug Fixes 180 | 181 | - Update path to use github action path ([#25](https://github.com/tj-actions/git-cliff/issues/25)) ([f5b2de3](https://github.com/tj-actions/git-cliff/commit/f5b2de3def89365b1f59e0d7888bec370c550595)) - (Tonye Jack) 182 | 183 | ## 📝 Other 184 | 185 | - PR [#24](https://github.com/tj-actions/git-cliff/pull/24): to v1.2.3 ([143caaa](https://github.com/tj-actions/git-cliff/commit/143caaaebe741c7247a57519c1db9a41043000f6)) - (repo-ranger[bot]) 186 | 187 | ## ⬆️ Upgrades 188 | 189 | - Upgraded from v1.2.2 -> v1.2.3 190 | ([a651804](https://github.com/tj-actions/git-cliff/commit/a651804bb184a46d3ed6878b8800624a99838f86)) - (jackton1) 191 | 192 | # [1.2.3](https://github.com/tj-actions/git-cliff/compare/v1.2.2...v1.2.3) - (2023-04-01) 193 | 194 | ## 🐛 Bug Fixes 195 | 196 | - Unable to read cliff-template.toml ([#23](https://github.com/tj-actions/git-cliff/issues/23)) ([8c7d68a](https://github.com/tj-actions/git-cliff/commit/8c7d68affbd6c2aa0bcb33c0bf4afc5fdf24ad25)) - (Tonye Jack) 197 | 198 | ## 📝 Other 199 | 200 | - PR [#22](https://github.com/tj-actions/git-cliff/pull/22): to v1.2.2 ([f290b4b](https://github.com/tj-actions/git-cliff/commit/f290b4b249a71bbbedcd7f30315e2d745b1f3437)) - (repo-ranger[bot]) 201 | 202 | ## ⬆️ Upgrades 203 | 204 | - Upgraded from v1.2.1 -> v1.2.2 205 | ([976d3be](https://github.com/tj-actions/git-cliff/commit/976d3beb637bbbdb4f8625699df871e8600a91f6)) - (jackton1) 206 | 207 | # [1.2.2](https://github.com/tj-actions/git-cliff/compare/v1.2.1...v1.2.2) - (2023-04-01) 208 | 209 | ## 🐛 Bug Fixes 210 | 211 | - Incorrect PR link ([#21](https://github.com/tj-actions/git-cliff/issues/21)) ([f63be28](https://github.com/tj-actions/git-cliff/commit/f63be2819d061f22ad05c8542aafaacd5c182e34)) - (Tonye Jack) 212 | 213 | ## 📝 Other 214 | 215 | - PR [#20](https://github.com/tj-actions/git-cliff/pull/20): to v1.2.1 ([9b2d09e](https://github.com/tj-actions/git-cliff/commit/9b2d09ef761c470a705a1969cb5bbcf611da48a7)) - (repo-ranger[bot]) 216 | 217 | ## ⬆️ Upgrades 218 | 219 | - Upgraded from v1.2.0 -> v1.2.1 220 | ([4e62f10](https://github.com/tj-actions/git-cliff/commit/4e62f100a9554b3cbfbf6f2e1e41f49c0b0021f5)) - (jackton1) 221 | 222 | # [1.2.1](https://github.com/tj-actions/git-cliff/compare/v1.2.0...v1.2.1) - (2023-04-01) 223 | 224 | ## 🐛 Bug Fixes 225 | 226 | - Patterns matching commits ([fb0ac3a](https://github.com/tj-actions/git-cliff/commit/fb0ac3ac1c562f61b1e0608b2fb4242622e232d0)) - (Tonye Jack) 227 | 228 | ## 📝 Other 229 | 230 | - PR [#19](https://github.com/tj-actions/git-cliff/pull/19): patterns matching commits ([fe3217f](https://github.com/tj-actions/git-cliff/commit/fe3217f6c9f9009dd5f66d0ae95d3c3acefcc817)) - (repo-ranger[bot]) 231 | 232 | # [1.2.0](https://github.com/tj-actions/git-cliff/compare/v1.1.0...v1.2.0) - (2023-04-01) 233 | 234 | ## 🚀 Features 235 | 236 | - Replace Merge PR patterns with links to the PR ([787d4be](https://github.com/tj-actions/git-cliff/commit/787d4beb012baa59cada9778dcb2994ceb44b6b3)) - (Tonye Jack) 237 | 238 | ## 🔄 Update 239 | 240 | - Updated README.md 241 | ([dfac656](https://github.com/tj-actions/git-cliff/commit/dfac6569f8dfb8d4918102e5859e69aa3fda2068)) - (repo-ranger[bot]) 242 | 243 | ## 📚 Documentation 244 | 245 | - Update credits ([f79c511](https://github.com/tj-actions/git-cliff/commit/f79c511476e92983e30f423063742df8b84481f7)) - (Tonye Jack) 246 | 247 | ## 📝 Other 248 | 249 | - PR [#18](https://github.com/tj-actions/git-cliff/pull/18): replace Merge PR patterns with links to the PR ([0f20e85](https://github.com/tj-actions/git-cliff/commit/0f20e85a61f66e40e907db5249e726771027244a)) - (repo-ranger[bot]) 250 | - Merge branch 'main' into feat/replace-Merge-PR-patterns-with-links-to-the-PR ([433f82c](https://github.com/tj-actions/git-cliff/commit/433f82cb698a39e10138a7f23b0ef49954883c2c)) - (repo-ranger[bot]) 251 | - PR [#17](https://github.com/tj-actions/git-cliff/pull/17): README.md ([9ee3083](https://github.com/tj-actions/git-cliff/commit/9ee3083cf32115696cf3aeb25fb4c3ad2a1e990d)) - (repo-ranger[bot]) 252 | - PR [#16](https://github.com/tj-actions/git-cliff/pull/16): update credits ([2947cf6](https://github.com/tj-actions/git-cliff/commit/2947cf6ca0625898324d2c0250bdf8bdbc5d530d)) - (repo-ranger[bot]) 253 | - Merge branch 'main' into doc/update-credits ([814e77c](https://github.com/tj-actions/git-cliff/commit/814e77ca904e1b53af04aa1309b906f5a9426cd3)) - (repo-ranger[bot]) 254 | - PR [#15](https://github.com/tj-actions/git-cliff/pull/15): to v1.1.0 ([15f5df0](https://github.com/tj-actions/git-cliff/commit/15f5df01bb34ddfa75119b8e9d64717102d3cdfc)) - (repo-ranger[bot]) 255 | 256 | ## ⬆️ Upgrades 257 | 258 | - Upgraded from v1.0.3 -> v1.1.0 259 | ([e82a450](https://github.com/tj-actions/git-cliff/commit/e82a450437b4d85013bfd5889a6d64273dea8c96)) - (jackton1) 260 | 261 | # [1.1.0](https://github.com/tj-actions/git-cliff/compare/v1.0.3...v1.1.0) - (2023-04-01) 262 | 263 | ## 🚀 Features 264 | 265 | - Update cliff template ([625981f](https://github.com/tj-actions/git-cliff/commit/625981fb896fe7fbf576f0e6a33e475b679e50ed)) - (Tonye Jack) 266 | 267 | ## 🔄 Update 268 | 269 | - Update cliff-template.toml ([346d696](https://github.com/tj-actions/git-cliff/commit/346d6964177f58559271bf42ec468ed2669839a1)) - (Tonye Jack) 270 | - Update cliff-template.toml ([e30144a](https://github.com/tj-actions/git-cliff/commit/e30144a68d92a860c1aa39ed204f7ee285c7a9b5)) - (Tonye Jack) 271 | - Update README.md ([50fcfa2](https://github.com/tj-actions/git-cliff/commit/50fcfa2750e5d625d1025ee1f6e1318e80761243)) - (Tonye Jack) 272 | 273 | ## 📝 Other 274 | 275 | - PR [#14](https://github.com/tj-actions/git-cliff/pull/14): update cliff template ([994e401](https://github.com/tj-actions/git-cliff/commit/994e40185a9ca2af39a63c5712390b71ebd71b10)) - (repo-ranger[bot]) 276 | - PR [#13](https://github.com/tj-actions/git-cliff/pull/13): upgraded to v1.0.3 ([ee83c9c](https://github.com/tj-actions/git-cliff/commit/ee83c9cbe06f367e09cb15f5dec28bd77a287826)) - (repo-ranger[bot]) 277 | 278 | ## ⬆️ Upgrades 279 | 280 | - Upgraded from v1.0.2 -> v1.0.3 281 | ([db7b192](https://github.com/tj-actions/git-cliff/commit/db7b192a2edacac6e21cfe204f7ab8c38f00d513)) - (jackton1) 282 | 283 | # [1.0.3](https://github.com/tj-actions/git-cliff/compare/v1.0.2...v1.0.3) - (2023-03-31) 284 | 285 | ## 🔄 Update 286 | 287 | - Update cliff-template.toml ([1a1346d](https://github.com/tj-actions/git-cliff/commit/1a1346d5aa9a359ed597b7724478e3726015b5e2)) - (Tonye Jack) 288 | - Update README.md ([84c2aed](https://github.com/tj-actions/git-cliff/commit/84c2aedffe7944ffc99295ad17cebbdbf2d27788)) - (Tonye Jack) 289 | 290 | ## 📝 Other 291 | 292 | - PR [#12](https://github.com/tj-actions/git-cliff/pull/12): ([34e8548](https://github.com/tj-actions/git-cliff/commit/34e85485ff93db543f82f67469e49f30e2537664)) - (Tonye Jack) 293 | 294 | ## ⬆️ Upgrades 295 | 296 | - Upgraded from v1.0.1 -> v1.0.2 297 | ([d53dcb8](https://github.com/tj-actions/git-cliff/commit/d53dcb8618e9727b09c6957f343384041ebaa801)) - (jackton1) 298 | 299 | # [1.0.2](https://github.com/tj-actions/git-cliff/compare/v1.0.1...v1.0.2) - (2023-03-31) 300 | 301 | ## ➕ Add 302 | 303 | - Create cleanup.sh ([ec23dbb](https://github.com/tj-actions/git-cliff/commit/ec23dbba731b3df7a091727e80604915ea760d87)) - (Tonye Jack) 304 | 305 | ## 🔄 Update 306 | 307 | - Update cleanup.sh ([4f805a7](https://github.com/tj-actions/git-cliff/commit/4f805a759c67401bf1eae2aeb2bde207d739ac0d)) - (Tonye Jack) 308 | - Update action.yml ([e8a77b4](https://github.com/tj-actions/git-cliff/commit/e8a77b49f1f86f70a6ab4e889148fb4e50509175)) - (Tonye Jack) 309 | - Update entrypoint.sh ([b59492b](https://github.com/tj-actions/git-cliff/commit/b59492be51e450534cf97453d9eeda943ac25895)) - (Tonye Jack) 310 | - Update entrypoint.sh ([e80c767](https://github.com/tj-actions/git-cliff/commit/e80c7676747b5b3939d434f2690bad34c0d82739)) - (Tonye Jack) 311 | - Update cleanup.sh ([b24a411](https://github.com/tj-actions/git-cliff/commit/b24a411da3ff64f7db89ddec882fd7662c372fed)) - (Tonye Jack) 312 | - Update action.yml ([30c2087](https://github.com/tj-actions/git-cliff/commit/30c2087d8eed9bec7ac2550d1079782938af54c9)) - (Tonye Jack) 313 | - Update action.yml ([eea06ad](https://github.com/tj-actions/git-cliff/commit/eea06ad433c51e48db7a919d8dd54ef010dd5692)) - (Tonye Jack) 314 | - Update entrypoint.sh ([7af9384](https://github.com/tj-actions/git-cliff/commit/7af93842070242aa132d80d87189871be87b887b)) - (Tonye Jack) 315 | 316 | ## 📝 Other 317 | 318 | - PR [#11](https://github.com/tj-actions/git-cliff/pull/11): to v1.0.1 ([10aa516](https://github.com/tj-actions/git-cliff/commit/10aa516fb82b2851880fe959c94ec2eb9a0262d0)) - (repo-ranger[bot]) 319 | 320 | ## ⬆️ Upgrades 321 | 322 | - Upgraded from v1.0.0 -> v1.0.1 323 | ([4651066](https://github.com/tj-actions/git-cliff/commit/4651066a8e8e30a6d6265797148573c0ec75d374)) - (jackton1) 324 | 325 | # [1.0.1](https://github.com/tj-actions/git-cliff/compare/v1.0.0...v1.0.1) - (2023-03-31) 326 | 327 | ## ➖ Remove 328 | 329 | - Delete cliff.toml ([e36187e](https://github.com/tj-actions/git-cliff/commit/e36187eb492e05796bbf011cc316576a3754e3c2)) - (Tonye Jack) 330 | 331 | ## 🔄 Update 332 | 333 | - Update README.md ([c96bfe2](https://github.com/tj-actions/git-cliff/commit/c96bfe2173b01fcb08e8747a6b068485d1df1ca6)) - (Tonye Jack) 334 | - Update README.md ([3ef50b3](https://github.com/tj-actions/git-cliff/commit/3ef50b30fbfd1138a5e85fb4c5548f06fac61b6d)) - (Tonye Jack) 335 | - Update README.md ([f6a749d](https://github.com/tj-actions/git-cliff/commit/f6a749d9348b23c81357f5875b0709585f475837)) - (Tonye Jack) 336 | - Update test.yml ([fdfe2b6](https://github.com/tj-actions/git-cliff/commit/fdfe2b64f4650f9bb02f7e6b637bf8b0a7e6557f)) - (Tonye Jack) 337 | - Update test.yml ([a61b766](https://github.com/tj-actions/git-cliff/commit/a61b766076fa66a06c7e6b8ee9de1f5f1a2a3932)) - (Tonye Jack) 338 | - Update action.yml ([1e6ba9b](https://github.com/tj-actions/git-cliff/commit/1e6ba9b5bb2e6250380ef25605bd0df4af144369)) - (Tonye Jack) 339 | - Update entrypoint.sh ([038b4cc](https://github.com/tj-actions/git-cliff/commit/038b4ccc0108051d9c11c61d3f267baf68760343)) - (Tonye Jack) 340 | 341 | ## 📝 Other 342 | 343 | - PR [#10](https://github.com/tj-actions/git-cliff/pull/10): ([2deb7d0](https://github.com/tj-actions/git-cliff/commit/2deb7d05fea40101e4ddd1ba37dbeaf346b3662a)) - (Tonye Jack) 344 | 345 | ## ⬆️ Upgrades 346 | 347 | - Upgraded from v1.0.0 -> v1.0.0 348 | ([1933bc1](https://github.com/tj-actions/git-cliff/commit/1933bc1a98cea5e4e2d7b28d97df477fc832ee46)) - (jackton1) 349 | 350 | # [1.0.0](https://github.com/tj-actions/git-cliff/tree/v1.0.0) - (2023-03-31) 351 | 352 | ## 📦 Bumps 353 | 354 | - Bump tj-actions/verify-changed-files from 13 to 14 355 | 356 | Bumps [tj-actions/verify-changed-files](https://github.com/tj-actions/verify-changed-files) from 13 to 14. 357 | - [Release notes](https://github.com/tj-actions/verify-changed-files/releases) 358 | - [Changelog](https://github.com/tj-actions/verify-changed-files/blob/main/HISTORY.md) 359 | - [Commits](https://github.com/tj-actions/verify-changed-files/compare/v13...v14) 360 | 361 | --- 362 | updated-dependencies: 363 | - dependency-name: tj-actions/verify-changed-files 364 | dependency-type: direct:production 365 | update-type: version-update:semver-major 366 | ... 367 | 368 | Signed-off-by: dependabot[bot] ([7fd6cc5](https://github.com/tj-actions/git-cliff/commit/7fd6cc5c5a8f1f65268ec762e11ce9f5cc46d45b)) - (dependabot[bot]) 369 | 370 | ## 🎉 Initial Commit 371 | 372 | - Initial commit ([b2d9b0e](https://github.com/tj-actions/git-cliff/commit/b2d9b0e8a9277b9281b241c6f755ad3698ee14d6)) - (Tonye Jack) 373 | 374 | ## ➕ Add 375 | 376 | - Create cliff-template.toml ([c885ca0](https://github.com/tj-actions/git-cliff/commit/c885ca0f12f370cf42cc71440ef9359bbf8ae15f)) - (Tonye Jack) 377 | 378 | ## ➖ Remove 379 | 380 | - Removed unused file ([d9522e0](https://github.com/tj-actions/git-cliff/commit/d9522e0b272cdc63df65c92e7cd065b4127e66ae)) - (Tonye Jack) 381 | 382 | ## 🔄 Update 383 | 384 | - Update HISTORY.md ([96e1441](https://github.com/tj-actions/git-cliff/commit/96e14417691d6223f958e514c880db397174ba9f)) - (Tonye Jack) 385 | - Update sync-release-version.yml ([2e3b6b2](https://github.com/tj-actions/git-cliff/commit/2e3b6b20ffd46807d68667e7ba5444573bb35c58)) - (Tonye Jack) 386 | - Update test.yml ([728a074](https://github.com/tj-actions/git-cliff/commit/728a074581224c68f1c94eaa83800bbd4d3aa7e3)) - (Tonye Jack) 387 | - Update test.yml ([8483e36](https://github.com/tj-actions/git-cliff/commit/8483e3660abc7235fb3c3799873fe180e411d6f4)) - (Tonye Jack) 388 | - Updated README.md 389 | ([a82ccab](https://github.com/tj-actions/git-cliff/commit/a82ccab90634f99e476316020bd8af9bdbd51ca2)) - (jackton1) 390 | - Update test.yml ([485fdb6](https://github.com/tj-actions/git-cliff/commit/485fdb635565f0f72372c522abbd2d350fa6a755)) - (Tonye Jack) 391 | - Updated README.md 392 | ([59b09db](https://github.com/tj-actions/git-cliff/commit/59b09db18c8ef19ecd410b8fd015dd939b2549af)) - (jackton1) 393 | - Update README.md ([12b7209](https://github.com/tj-actions/git-cliff/commit/12b7209e4921d13cf63970efc446fa89bdbe8aa8)) - (Tonye Jack) 394 | - Update README.md ([ed37e25](https://github.com/tj-actions/git-cliff/commit/ed37e254dbe9474655dd518984cc790a4d494701)) - (Tonye Jack) 395 | - Update test.yml ([fc7d6f7](https://github.com/tj-actions/git-cliff/commit/fc7d6f7a73792dba87858a41a541d531b17b1ed6)) - (Tonye Jack) 396 | - Update test.yml ([8fa9891](https://github.com/tj-actions/git-cliff/commit/8fa98912b2f6478c0d4c20981a2c313bc6da552a)) - (Tonye Jack) 397 | - Update entrypoint.sh ([45af158](https://github.com/tj-actions/git-cliff/commit/45af158ff44588dafb01ff64c64d551063512857)) - (Tonye Jack) 398 | - Update entrypoint.sh ([1f6ac81](https://github.com/tj-actions/git-cliff/commit/1f6ac812a54eea0338b585ad5699cb80f164e281)) - (Tonye Jack) 399 | - Update test.yml ([88b34ea](https://github.com/tj-actions/git-cliff/commit/88b34eac5c95624f4fe1ca4b31dffe1764bba265)) - (Tonye Jack) 400 | - Updated README.md 401 | ([be4f983](https://github.com/tj-actions/git-cliff/commit/be4f9832fec95700a83f30be69ca31791ae14a1e)) - (jackton1) 402 | - Update action.yml ([e96f3bc](https://github.com/tj-actions/git-cliff/commit/e96f3bcaa156f229f3cb17e292a9c8cfe3980d98)) - (Tonye Jack) 403 | - Update action.yml ([c695cb8](https://github.com/tj-actions/git-cliff/commit/c695cb896d9e2c053a585f275a108d00a1214fb5)) - (Tonye Jack) 404 | - Update cliff-template.toml ([ab99767](https://github.com/tj-actions/git-cliff/commit/ab9976730fccb7afdb3ac0e82b7c027758767bbb)) - (Tonye Jack) 405 | - Update alpine Docker tag to v3.17.3 ([87b5e06](https://github.com/tj-actions/git-cliff/commit/87b5e069463ed732a37a4519c0847c3d943d1de2)) - (renovate[bot]) 406 | - Update tj-actions/release-tagger action to v3 ([a5bad5c](https://github.com/tj-actions/git-cliff/commit/a5bad5c4c8d6fe3c1bce4c4b4c73b9cc07f897d9)) - (renovate[bot]) 407 | - Update cliff-template.toml ([72627c7](https://github.com/tj-actions/git-cliff/commit/72627c71a6a25999b7b1c6ba216cdb3c3ceee0c5)) - (Tonye Jack) 408 | - Update README.md ([4a714b0](https://github.com/tj-actions/git-cliff/commit/4a714b0fe917f30ca5610b8551d55bb63a7d39be)) - (Tonye Jack) 409 | - Update tj-actions/github-changelog-generator action to v1.18 ([3f68b8c](https://github.com/tj-actions/git-cliff/commit/3f68b8c991daa1fcaebdcab600d822a069ec6944)) - (renovate[bot]) 410 | 411 | ## 📝 Other 412 | 413 | - PR [#9](https://github.com/tj-actions/git-cliff/pull/9): README.md ([e162eea](https://github.com/tj-actions/git-cliff/commit/e162eea0bc836ef9839824d0c20a0cff6e5d7b89)) - (repo-ranger[bot]) 414 | - PR [#8](https://github.com/tj-actions/git-cliff/pull/8): ([bb4378b](https://github.com/tj-actions/git-cliff/commit/bb4378be805d106801b0e301fa6bd1bbf37b5db0)) - (Tonye Jack) 415 | - PR [#7](https://github.com/tj-actions/git-cliff/pull/7): README.md ([31bbbfd](https://github.com/tj-actions/git-cliff/commit/31bbbfd3bf27d9a66454d5a4f285233d00ce5a05)) - (repo-ranger[bot]) 416 | 417 | ## ⚙️ Miscellaneous Tasks 418 | 419 | - Updated HISTORY.md. ([db987d9](https://github.com/tj-actions/git-cliff/commit/db987d9d0d79c160dff18a16cfb1633d5a4061c8)) - (github-actions[bot]) 420 | - Updated HISTORY.md. ([15ec67d](https://github.com/tj-actions/git-cliff/commit/15ec67d9126e78698a24b475501b56fe7f74dc4d)) - (github-actions[bot]) 421 | - Updated HISTORY.md. ([72f08ce](https://github.com/tj-actions/git-cliff/commit/72f08ce961cd325efb95e4ffc7360e154e0281dd)) - (github-actions[bot]) 422 | - Updated HISTORY.md. ([fff6b90](https://github.com/tj-actions/git-cliff/commit/fff6b90fa0a6267a0187fd4556a207bc1f1e67be)) - (github-actions[bot]) 423 | - Updated HISTORY.md. ([58ad9f8](https://github.com/tj-actions/git-cliff/commit/58ad9f84114d341a42e30e518cb236e234892b84)) - (github-actions[bot]) 424 | - Updated HISTORY.md. ([78766d9](https://github.com/tj-actions/git-cliff/commit/78766d9e8616ad11a61bcff9e0ffd304c2c9b0dd)) - (github-actions[bot]) 425 | - Updated HISTORY.md. ([b6ac488](https://github.com/tj-actions/git-cliff/commit/b6ac4889cf7bebff2fa020f6f5baedd7f44cd55f)) - (github-actions[bot]) 426 | - Updated HISTORY.md. ([ada5250](https://github.com/tj-actions/git-cliff/commit/ada52501a853e77b0f2c2e6c6bb36a4aee8c64bd)) - (github-actions[bot]) 427 | - Updated HISTORY.md. ([b08a88a](https://github.com/tj-actions/git-cliff/commit/b08a88aa2195852acb01c542811f73c7725130d1)) - (github-actions[bot]) 428 | - Updated HISTORY.md. ([37c0ce5](https://github.com/tj-actions/git-cliff/commit/37c0ce5bed07be1efd689a8ae3feb117a2f62484)) - (github-actions[bot]) 429 | - Updated HISTORY.md. ([5d7efa9](https://github.com/tj-actions/git-cliff/commit/5d7efa9887af53225b55bdc30fe75251d96be52e)) - (github-actions[bot]) 430 | - Updated HISTORY.md. ([a70c5f6](https://github.com/tj-actions/git-cliff/commit/a70c5f6574de8d42a2f22aa5831fedaf31ddc942)) - (github-actions[bot]) 431 | - Updated HISTORY.md. ([de16595](https://github.com/tj-actions/git-cliff/commit/de16595a6fb22389c452ae80276324ac00955dce)) - (github-actions[bot]) 432 | - Updated HISTORY.md. ([5f9f3f1](https://github.com/tj-actions/git-cliff/commit/5f9f3f1393afb29e6222d121141194806048a749)) - (github-actions[bot]) 433 | - Updated HISTORY.md. ([a5efb0b](https://github.com/tj-actions/git-cliff/commit/a5efb0be40b46080d85c400628619c2385189a9e)) - (github-actions[bot]) 434 | - Updated HISTORY.md. ([55a9ef3](https://github.com/tj-actions/git-cliff/commit/55a9ef3814610ea5519c398890366a2bc4d0c94d)) - (github-actions[bot]) 435 | - Updated HISTORY.md. ([2ed50e9](https://github.com/tj-actions/git-cliff/commit/2ed50e998029e00f38883e33b58047d5cff1784c)) - (github-actions[bot]) 436 | - Updated HISTORY.md. ([111c911](https://github.com/tj-actions/git-cliff/commit/111c91169ef904803cc6a82e50fc1e1373a1b994)) - (github-actions[bot]) 437 | - Updated HISTORY.md. ([f4630a8](https://github.com/tj-actions/git-cliff/commit/f4630a8d369973b9b06a4fd2ae4ed1905f6b3875)) - (github-actions[bot]) 438 | - Updated HISTORY.md. ([1768f3f](https://github.com/tj-actions/git-cliff/commit/1768f3f408715c80a8135f91718d5f8531b60d82)) - (github-actions[bot]) 439 | - Updated HISTORY.md. ([698bbf1](https://github.com/tj-actions/git-cliff/commit/698bbf16d9e97f1d059796fb70b7a3984e364cec)) - (github-actions[bot]) 440 | - Updated HISTORY.md. ([ef392d3](https://github.com/tj-actions/git-cliff/commit/ef392d39c21a6c9e779ce3c6728a719010e44013)) - (github-actions[bot]) 441 | - Updated HISTORY.md. ([f1d50d4](https://github.com/tj-actions/git-cliff/commit/f1d50d4b2e94fe42c059a90f5169599c86087192)) - (github-actions[bot]) 442 | - Updated HISTORY.md. ([a4d164a](https://github.com/tj-actions/git-cliff/commit/a4d164a972cf7d5866f2d840e926c957e87e1ac0)) - (github-actions[bot]) 443 | - Updated HISTORY.md. ([bb136e2](https://github.com/tj-actions/git-cliff/commit/bb136e22a406089757e0cd61c07563df3b501e65)) - (github-actions[bot]) 444 | - Updated HISTORY.md. ([c604dd7](https://github.com/tj-actions/git-cliff/commit/c604dd7d8743eee2d86c48c1b09dd3f98d6be497)) - (github-actions[bot]) 445 | - Updated HISTORY.md. ([c109660](https://github.com/tj-actions/git-cliff/commit/c109660fb466a9028e7881f476f208fd3c78f703)) - (github-actions[bot]) 446 | - Updated HISTORY.md. ([06e9342](https://github.com/tj-actions/git-cliff/commit/06e9342a18f1ec7acef51291a312cdd728b12b21)) - (github-actions[bot]) 447 | - Updated HISTORY.md. ([46d8a59](https://github.com/tj-actions/git-cliff/commit/46d8a59557e62059de01323104f16e74d45ad2c4)) - (github-actions[bot]) 448 | - Updated HISTORY.md. ([6b211ad](https://github.com/tj-actions/git-cliff/commit/6b211adca1c92e6d04867feed035da7302a87c58)) - (github-actions[bot]) 449 | - Updated HISTORY.md. ([f64f344](https://github.com/tj-actions/git-cliff/commit/f64f3440ccc301bd06cc55c17e08d1b6df3ecd11)) - (github-actions[bot]) 450 | - Updated HISTORY.md. ([c6bf81f](https://github.com/tj-actions/git-cliff/commit/c6bf81f80aa35158f261c0e19b13251cca77298d)) - (github-actions[bot]) 451 | - Updated HISTORY.md. ([36be22e](https://github.com/tj-actions/git-cliff/commit/36be22e8ec20c60cbd1c29e2854e2835d12a70ac)) - (github-actions[bot]) 452 | - Updated HISTORY.md. ([03d0bf6](https://github.com/tj-actions/git-cliff/commit/03d0bf68f03700763dbb3e1664e31f3c63b28ed0)) - (github-actions[bot]) 453 | - Updated HISTORY.md. ([91c7379](https://github.com/tj-actions/git-cliff/commit/91c73791dbf01210f8f1cfd9932451bfcdc89d5d)) - (github-actions[bot]) 454 | - Updated HISTORY.md. ([aba41b4](https://github.com/tj-actions/git-cliff/commit/aba41b45c918f0c80e776c9cf2f6b52413aa53c6)) - (github-actions[bot]) 455 | - Updated HISTORY.md. ([4d83ff4](https://github.com/tj-actions/git-cliff/commit/4d83ff41119ae6cc0f862e9aeca1027d7e87f906)) - (github-actions[bot]) 456 | - Updated HISTORY.md. ([c83e510](https://github.com/tj-actions/git-cliff/commit/c83e510e339b04b8b1e99d774ac7403803339e9e)) - (github-actions[bot]) 457 | - Updated HISTORY.md. ([feb0c95](https://github.com/tj-actions/git-cliff/commit/feb0c955d45540da582867087dd8b4582aedd55d)) - (github-actions[bot]) 458 | - Updated HISTORY.md. ([1911184](https://github.com/tj-actions/git-cliff/commit/1911184ab20424762b3789261d9cb37eababfec0)) - (github-actions[bot]) 459 | - Updated HISTORY.md. ([19bc8c3](https://github.com/tj-actions/git-cliff/commit/19bc8c366581215c53b35102faee6c105b8b9057)) - (github-actions[bot]) 460 | - Updated HISTORY.md. ([c1b5a88](https://github.com/tj-actions/git-cliff/commit/c1b5a88465dac7161942565b45aa7460179d8dcc)) - (github-actions[bot]) 461 | - Updated HISTORY.md. ([962528b](https://github.com/tj-actions/git-cliff/commit/962528b48689e61dc208bd76207db4c11f3ff740)) - (github-actions[bot]) 462 | - Updated HISTORY.md. ([af5023a](https://github.com/tj-actions/git-cliff/commit/af5023a92ef134dd0500e6a5ff049de5bfaab97b)) - (github-actions[bot]) 463 | - Updated HISTORY.md. ([053a005](https://github.com/tj-actions/git-cliff/commit/053a005ee79c4bbbf694c03e53e014403a24aacc)) - (github-actions[bot]) 464 | - Updated HISTORY.md. ([e1cc2a0](https://github.com/tj-actions/git-cliff/commit/e1cc2a0f24122c7910304e147ecbf02b812203fe)) - (github-actions[bot]) 465 | - Updated HISTORY.md. ([76d26f9](https://github.com/tj-actions/git-cliff/commit/76d26f95e8a898cdb53b1378e6e8fdb27804fb0f)) - (github-actions[bot]) 466 | - Updated HISTORY.md. ([00a96ed](https://github.com/tj-actions/git-cliff/commit/00a96ed40bfdbc1c2ec3a1072463b878418de1e9)) - (github-actions[bot]) 467 | - Updated HISTORY.md. ([3b5dce4](https://github.com/tj-actions/git-cliff/commit/3b5dce4bd289e963f4b050bc8ee0c2a279883912)) - (github-actions[bot]) 468 | - Updated HISTORY.md. ([2c282a4](https://github.com/tj-actions/git-cliff/commit/2c282a481e224db57abe628e7528722241a8f96f)) - (github-actions[bot]) 469 | - Updated HISTORY.md. ([b192078](https://github.com/tj-actions/git-cliff/commit/b1920784af0328397ccdbd4c52bfa7aabc12818a)) - (github-actions[bot]) 470 | - Updated HISTORY.md. ([db87f06](https://github.com/tj-actions/git-cliff/commit/db87f06860c923b04bb45efa9a9a8deb63897b56)) - (github-actions[bot]) 471 | - Updated HISTORY.md. ([9794407](https://github.com/tj-actions/git-cliff/commit/97944071b59cbdc80b478fe0ab1be4ac09adce0a)) - (github-actions[bot]) 472 | - Updated HISTORY.md. ([c4255b5](https://github.com/tj-actions/git-cliff/commit/c4255b5eaa86731cbb8cc0906ea5a1fd1da91fbe)) - (github-actions[bot]) 473 | - Updated HISTORY.md. ([3dc405e](https://github.com/tj-actions/git-cliff/commit/3dc405eefacb06f42611396cc80799eb15d72fe2)) - (github-actions[bot]) 474 | - Updated HISTORY.md. ([223a455](https://github.com/tj-actions/git-cliff/commit/223a455a87738f4fb3cc534e9fe2566b6da9dde1)) - (github-actions[bot]) 475 | - Updated HISTORY.md. ([9bfa647](https://github.com/tj-actions/git-cliff/commit/9bfa647f4cd1c52bc6e7a0cbc4285a4518f9a969)) - (github-actions[bot]) 476 | - Updated HISTORY.md. ([ac8bfab](https://github.com/tj-actions/git-cliff/commit/ac8bfab906df5c7551ac0d63307b6de4ddf99fb6)) - (github-actions[bot]) 477 | - Updated HISTORY.md. ([399248c](https://github.com/tj-actions/git-cliff/commit/399248caf2961c0bc074c44cd7d7c56a8697800e)) - (github-actions[bot]) 478 | - Updated HISTORY.md. ([a33f7c4](https://github.com/tj-actions/git-cliff/commit/a33f7c485df1602bd15e9ea48b8b23322bc64f3d)) - (github-actions[bot]) 479 | - Updated HISTORY.md. ([4c02848](https://github.com/tj-actions/git-cliff/commit/4c02848ee7781eb87c84df4c1fe21fcda9fc1996)) - (github-actions[bot]) 480 | - Updated HISTORY.md. ([653ace9](https://github.com/tj-actions/git-cliff/commit/653ace92d85aeae66b4f821ab03cbb37e0fcc40a)) - (github-actions[bot]) 481 | - Updated HISTORY.md. ([9e9efb1](https://github.com/tj-actions/git-cliff/commit/9e9efb154f2170e2bd5e82979cc6eaad46346013)) - (github-actions[bot]) 482 | - Updated HISTORY.md. ([6b53d8d](https://github.com/tj-actions/git-cliff/commit/6b53d8d9cfd7b9a5dc7d8d21b040a1df9edb535b)) - (github-actions[bot]) 483 | - Updated HISTORY.md. ([2cabc86](https://github.com/tj-actions/git-cliff/commit/2cabc86a29fb24a470adbad710cdfe4b7efbf477)) - (github-actions[bot]) 484 | - Updated HISTORY.md. ([a115fed](https://github.com/tj-actions/git-cliff/commit/a115feda8a9ab1670a99c5957f3515c540c74873)) - (github-actions[bot]) 485 | - Updated HISTORY.md. ([160a01e](https://github.com/tj-actions/git-cliff/commit/160a01e5ead6f08233ab798bc44495ddf2fbaa15)) - (github-actions[bot]) 486 | - Updated HISTORY.md. ([d3ccf42](https://github.com/tj-actions/git-cliff/commit/d3ccf424bd7ec3795b39de1ff044bc051e9e1254)) - (github-actions[bot]) 487 | - Updated HISTORY.md. ([fbe4083](https://github.com/tj-actions/git-cliff/commit/fbe40838e199bef9ad9127920bdaab4aa3c78add)) - (github-actions[bot]) 488 | - Updated HISTORY.md. ([b94575e](https://github.com/tj-actions/git-cliff/commit/b94575ea184adf1a953a09fa1bb5e3b1ddac6143)) - (github-actions[bot]) 489 | - Updated HISTORY.md. ([23c4075](https://github.com/tj-actions/git-cliff/commit/23c4075b999daaed86f58d38a62093d5b8400c80)) - (github-actions[bot]) 490 | - Updated HISTORY.md. ([e484334](https://github.com/tj-actions/git-cliff/commit/e4843340a650d46c63cdb8ca54a7ffa78f1d54b4)) - (github-actions[bot]) 491 | - Updated HISTORY.md. ([1f54978](https://github.com/tj-actions/git-cliff/commit/1f54978d2ac6945fb6cea3e3e73ec9c0b9494a3c)) - (github-actions[bot]) 492 | - Updated HISTORY.md. ([b0798fb](https://github.com/tj-actions/git-cliff/commit/b0798fb93cb6b7cecc7e075e6224689988355e8a)) - (github-actions[bot]) 493 | - Updated HISTORY.md. ([092f417](https://github.com/tj-actions/git-cliff/commit/092f4174dcacd2b0689ad687f0ab5f25d24e3dfa)) - (github-actions[bot]) 494 | - Updated HISTORY.md. ([f5d44da](https://github.com/tj-actions/git-cliff/commit/f5d44da780b599d761747425d52e908a25803d2f)) - (github-actions[bot]) 495 | - Updated HISTORY.md. ([4a1acd7](https://github.com/tj-actions/git-cliff/commit/4a1acd787bbf4ea070acf6a13f7636763d797169)) - (github-actions[bot]) 496 | - Updated HISTORY.md. ([29e3d96](https://github.com/tj-actions/git-cliff/commit/29e3d96d653a122cc559244043772a7cb075e637)) - (github-actions[bot]) 497 | - Updated HISTORY.md. ([4734f27](https://github.com/tj-actions/git-cliff/commit/4734f27af2833a517383fe490fa8fc5cd79a38d8)) - (github-actions[bot]) 498 | - Updated HISTORY.md. ([923cb0a](https://github.com/tj-actions/git-cliff/commit/923cb0aec2769af4c7d93a5a94b8ae144b144df6)) - (github-actions[bot]) 499 | - Updated HISTORY.md. ([9c9683f](https://github.com/tj-actions/git-cliff/commit/9c9683fdd3a937bb79742f23c04f5211d215a3df)) - (github-actions[bot]) 500 | - Updated HISTORY.md. ([e9c996b](https://github.com/tj-actions/git-cliff/commit/e9c996ba16846cf7a3fefd887da8a2a7d363fdbf)) - (github-actions[bot]) 501 | - Updated HISTORY.md. ([66488bf](https://github.com/tj-actions/git-cliff/commit/66488bfed18808719f267ae3d0441ce05326dad3)) - (github-actions[bot]) 502 | - Updated HISTORY.md. ([1175e3d](https://github.com/tj-actions/git-cliff/commit/1175e3d0a1647353944e9e4836726a0976508e94)) - (github-actions[bot]) 503 | - Updated HISTORY.md. ([4e6eece](https://github.com/tj-actions/git-cliff/commit/4e6eecebe7b36ea957b5b5fdcc6dd326c7506ebf)) - (github-actions[bot]) 504 | - Updated HISTORY.md. ([789b4f5](https://github.com/tj-actions/git-cliff/commit/789b4f59526ec52334c40b5d32fcaa31899e556b)) - (github-actions[bot]) 505 | - Updated HISTORY.md. ([d791d45](https://github.com/tj-actions/git-cliff/commit/d791d459550c3eb6369f29a864f5ec8967eb2442)) - (github-actions[bot]) 506 | - Updated HISTORY.md. ([c18a871](https://github.com/tj-actions/git-cliff/commit/c18a87100aeaac4ffd55ae84b0865908ef5f284a)) - (github-actions[bot]) 507 | - Updated HISTORY.md. ([1e5226a](https://github.com/tj-actions/git-cliff/commit/1e5226a6c5970ff7fefbb8b94f770e6440313aa8)) - (github-actions[bot]) 508 | - Updated HISTORY.md. ([6e7bb9b](https://github.com/tj-actions/git-cliff/commit/6e7bb9bf0ae8e6abff5eae7997f79d76387f0eb3)) - (github-actions[bot]) 509 | - Updated HISTORY.md. ([f8c9564](https://github.com/tj-actions/git-cliff/commit/f8c95647f0d0a68f85cb13b664de676c574135fa)) - (github-actions[bot]) 510 | - Updated HISTORY.md. ([b88e85b](https://github.com/tj-actions/git-cliff/commit/b88e85b53dd9eccd98d6e3261c612a75a9eff318)) - (github-actions[bot]) 511 | - Updated HISTORY.md. ([ec1540b](https://github.com/tj-actions/git-cliff/commit/ec1540ba0078bb7d32ce5459aaf5520ed8fb6e19)) - (github-actions[bot]) 512 | - Updated HISTORY.md. ([03c836e](https://github.com/tj-actions/git-cliff/commit/03c836e22e04da2548eeb628301ab9b29499de13)) - (github-actions[bot]) 513 | - Updated HISTORY.md. ([b910cb2](https://github.com/tj-actions/git-cliff/commit/b910cb230dd2d63f0a8553eb1856d8bd9bf3d9e8)) - (github-actions[bot]) 514 | - Updated HISTORY.md. ([fc72fcd](https://github.com/tj-actions/git-cliff/commit/fc72fcd2078d23d9611c5b364dee93e9e5585e02)) - (github-actions[bot]) 515 | - Updated HISTORY.md. ([417fcba](https://github.com/tj-actions/git-cliff/commit/417fcba35e2a1980af0dea0c3e9bb66d707ac3a0)) - (github-actions[bot]) 516 | - Updated HISTORY.md. ([6738275](https://github.com/tj-actions/git-cliff/commit/6738275f5cecb15ccce431452f17d7fdff6f805e)) - (github-actions[bot]) 517 | - Updated HISTORY.md. ([56c60cc](https://github.com/tj-actions/git-cliff/commit/56c60cc931718cf7c6cf77810789373b35d520aa)) - (github-actions[bot]) 518 | - Updated HISTORY.md. ([558c86e](https://github.com/tj-actions/git-cliff/commit/558c86ec7c96fd0d985747de8a4770fe30eb9fe3)) - (github-actions[bot]) 519 | - Updated HISTORY.md. ([7615160](https://github.com/tj-actions/git-cliff/commit/76151604bca017945266a960772c7ee41eb18c24)) - (github-actions[bot]) 520 | - Updated HISTORY.md. ([fdf0bd9](https://github.com/tj-actions/git-cliff/commit/fdf0bd9d43d904245b9e2ee01abfb585a5120db0)) - (github-actions[bot]) 521 | - Updated HISTORY.md. ([17dfb70](https://github.com/tj-actions/git-cliff/commit/17dfb706189c6ff33b492b49a2f9bf8bd67b7523)) - (github-actions[bot]) 522 | - Updated HISTORY.md. ([163d06a](https://github.com/tj-actions/git-cliff/commit/163d06af673787b8db346a29243dba1f766afac0)) - (github-actions[bot]) 523 | - Updated HISTORY.md. ([747022a](https://github.com/tj-actions/git-cliff/commit/747022ae165cee5327a5a6408a05beaac92d6c0f)) - (github-actions[bot]) 524 | - Updated HISTORY.md. ([d59510c](https://github.com/tj-actions/git-cliff/commit/d59510c50b9e629c5adfad65bbc92dc2bdcc29ad)) - (github-actions[bot]) 525 | - Updated HISTORY.md. ([6922478](https://github.com/tj-actions/git-cliff/commit/69224787899dfd4f11fb25f15086e10a8ba9290e)) - (github-actions[bot]) 526 | - Updated HISTORY.md. ([5e42eed](https://github.com/tj-actions/git-cliff/commit/5e42eed94e1f724deaab3af4423eb1678c642731)) - (github-actions[bot]) 527 | - Updated HISTORY.md. ([3c602e8](https://github.com/tj-actions/git-cliff/commit/3c602e87999365f859016475785da9a41c523aa4)) - (github-actions[bot]) 528 | - Updated HISTORY.md. ([3bc147b](https://github.com/tj-actions/git-cliff/commit/3bc147bd9f06e4e3d25f86116bca094dc867d788)) - (github-actions[bot]) 529 | - Updated HISTORY.md. ([e20587e](https://github.com/tj-actions/git-cliff/commit/e20587ebd0a029f1052f4f186e9f9887fe35acf2)) - (github-actions[bot]) 530 | - Updated HISTORY.md. ([9320459](https://github.com/tj-actions/git-cliff/commit/9320459f2520bd2d9972496104d7d4a773a659cf)) - (github-actions[bot]) 531 | - Updated HISTORY.md. ([d643d23](https://github.com/tj-actions/git-cliff/commit/d643d232754f894f55a9a990d62e39fb5304e80e)) - (github-actions[bot]) 532 | - Updated HISTORY.md. ([5e2cb72](https://github.com/tj-actions/git-cliff/commit/5e2cb72dc5f65ced3bfc40f476c688fb3699cece)) - (github-actions[bot]) 533 | - Updated HISTORY.md. ([8afb886](https://github.com/tj-actions/git-cliff/commit/8afb8865a415a998efea756225997394eef010a2)) - (github-actions[bot]) 534 | - Updated HISTORY.md. ([5c7bcf1](https://github.com/tj-actions/git-cliff/commit/5c7bcf1e2f9a8d70c57a383d48e12222c82e436e)) - (github-actions[bot]) 535 | - Updated HISTORY.md. ([01c1e3d](https://github.com/tj-actions/git-cliff/commit/01c1e3db4cc85a3fcc5bb55b6f0c58d3ff115654)) - (github-actions[bot]) 536 | - Updated HISTORY.md. ([af535f4](https://github.com/tj-actions/git-cliff/commit/af535f4d4684f956b3efcdee18bf9d9a2ca0d41f)) - (github-actions[bot]) 537 | - Updated HISTORY.md. ([5116430](https://github.com/tj-actions/git-cliff/commit/51164309ad4a5f051ddfd6fb5d0f431ce1a7a648)) - (github-actions[bot]) 538 | - Updated HISTORY.md. ([2d3d633](https://github.com/tj-actions/git-cliff/commit/2d3d63330ea15eade355bacd8ace53de698c553c)) - (github-actions[bot]) 539 | - Updated HISTORY.md. ([c192f89](https://github.com/tj-actions/git-cliff/commit/c192f89f48bc8814d41432467e107555f193a8e6)) - (github-actions[bot]) 540 | - Updated HISTORY.md. ([065fade](https://github.com/tj-actions/git-cliff/commit/065fade34ccb48db1646683b938b311ad6220b4e)) - (github-actions[bot]) 541 | - Updated HISTORY.md. ([2746b65](https://github.com/tj-actions/git-cliff/commit/2746b65771308e439acb7b94dee110aafe65017a)) - (github-actions[bot]) 542 | - Updated HISTORY.md. ([3afb703](https://github.com/tj-actions/git-cliff/commit/3afb703e4c2bda702bf41274fa2127b9e7693393)) - (github-actions[bot]) 543 | - Updated HISTORY.md. ([60815b5](https://github.com/tj-actions/git-cliff/commit/60815b53c52b17c8a0a088831dd0eead40ff4e49)) - (github-actions[bot]) 544 | - Updated HISTORY.md. ([db45d9f](https://github.com/tj-actions/git-cliff/commit/db45d9f056a143555d88ed5e1d9ba861bc19e5cd)) - (github-actions[bot]) 545 | - Updated HISTORY.md. ([4bf2e92](https://github.com/tj-actions/git-cliff/commit/4bf2e92aa1a210901cbe806a9ee3c0f666c1c2f3)) - (github-actions[bot]) 546 | - Updated HISTORY.md. ([e2bfb61](https://github.com/tj-actions/git-cliff/commit/e2bfb61b06ed82f2c4981818802af330babcaff6)) - (github-actions[bot]) 547 | - Updated HISTORY.md. ([e2c5fe2](https://github.com/tj-actions/git-cliff/commit/e2c5fe23f974ded076a00cd8eb61a09d7b92e061)) - (github-actions[bot]) 548 | - Updated HISTORY.md. ([1d1d653](https://github.com/tj-actions/git-cliff/commit/1d1d6532d44d4b7f4801dc497aaaf0a46d329584)) - (github-actions[bot]) 549 | - Updated HISTORY.md. ([3491ead](https://github.com/tj-actions/git-cliff/commit/3491ead923046cef86665e39b44e8d3c94f03539)) - (github-actions[bot]) 550 | - Updated HISTORY.md. ([501e7ea](https://github.com/tj-actions/git-cliff/commit/501e7eae1d64188e0a858ecc364500efbb5c4b93)) - (github-actions[bot]) 551 | - Updated HISTORY.md. ([92dd421](https://github.com/tj-actions/git-cliff/commit/92dd421ad2dc2cc383a04205536ec31a5a5d8ba3)) - (github-actions[bot]) 552 | - Updated HISTORY.md. ([a5a5765](https://github.com/tj-actions/git-cliff/commit/a5a5765ae913026e850d5a02ff7dbd7023ceeecc)) - (github-actions[bot]) 553 | - Updated HISTORY.md. ([ce35127](https://github.com/tj-actions/git-cliff/commit/ce35127922121ba2b3562cfea0524452b986f25f)) - (github-actions[bot]) 554 | - Updated HISTORY.md. ([c9d6095](https://github.com/tj-actions/git-cliff/commit/c9d6095da888efe8aa0b4d262457816ce4c7ecce)) - (github-actions[bot]) 555 | - Updated HISTORY.md. ([a63e050](https://github.com/tj-actions/git-cliff/commit/a63e050a7799193c1100dc38f6d173dd437297f6)) - (github-actions[bot]) 556 | - Updated HISTORY.md. ([dbafeb7](https://github.com/tj-actions/git-cliff/commit/dbafeb7c5e91b6b5267376a20674b132c75dd5da)) - (github-actions[bot]) 557 | - Updated HISTORY.md. ([fd9597a](https://github.com/tj-actions/git-cliff/commit/fd9597a941298fcc737c830112316621dd7cd408)) - (github-actions[bot]) 558 | - Updated HISTORY.md. ([04e8783](https://github.com/tj-actions/git-cliff/commit/04e8783c86f6bd799c2b14eff11ea2c586083757)) - (github-actions[bot]) 559 | - Updated HISTORY.md. ([673557b](https://github.com/tj-actions/git-cliff/commit/673557b973ad0838d6901847901c8e6805407633)) - (github-actions[bot]) 560 | - Updated HISTORY.md. ([0a82233](https://github.com/tj-actions/git-cliff/commit/0a82233e3818a1786145f052bdf0ce36cb78c0d7)) - (github-actions[bot]) 561 | - Updated HISTORY.md. ([4a3771c](https://github.com/tj-actions/git-cliff/commit/4a3771ca27cd9b53613c02c560f9624257dcb768)) - (github-actions[bot]) 562 | - Updated HISTORY.md. ([7430420](https://github.com/tj-actions/git-cliff/commit/7430420c4c2e3de5aca324a4c49e7975380ccb32)) - (github-actions[bot]) 563 | - Updated HISTORY.md. ([21c7b9f](https://github.com/tj-actions/git-cliff/commit/21c7b9f67ebc56b8ea27b860eb133ebacae87315)) - (github-actions[bot]) 564 | - Updated HISTORY.md. ([ca6239d](https://github.com/tj-actions/git-cliff/commit/ca6239d1c756e546316040865ffdd3a4a4da4aa5)) - (github-actions[bot]) 565 | - Updated HISTORY.md. ([8e75a55](https://github.com/tj-actions/git-cliff/commit/8e75a55cdabb098fb65bd464154028f8560764e7)) - (github-actions[bot]) 566 | - Updated HISTORY.md. ([7a14025](https://github.com/tj-actions/git-cliff/commit/7a14025a523a4f71bf68df1a909dc4a53e3633cf)) - (github-actions[bot]) 567 | - Updated HISTORY.md. ([24b449a](https://github.com/tj-actions/git-cliff/commit/24b449ae8ea1f70339a7614ed29f52db9037cd93)) - (github-actions[bot]) 568 | - Updated HISTORY.md. ([e69798c](https://github.com/tj-actions/git-cliff/commit/e69798c0ca2343cc9082efdb5b702fda9dbb7964)) - (github-actions[bot]) 569 | - Updated HISTORY.md. ([4dfb84c](https://github.com/tj-actions/git-cliff/commit/4dfb84c5d5a7a80ebf47e216833fdbb1d8d2db07)) - (github-actions[bot]) 570 | - Updated HISTORY.md. ([02dc203](https://github.com/tj-actions/git-cliff/commit/02dc2037e00f3eceb3b64c707985bbea5945ee5f)) - (github-actions[bot]) 571 | - Updated HISTORY.md. ([b205af4](https://github.com/tj-actions/git-cliff/commit/b205af4d23d92f38832bc5520f580ae52cf2ddb0)) - (github-actions[bot]) 572 | - Updated HISTORY.md. ([349031e](https://github.com/tj-actions/git-cliff/commit/349031e1a09dd5ea2ca8b05bf2945ee8bcf6752b)) - (github-actions[bot]) 573 | - Updated HISTORY.md. ([3faa6a2](https://github.com/tj-actions/git-cliff/commit/3faa6a2ec2a1f9207fd477d02dc5a68996932d85)) - (github-actions[bot]) 574 | - Updated HISTORY.md. ([41e7804](https://github.com/tj-actions/git-cliff/commit/41e780449b86e5fbbdf237e0764b4269ba7f5d6c)) - (github-actions[bot]) 575 | - Updated HISTORY.md. ([3cc6604](https://github.com/tj-actions/git-cliff/commit/3cc6604534eafabf3e5fdee47bce24bc237569c4)) - (github-actions[bot]) 576 | - Updated HISTORY.md. ([c5a41f5](https://github.com/tj-actions/git-cliff/commit/c5a41f553e59e944fe13ceb55ed0ed02e4658768)) - (github-actions[bot]) 577 | - Updated HISTORY.md. ([387f343](https://github.com/tj-actions/git-cliff/commit/387f34351ecc02be3b10bb325688319ef7971d4f)) - (github-actions[bot]) 578 | - Updated HISTORY.md. ([c57ca9f](https://github.com/tj-actions/git-cliff/commit/c57ca9f467fc81edc7ef1aecbf29e06e69ccd30c)) - (github-actions[bot]) 579 | - Updated HISTORY.md. ([6093a4b](https://github.com/tj-actions/git-cliff/commit/6093a4bd85ecde4f2998782d3d7b1f7ea7b7af91)) - (github-actions[bot]) 580 | - Updated HISTORY.md. ([e26d43f](https://github.com/tj-actions/git-cliff/commit/e26d43fa1edd9885cc94d3191f0200a39a3fe35a)) - (github-actions[bot]) 581 | - Updated HISTORY.md. ([1dead34](https://github.com/tj-actions/git-cliff/commit/1dead34fb0e63a2a431720b37cf0fe39bca1caa8)) - (github-actions[bot]) 582 | - Updated HISTORY.md. ([5dae472](https://github.com/tj-actions/git-cliff/commit/5dae47240368a1ee68d410f1f602bba83264aae9)) - (github-actions[bot]) 583 | - Updated HISTORY.md. ([3fec370](https://github.com/tj-actions/git-cliff/commit/3fec3705167bfc6c85f5916b522ed12e1b8f0837)) - (github-actions[bot]) 584 | - Updated HISTORY.md. ([373698b](https://github.com/tj-actions/git-cliff/commit/373698b7e44f90be742909845a34330f46e533b1)) - (github-actions[bot]) 585 | - Updated HISTORY.md. ([11d1a1b](https://github.com/tj-actions/git-cliff/commit/11d1a1b61c71e461648b0a02c0fc0f1c1cdce217)) - (github-actions[bot]) 586 | - Updated HISTORY.md. ([358fa21](https://github.com/tj-actions/git-cliff/commit/358fa212365f9662502301c0d07640d3947f9d76)) - (github-actions[bot]) 587 | - Updated HISTORY.md. ([ba0593e](https://github.com/tj-actions/git-cliff/commit/ba0593ec8f20fd1b1883fb363e3bceb041c60c66)) - (github-actions[bot]) 588 | - Updated HISTORY.md. ([0b9720e](https://github.com/tj-actions/git-cliff/commit/0b9720eda366d403cac24a87feaa9bfefef832d3)) - (github-actions[bot]) 589 | - Updated HISTORY.md. ([e0fe9aa](https://github.com/tj-actions/git-cliff/commit/e0fe9aa0ae4e60df8d349c8ea6a296701910f450)) - (github-actions[bot]) 590 | - Updated HISTORY.md. ([afeb920](https://github.com/tj-actions/git-cliff/commit/afeb9201fe7905ea25a94fc49b0879046ef03e35)) - (github-actions[bot]) 591 | - Updated HISTORY.md. ([1910df3](https://github.com/tj-actions/git-cliff/commit/1910df3c8a8f722b68fb254b47fe74a9b67a72c4)) - (github-actions[bot]) 592 | - Updated HISTORY.md. ([0d53329](https://github.com/tj-actions/git-cliff/commit/0d533292f8f29d49095661827e34e7af2af06dff)) - (github-actions[bot]) 593 | - Updated HISTORY.md. ([ed51a63](https://github.com/tj-actions/git-cliff/commit/ed51a636e0072960c67f267aa130c6675fd65bc8)) - (github-actions[bot]) 594 | - Updated HISTORY.md. ([b1b3611](https://github.com/tj-actions/git-cliff/commit/b1b3611657cfd6cb4b5ea709d934d80bca7d120b)) - (github-actions[bot]) 595 | - Updated HISTORY.md. ([e357ffe](https://github.com/tj-actions/git-cliff/commit/e357ffec59c9f64e77efe2c860038d459906583d)) - (github-actions[bot]) 596 | - Updated HISTORY.md. ([76cc544](https://github.com/tj-actions/git-cliff/commit/76cc5441749565e8d27bf44ed2f345d90dcb7039)) - (github-actions[bot]) 597 | - Updated HISTORY.md. ([2f6b7c9](https://github.com/tj-actions/git-cliff/commit/2f6b7c99b5a8b01a90ed6f10d1cee367768fc759)) - (github-actions[bot]) 598 | - Updated HISTORY.md. ([dc0991d](https://github.com/tj-actions/git-cliff/commit/dc0991d53e2d0fe881a59d55531cc374829afcfd)) - (github-actions[bot]) 599 | - Updated HISTORY.md. ([f16c8f2](https://github.com/tj-actions/git-cliff/commit/f16c8f2e1416a20e97d64578d218b94598464de2)) - (github-actions[bot]) 600 | - Updated HISTORY.md. ([d9c8995](https://github.com/tj-actions/git-cliff/commit/d9c899531a908b55595a99b95e872584736a5f92)) - (github-actions[bot]) 601 | - Updated HISTORY.md. ([233b71f](https://github.com/tj-actions/git-cliff/commit/233b71f226bb4c6fde65ae65e5e46a8e8160be08)) - (github-actions[bot]) 602 | - Updated HISTORY.md. ([d029c2b](https://github.com/tj-actions/git-cliff/commit/d029c2b4fc6dd2b30e56150c50f2f8593d378fd5)) - (github-actions[bot]) 603 | - Updated HISTORY.md. ([dee1c1e](https://github.com/tj-actions/git-cliff/commit/dee1c1efef4f35d51d30fd3ee131bf9390766612)) - (github-actions[bot]) 604 | - Updated HISTORY.md. ([8c7562a](https://github.com/tj-actions/git-cliff/commit/8c7562af2e48aa43f4133725d0a972ea50452b53)) - (github-actions[bot]) 605 | - Updated HISTORY.md. ([f1126a1](https://github.com/tj-actions/git-cliff/commit/f1126a1db7f8128c535eb4e0b08b2ec1ae264fc5)) - (github-actions[bot]) 606 | - Updated HISTORY.md. ([5a15c9f](https://github.com/tj-actions/git-cliff/commit/5a15c9fe4afc0f571a39ad53c9eaeb8cf7e50dbc)) - (github-actions[bot]) 607 | - Updated HISTORY.md. ([49f7b5b](https://github.com/tj-actions/git-cliff/commit/49f7b5b55a8d1dcfa26578b2d90737e24414b041)) - (github-actions[bot]) 608 | - Updated HISTORY.md. ([764fea4](https://github.com/tj-actions/git-cliff/commit/764fea42433feaf9a0a66b99dfc605795f6211e2)) - (github-actions[bot]) 609 | - Updated HISTORY.md. ([89a1e17](https://github.com/tj-actions/git-cliff/commit/89a1e170f292724585c05bcab5317bad44ad58fc)) - (github-actions[bot]) 610 | - Updated HISTORY.md. ([2806b97](https://github.com/tj-actions/git-cliff/commit/2806b979ea4518c58fd52d20ba2a59b7d59535af)) - (github-actions[bot]) 611 | - Updated HISTORY.md. ([2333fd7](https://github.com/tj-actions/git-cliff/commit/2333fd7e010790062167c1abd81d045d5a9f1d79)) - (github-actions[bot]) 612 | - Updated HISTORY.md. ([25f5b2c](https://github.com/tj-actions/git-cliff/commit/25f5b2ccdbceb9d9c8aca2f3f332fb3c9f353213)) - (github-actions[bot]) 613 | - Updated HISTORY.md. ([6dc4795](https://github.com/tj-actions/git-cliff/commit/6dc4795b6b9b61982da94ffdf731574e104f197f)) - (github-actions[bot]) 614 | - Updated HISTORY.md. ([cc00f24](https://github.com/tj-actions/git-cliff/commit/cc00f24ceac065715f2250110a0e2156a2ac43a6)) - (github-actions[bot]) 615 | - Updated HISTORY.md. ([4194061](https://github.com/tj-actions/git-cliff/commit/41940610b282baf92d70221d4e43d4e724065815)) - (github-actions[bot]) 616 | - Updated HISTORY.md. ([ad11d17](https://github.com/tj-actions/git-cliff/commit/ad11d173b7c1d893c16da8f3563aaeb57209fe73)) - (github-actions[bot]) 617 | - Updated HISTORY.md. ([9f64b4d](https://github.com/tj-actions/git-cliff/commit/9f64b4dd523267d7c7ac6b432a8a09287709900c)) - (github-actions[bot]) 618 | - Updated HISTORY.md. ([7f12a74](https://github.com/tj-actions/git-cliff/commit/7f12a749ca515989fdcb5d72f3d3ff0661989ba6)) - (github-actions[bot]) 619 | - Updated HISTORY.md. ([f8298b3](https://github.com/tj-actions/git-cliff/commit/f8298b3fd2f306acc7318af9a9ebdae9018e91cc)) - (github-actions[bot]) 620 | - Updated HISTORY.md. ([de384fb](https://github.com/tj-actions/git-cliff/commit/de384fb463bb69efbe5b3fee50774ffdbdb2559f)) - (github-actions[bot]) 621 | - Updated HISTORY.md. ([6c7f34c](https://github.com/tj-actions/git-cliff/commit/6c7f34c3176d1db4c65b6d04bedc2e675ed8cdd8)) - (github-actions[bot]) 622 | - Updated HISTORY.md. ([ed91334](https://github.com/tj-actions/git-cliff/commit/ed913348e1254a56c7636ff8dff4e3aea1acd69b)) - (github-actions[bot]) 623 | - Updated HISTORY.md. ([86a68fe](https://github.com/tj-actions/git-cliff/commit/86a68fe8e30e37f75aa761cd8860d21b4c346e7c)) - (github-actions[bot]) 624 | - Updated HISTORY.md. ([691f640](https://github.com/tj-actions/git-cliff/commit/691f640bc4e3dedf1b8c5fea5dd3b969dac41bb0)) - (github-actions[bot]) 625 | - Updated HISTORY.md. ([a2436d3](https://github.com/tj-actions/git-cliff/commit/a2436d31adba0e3ad95c37b0dbc6a0250c9c995e)) - (github-actions[bot]) 626 | - Updated HISTORY.md. ([ef669b4](https://github.com/tj-actions/git-cliff/commit/ef669b43560c2d5aff63e638249fc25ad14ddf82)) - (github-actions[bot]) 627 | - Updated HISTORY.md. ([433b842](https://github.com/tj-actions/git-cliff/commit/433b8426759a932ecf3d2f90284a7083d6ef61f1)) - (github-actions[bot]) 628 | - Updated HISTORY.md. ([aae9a1b](https://github.com/tj-actions/git-cliff/commit/aae9a1bfb55ae20b3d31472b549968eb1ea2de3f)) - (github-actions[bot]) 629 | - Updated HISTORY.md. ([e826a59](https://github.com/tj-actions/git-cliff/commit/e826a596a27c4098c2ff503f2280650f192e8ed0)) - (github-actions[bot]) 630 | - Updated HISTORY.md. ([1358270](https://github.com/tj-actions/git-cliff/commit/13582705d58059b37be5da9062e5c788b83e5ce4)) - (github-actions[bot]) 631 | - Updated HISTORY.md. ([c1cd6ac](https://github.com/tj-actions/git-cliff/commit/c1cd6ac4eb58ec878782f37d4097c8864dc6ae78)) - (github-actions[bot]) 632 | - Updated HISTORY.md. ([413aa80](https://github.com/tj-actions/git-cliff/commit/413aa80b643978c7b83d8853aa37bf8de01853b5)) - (github-actions[bot]) 633 | - Updated HISTORY.md. ([6aab456](https://github.com/tj-actions/git-cliff/commit/6aab456da8b8db401287cb015c98172ab64d810c)) - (github-actions[bot]) 634 | - Updated HISTORY.md. ([bad671c](https://github.com/tj-actions/git-cliff/commit/bad671c59eb6f8695bf91e531bd297c99642edd9)) - (github-actions[bot]) 635 | - Updated HISTORY.md. ([10b6c3b](https://github.com/tj-actions/git-cliff/commit/10b6c3b7dec5e1ad966eac5103f0bab1e2666cb7)) - (github-actions[bot]) 636 | - Updated HISTORY.md. ([eea6cb3](https://github.com/tj-actions/git-cliff/commit/eea6cb3d727920cef975647310de0a6139ebb7ac)) - (github-actions[bot]) 637 | - Updated HISTORY.md. ([223ce7f](https://github.com/tj-actions/git-cliff/commit/223ce7fcf76362b2f725e30349a112c7818d1278)) - (github-actions[bot]) 638 | - Updated HISTORY.md. ([7a5e77e](https://github.com/tj-actions/git-cliff/commit/7a5e77ecedb27a1434c3b31fa424bb3d8171bb02)) - (github-actions[bot]) 639 | - Updated HISTORY.md. ([3bbcac9](https://github.com/tj-actions/git-cliff/commit/3bbcac9a932023b394bc6c5be3e278a290fadb11)) - (github-actions[bot]) 640 | - Updated HISTORY.md. ([4ab119f](https://github.com/tj-actions/git-cliff/commit/4ab119f2f8d3a2eea8ec0d2912db70d6c90301a0)) - (github-actions[bot]) 641 | - Updated HISTORY.md. ([c67669a](https://github.com/tj-actions/git-cliff/commit/c67669a79aa927dfb164146981229f194148630a)) - (github-actions[bot]) 642 | - Updated HISTORY.md. ([7b405e0](https://github.com/tj-actions/git-cliff/commit/7b405e064a2e0963fc0b688a8f982c1bac98a776)) - (github-actions[bot]) 643 | - Updated HISTORY.md. ([0e9a485](https://github.com/tj-actions/git-cliff/commit/0e9a4856953a662187d526d3305ab15c9455691e)) - (github-actions[bot]) 644 | - Updated HISTORY.md. ([29764ca](https://github.com/tj-actions/git-cliff/commit/29764ca86a58d5a2fb20ec72e121c9000a59510e)) - (github-actions[bot]) 645 | - Updated HISTORY.md. ([56c9f60](https://github.com/tj-actions/git-cliff/commit/56c9f6019044a0236fd599501c1f1ef9f7bf91d9)) - (github-actions[bot]) 646 | - Updated HISTORY.md. ([3de882e](https://github.com/tj-actions/git-cliff/commit/3de882e7aa5794d4df74d1b17897d44955fa4730)) - (github-actions[bot]) 647 | - Updated HISTORY.md. ([b381356](https://github.com/tj-actions/git-cliff/commit/b3813562537e8f8ae15089a4741be1cefd209d05)) - (github-actions[bot]) 648 | - Updated HISTORY.md. ([dfce5f9](https://github.com/tj-actions/git-cliff/commit/dfce5f94719970a9ec37aa1b33c757a2e1d72851)) - (github-actions[bot]) 649 | - Updated HISTORY.md. ([de39a02](https://github.com/tj-actions/git-cliff/commit/de39a02aa6a9a019a7fa2b442f35ab095727f23c)) - (github-actions[bot]) 650 | - Updated HISTORY.md. ([a3049b0](https://github.com/tj-actions/git-cliff/commit/a3049b004f90c346342cf191f61d63af8317be03)) - (github-actions[bot]) 651 | - Updated HISTORY.md. ([2ef980b](https://github.com/tj-actions/git-cliff/commit/2ef980b98b37b22e51da2e18524cfdbc85ab66aa)) - (github-actions[bot]) 652 | - Updated HISTORY.md. ([879cf83](https://github.com/tj-actions/git-cliff/commit/879cf834a31571b8e3a8c4da241f20fe37037021)) - (github-actions[bot]) 653 | - Updated HISTORY.md. ([14d6c42](https://github.com/tj-actions/git-cliff/commit/14d6c426eebff4fd51b7af100a5b005475f6f8da)) - (github-actions[bot]) 654 | - Updated HISTORY.md. ([0e61d29](https://github.com/tj-actions/git-cliff/commit/0e61d292a2099281e94449e84b2cad9e1a045ef3)) - (github-actions[bot]) 655 | - Updated HISTORY.md. ([18213d4](https://github.com/tj-actions/git-cliff/commit/18213d44d0195c9aa3f1f70bf844c7ca4693c393)) - (github-actions[bot]) 656 | - Updated HISTORY.md. ([4ba4364](https://github.com/tj-actions/git-cliff/commit/4ba4364f6a61d3db3d40b237cdb25ef48801c3e8)) - (github-actions[bot]) 657 | - Updated HISTORY.md. ([6e3cdb7](https://github.com/tj-actions/git-cliff/commit/6e3cdb75102d3a5c43b454a6747008b0ba71c0de)) - (github-actions[bot]) 658 | - Updated HISTORY.md. ([0ae993b](https://github.com/tj-actions/git-cliff/commit/0ae993be803769353a00686b4120d15de076c2f0)) - (github-actions[bot]) 659 | - Updated HISTORY.md. ([24f310d](https://github.com/tj-actions/git-cliff/commit/24f310d44e5b09764c897427ec81b035e108c813)) - (github-actions[bot]) 660 | - Updated HISTORY.md. ([8df0262](https://github.com/tj-actions/git-cliff/commit/8df02620bb0aafd7ec6ec9b01fa6a848c0c4bee1)) - (github-actions[bot]) 661 | - Updated HISTORY.md. ([0808b6d](https://github.com/tj-actions/git-cliff/commit/0808b6d767fb4d0bfecbdd53be171eae8276d7cb)) - (github-actions[bot]) 662 | - Updated HISTORY.md. ([88af291](https://github.com/tj-actions/git-cliff/commit/88af29196f20e1c8622134c140572209f61ed2ed)) - (github-actions[bot]) 663 | - Updated HISTORY.md. ([7ea01ca](https://github.com/tj-actions/git-cliff/commit/7ea01cad76d3d9e35d2f743364efcf36cc84417f)) - (github-actions[bot]) 664 | - Updated HISTORY.md. ([c2f5dcf](https://github.com/tj-actions/git-cliff/commit/c2f5dcffe3717a6f42a245fc923703823f134a68)) - (github-actions[bot]) 665 | - Updated HISTORY.md. ([46d8934](https://github.com/tj-actions/git-cliff/commit/46d89347223171d9c6507bf656c3a5f9b6d018ad)) - (github-actions[bot]) 666 | - Updated HISTORY.md. ([a50dcc9](https://github.com/tj-actions/git-cliff/commit/a50dcc9ea955cde07088a8b79c61821476207660)) - (github-actions[bot]) 667 | - Updated HISTORY.md. ([ea2a889](https://github.com/tj-actions/git-cliff/commit/ea2a88987d76052661aa6e981e2b1b69a3c161c5)) - (github-actions[bot]) 668 | - Updated HISTORY.md. ([e965b18](https://github.com/tj-actions/git-cliff/commit/e965b181a8d1a37d0da3a4c059f502b922efe26a)) - (github-actions[bot]) 669 | - Updated HISTORY.md. ([cb45468](https://github.com/tj-actions/git-cliff/commit/cb45468178ed84b5dbe120e6e883ccc7218c2e53)) - (github-actions[bot]) 670 | - Updated HISTORY.md. ([951a79f](https://github.com/tj-actions/git-cliff/commit/951a79fb1ac54a1d25e8624295103e2c99e52f8c)) - (github-actions[bot]) 671 | - Updated HISTORY.md. ([cf44ec9](https://github.com/tj-actions/git-cliff/commit/cf44ec99420cb0df906ba4fb6e42b6c61a140a6f)) - (github-actions[bot]) 672 | - Updated HISTORY.md. ([45f213b](https://github.com/tj-actions/git-cliff/commit/45f213b8cf7acd239419166683afcfbc20454e45)) - (github-actions[bot]) 673 | - Updated HISTORY.md. ([2bfdf8b](https://github.com/tj-actions/git-cliff/commit/2bfdf8b707d131048636a916b4fb06784ef4e6b8)) - (github-actions[bot]) 674 | - Updated HISTORY.md. ([15ff7a2](https://github.com/tj-actions/git-cliff/commit/15ff7a22cea28fd8c24ada38fffeb8cc0ebe3060)) - (github-actions[bot]) 675 | - Updated HISTORY.md. ([f0525e7](https://github.com/tj-actions/git-cliff/commit/f0525e7c387286e8452d8bb1c5414d0640eb36fb)) - (github-actions[bot]) 676 | - Updated HISTORY.md. ([ff94522](https://github.com/tj-actions/git-cliff/commit/ff94522ed131adcaad9bd4c10956580c77742bb6)) - (github-actions[bot]) 677 | - Updated HISTORY.md. ([ccc3e85](https://github.com/tj-actions/git-cliff/commit/ccc3e858c1c17ef03c6cf3b0a843ec82ae2f6b88)) - (github-actions[bot]) 678 | - Updated HISTORY.md. ([cdda2a6](https://github.com/tj-actions/git-cliff/commit/cdda2a676dc3afcf26b1de44042699ba586475c7)) - (github-actions[bot]) 679 | - Updated HISTORY.md. ([1c385ed](https://github.com/tj-actions/git-cliff/commit/1c385ed5c8dde3754872df65aaecade217868ed4)) - (github-actions[bot]) 680 | - Updated HISTORY.md. ([4fdd848](https://github.com/tj-actions/git-cliff/commit/4fdd848dbb098be03bb4b6ad6a4bddbb21baa228)) - (github-actions[bot]) 681 | - Updated HISTORY.md. ([c7391f1](https://github.com/tj-actions/git-cliff/commit/c7391f1c6e49646d0752e1395f9af8bc51da78d4)) - (github-actions[bot]) 682 | - Updated HISTORY.md. ([a20f3f7](https://github.com/tj-actions/git-cliff/commit/a20f3f722f4bd4d1585b64b6f697486df4e399aa)) - (github-actions[bot]) 683 | - Updated HISTORY.md. ([6eeeabc](https://github.com/tj-actions/git-cliff/commit/6eeeabc1d2d9731bf0da1e77326c5b32a0b16587)) - (github-actions[bot]) 684 | - Updated HISTORY.md. ([dc40793](https://github.com/tj-actions/git-cliff/commit/dc40793ba4c5574382a9528cb9131be7d96fff31)) - (github-actions[bot]) 685 | - Updated HISTORY.md. ([617860b](https://github.com/tj-actions/git-cliff/commit/617860bf056a0936b3da54805c832d7ea6cd9ce7)) - (github-actions[bot]) 686 | - Updated HISTORY.md. ([c287763](https://github.com/tj-actions/git-cliff/commit/c287763065f770c2f95a6f9490d5e25100096d3a)) - (github-actions[bot]) 687 | - Updated HISTORY.md. ([4070e61](https://github.com/tj-actions/git-cliff/commit/4070e614369c81d1994918e8bd8a150ea17fc740)) - (github-actions[bot]) 688 | - Updated HISTORY.md. ([3d1e483](https://github.com/tj-actions/git-cliff/commit/3d1e483e67d1673fbac77b7036194452104a1c94)) - (github-actions[bot]) 689 | - Updated HISTORY.md. ([42d5ec2](https://github.com/tj-actions/git-cliff/commit/42d5ec2cbc3f21d657194fb8a4502e01bbb0b408)) - (github-actions[bot]) 690 | - Updated HISTORY.md. ([b2cd7af](https://github.com/tj-actions/git-cliff/commit/b2cd7afc0b03e0def4cca64c67c01bb84ba3e275)) - (github-actions[bot]) 691 | - Updated HISTORY.md. ([b7666c2](https://github.com/tj-actions/git-cliff/commit/b7666c2b2d68d9f3d31f4ce4d9ed4d5a147d25ca)) - (github-actions[bot]) 692 | - Updated HISTORY.md. ([371b1bd](https://github.com/tj-actions/git-cliff/commit/371b1bd0a9a3271c0693e8da02c16a83b1927363)) - (github-actions[bot]) 693 | - Updated HISTORY.md. ([feaa5bd](https://github.com/tj-actions/git-cliff/commit/feaa5bddaf00b67cf1934e99071be09d941d3b37)) - (github-actions[bot]) 694 | - Updated HISTORY.md. ([84e4507](https://github.com/tj-actions/git-cliff/commit/84e4507366a4de624c2e037c1dfb125f926447b4)) - (github-actions[bot]) 695 | - Updated HISTORY.md. ([0547a96](https://github.com/tj-actions/git-cliff/commit/0547a96325ab7621baf9504d0f9afbf889b5388f)) - (github-actions[bot]) 696 | - Updated HISTORY.md. ([dd30bd6](https://github.com/tj-actions/git-cliff/commit/dd30bd661a4b4fac4e9eb4165e53fbf378964c7c)) - (github-actions[bot]) 697 | - Updated HISTORY.md. ([554bfac](https://github.com/tj-actions/git-cliff/commit/554bfacd2c29acd889e40f440c84e7c5abe2878c)) - (github-actions[bot]) 698 | - Updated HISTORY.md. ([6576584](https://github.com/tj-actions/git-cliff/commit/6576584a3e42acefced128ebfbdff0c3565e86a3)) - (github-actions[bot]) 699 | - Updated HISTORY.md. ([1df0a48](https://github.com/tj-actions/git-cliff/commit/1df0a48b004f059cd5672ffb89e79fab7e872590)) - (github-actions[bot]) 700 | - Updated HISTORY.md. ([af84667](https://github.com/tj-actions/git-cliff/commit/af8466712bb1102e55b4cc2afd7be089f290f09a)) - (github-actions[bot]) 701 | - Updated HISTORY.md. ([7576730](https://github.com/tj-actions/git-cliff/commit/7576730e287a9df5d540320a5d73141741f3a355)) - (github-actions[bot]) 702 | - Updated HISTORY.md. ([3285873](https://github.com/tj-actions/git-cliff/commit/3285873cb5159bf7ff74035b71d010715347899d)) - (github-actions[bot]) 703 | - Updated HISTORY.md. ([ad5f179](https://github.com/tj-actions/git-cliff/commit/ad5f179618764d429f668b0b8f2e466a9d2a26e4)) - (github-actions[bot]) 704 | - Updated HISTORY.md. ([cb0d6c1](https://github.com/tj-actions/git-cliff/commit/cb0d6c16ef40159ff5aae40c78b3ed981a8f0e38)) - (github-actions[bot]) 705 | - Updated HISTORY.md. ([2d9ed83](https://github.com/tj-actions/git-cliff/commit/2d9ed83552ea6704a633fbfaeade3a7410230e4b)) - (github-actions[bot]) 706 | - Updated HISTORY.md. ([8455569](https://github.com/tj-actions/git-cliff/commit/845556965532784652f2402c9a68749b3e406dee)) - (github-actions[bot]) 707 | - Updated HISTORY.md. ([c136a21](https://github.com/tj-actions/git-cliff/commit/c136a21b8db87f0d4d73f0c295368a57d5e20451)) - (github-actions[bot]) 708 | - Updated HISTORY.md. ([1741b97](https://github.com/tj-actions/git-cliff/commit/1741b975ee8fb63e8426dc8323b9d00638400ca2)) - (github-actions[bot]) 709 | - Updated HISTORY.md. ([7cbb923](https://github.com/tj-actions/git-cliff/commit/7cbb923631b8e3eb9706d8be869000b29fec76b8)) - (github-actions[bot]) 710 | - Updated HISTORY.md. ([918101c](https://github.com/tj-actions/git-cliff/commit/918101c2b6351fdcfdb4383a95c9bca3aff23d15)) - (github-actions[bot]) 711 | - Updated HISTORY.md. ([bd32b76](https://github.com/tj-actions/git-cliff/commit/bd32b769cb00398e3cd4a0f7a434a4d3884e4a10)) - (github-actions[bot]) 712 | - Updated HISTORY.md. ([06ffda2](https://github.com/tj-actions/git-cliff/commit/06ffda2039043324f3532bcff38b241046fd5fff)) - (github-actions[bot]) 713 | - Updated HISTORY.md. ([8f63b40](https://github.com/tj-actions/git-cliff/commit/8f63b40010016ba124a98b9704cab7c439211649)) - (github-actions[bot]) 714 | - Updated HISTORY.md. ([aa45615](https://github.com/tj-actions/git-cliff/commit/aa456151453025bc64864feee626bf35de0bc7b4)) - (github-actions[bot]) 715 | - Updated HISTORY.md. ([99be41a](https://github.com/tj-actions/git-cliff/commit/99be41ae3b10bce5c8f7bf3900595e41f561c440)) - (github-actions[bot]) 716 | - Updated HISTORY.md. ([dc42f3c](https://github.com/tj-actions/git-cliff/commit/dc42f3c4ac47520e903c4eca4dc3abd01b47c69f)) - (github-actions[bot]) 717 | - Updated HISTORY.md. ([c5e605b](https://github.com/tj-actions/git-cliff/commit/c5e605b278c817f095102f897d04292cbf9cff86)) - (github-actions[bot]) 718 | - Updated HISTORY.md. ([e692e5b](https://github.com/tj-actions/git-cliff/commit/e692e5b633a5add5743ec092c85954ac32689e41)) - (github-actions[bot]) 719 | 720 | 721 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022, Tonye Jack 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![Ubuntu](https://img.shields.io/badge/Ubuntu-E95420?style=for-the-badge\&logo=ubuntu\&logoColor=white)](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on) 2 | [![Public workflows that use this action.](https://img.shields.io/endpoint?style=for-the-badge\&url=https%3A%2F%2Fused-by.vercel.app%2Fapi%2Fgithub-actions%2Fused-by%3Faction%3Dtj-actions%2Fgit-cliff%26badge%3Dtrue)](https://github.com/search?o=desc\&q=tj-actions+git-cliff+path%3A.github%2Fworkflows+language%3AYAML\&s=\&type=Code) 3 | [![CI](https://github.com/tj-actions/git-cliff/workflows/CI/badge.svg)](https://github.com/tj-actions/git-cliff/actions?query=workflow%3ACI) 4 | [![Update release version.](https://github.com/tj-actions/git-cliff/workflows/Update%20release%20version./badge.svg)](https://github.com/tj-actions/git-cliff/actions?query=workflow%3A%22Update+release+version.%22) 5 | 6 | 7 | 8 | [![All Contributors](https://img.shields.io/badge/all_contributors-2-orange.svg?style=flat-square)](#contributors-) 9 | 10 | 11 | 12 | ## git-cliff 13 | 14 | Generate changelogs for your project with a generated cliff.toml from [`cliff-template.toml`](./cliff-template.toml) or provide a custom template. This eliminates the need to maintain multiple project cliff.toml files. 15 | 16 | ![screenzy-1682696580397](https://user-images.githubusercontent.com/17484350/235193271-13592c8a-1f3b-4606-9033-eed5d99ac8e1.png) 17 | 18 | ## Features 19 | 20 | * Generates changelogs using [git-cliff](https://github.com/orhun/git-cliff). 21 | * Utilizes a generic [`cliff-template.toml`](./cliff-template.toml) for easy configuration. 22 | * Supports custom templates via file path or URL. 23 | * Dynamically replaces values via [Github context object](https://docs.github.com/en/actions/learn-github-actions/contexts) 24 | * Falls back to project's cliff.toml if one exists 25 | 26 | ## Usage 27 | 28 | ```yaml 29 | ... 30 | runs-on: ubuntu-latest 31 | steps: 32 | - name: Checkout 33 | uses: actions/checkout@v4 34 | with: 35 | fetch-depth: 0 36 | - name: Run git-cliff 37 | uses: tj-actions/git-cliff@v1 38 | ``` 39 | 40 | ## Inputs 41 | 42 | 43 | 44 | | INPUT | TYPE | REQUIRED | DEFAULT | DESCRIPTION | 45 | |-------------------------------------------------------------------------------|--------|----------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 46 | | [args](#input_args) | string | false | `"--verbose"` | Extra args passed directly to
[git-cliff](https://github.com/orhun/git-cliff#command-line-arguments) | 47 | | [output](#input_output) | string | false | `"HISTORY.md"` | Output file | 48 | | [template-config](#input_template-config) | string | false | | Path or URL to the
template `cliff.toml` config file. See
[`cliff-template.toml`](./cliff-template.toml) for a working example.
**NOTE:** Only the `REPOSITORY_URL` is
substituted. | 49 | 50 | 51 | 52 | * Free software: [MIT license](LICENSE) 53 | 54 | If you feel generous and want to show some extra appreciation: 55 | 56 | [![Buy me a coffee][buymeacoffee-shield]][buymeacoffee] 57 | 58 | [buymeacoffee]: https://www.buymeacoffee.com/jackton1 59 | 60 | [buymeacoffee-shield]: https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png 61 | 62 | ## Credits 63 | 64 | This package was created with [Cookiecutter](https://github.com/cookiecutter/cookiecutter) using [cookiecutter-action](https://github.com/tj-actions/cookiecutter-action) 65 | 66 | * [git-cliff](https://github.com/orhun/git-cliff) 67 | * [git-cliff-action](https://github.com/orhun/git-cliff-action) 68 | 69 | ## Report Bugs 70 | 71 | Report bugs at https://github.com/tj-actions/git-cliff/issues. 72 | 73 | If you are reporting a bug, please include: 74 | 75 | * Your operating system name and version. 76 | * Any details about your workflow that might be helpful in troubleshooting. 77 | * Detailed steps to reproduce the bug. 78 | 79 | ## Contributors ✨ 80 | 81 | Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 |
Michael Kriese
Michael Kriese

💻
Raphael Boidol
Raphael Boidol

📖
97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! 105 | -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- 1 | name: Changelogs generated with git-cliff 2 | description: Generate Changelog with a customized template 3 | author: tj-actions 4 | inputs: 5 | args: 6 | description: "Extra args passed directly to [git-cliff](https://github.com/orhun/git-cliff#command-line-arguments)" 7 | required: false 8 | default: "--verbose" 9 | output: 10 | description: "Output file" 11 | required: false 12 | default: "HISTORY.md" 13 | template-config: 14 | description: "Path or URL to the template `cliff.toml` config file. See [`cliff-template.toml`](./cliff-template.toml) for a working example. **NOTE:** Only the `REPOSITORY_URL` is substituted." 15 | required: false 16 | 17 | runs: 18 | using: 'composite' 19 | steps: 20 | - run: | 21 | bash $GITHUB_ACTION_PATH/entrypoint.sh 22 | id: git-cliff 23 | shell: bash 24 | env: 25 | # INPUT_ is not available in Composite run steps 26 | # https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#example-specifying-inputs 27 | INPUT_REPOSITORY_URL: ${{ github.server_url }}/${{ github.repository }} 28 | INPUT_TEMPLATE_CONFIG: ${{ inputs.template-config }} 29 | 30 | - name: Generate a changelog 31 | uses: orhun/git-cliff-action@v4 32 | with: 33 | config: ${{ steps.git-cliff.outputs.output_path }} 34 | args: ${{ inputs.args }} 35 | env: 36 | OUTPUT: ${{ inputs.output }} 37 | 38 | - name: Cleanup 39 | shell: bash 40 | run: | 41 | bash $GITHUB_ACTION_PATH/cleanup.sh 42 | env: 43 | INPUT_OUTPUT_PATH: ${{ steps.git-cliff.outputs.output_path }} 44 | branding: 45 | icon: check-square 46 | color: white 47 | -------------------------------------------------------------------------------- /cleanup.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -euo pipefail 4 | 5 | if [[ -n "$INPUT_OUTPUT_PATH" ]]; then 6 | rm -rf "$INPUT_OUTPUT_PATH" 7 | fi 8 | -------------------------------------------------------------------------------- /cliff-template.toml: -------------------------------------------------------------------------------- 1 | [changelog] 2 | header = """ 3 | # Changelog 4 | 5 | """ 6 | body = """ 7 | {% if version %}\ 8 | # [{{ version | trim_start_matches(pat="v") }}]\ 9 | {% if previous %}\ 10 | {% if previous.version %}\ 11 | (REPOSITORY_URL/compare/{{ previous.version }}...{{ version }})\ 12 | {% else %}\ 13 | (REPOSITORY_URL/tree/{{ version }})\ 14 | {% endif %}\ 15 | {% endif %} \ 16 | - ({{ timestamp | date(format="%Y-%m-%d") }}) 17 | {% else %}\ 18 | # [unreleased] 19 | {% endif %}\ 20 | {% for group, commits in commits | group_by(attribute="group") %} 21 | ## {{ group | upper_first }} 22 | {% for commit in commits %} 23 | - {% if commit.scope %}\ 24 | **{{commit.scope}}:** \ 25 | {% endif %}\ 26 | {% if '```' in commit.message %}\ 27 | {{ commit.message | upper_first }}\n\ 28 | ([{{ commit.id | truncate(length=7, end="") }}](REPOSITORY_URL/commit/{{ commit.id }})) - ({{ commit.author.name }})\ 29 | {% else %}\ 30 | {{ commit.message | upper_first }} ([{{ commit.id | truncate(length=7, end="") }}](REPOSITORY_URL/commit/{{ commit.id }})) - ({{ commit.author.name }})\ 31 | {% endif %}\ 32 | {% if commit.breaking %}\ 33 | {% for breakingChange in commit.footers %}\ 34 | \n{% raw %} {% endraw %}- **{{ breakingChange.token }}{{ breakingChange.separator }}** {{ breakingChange.value }}\ 35 | {% endfor %}\ 36 | {% endif %}\ 37 | {% endfor %} 38 | {% endfor %}\n 39 | """ 40 | trim = true 41 | footer = """ 42 | 43 | """ 44 | 45 | [git] 46 | conventional_commits = true 47 | filter_unconventional = false 48 | protect_breaking_commits = false 49 | commit_preprocessors = [ 50 | { pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](REPOSITORY_URL/issues/${2}))"}, 51 | { pattern = "Merge pull request #([0-9]+) from [^ ]+", replace = "PR [#${1}](REPOSITORY_URL/pull/${1}):"}, 52 | ] 53 | commit_parsers = [ 54 | { message = "(?i)^feat", group = "🚀 Features"}, 55 | { message = "(?i)^fix", group = "🐛 Bug Fixes"}, 56 | { message = "(?i)^refactor", group = "🚜 Refactor"}, 57 | { message = "(?i)^doc", group = "📚 Documentation"}, 58 | { message = "(?i)^perf", group = "⚡ Performance"}, 59 | { message = "(?i)^style", group = "🎨 Styling"}, 60 | { message = "(?i)^test", group = "🧪 Testing"}, 61 | { message = "(?i)^chore", group = "⚙️ Miscellaneous Tasks"}, 62 | { body = ".*security", group = "🛡️ Security"}, 63 | { message = "(?i)^upgrade", group = "⬆️ Upgrades"}, 64 | { message = "(?i)^downgrade", group = "⬇️ Downgrades"}, 65 | { message = "(?i)^revert", group = "⏪ Reverts"}, 66 | { message = "(?i)^release", group = "🔖 Releases"}, 67 | { message = "(?i)^bump", group = "📦 Bumps"}, 68 | { message = "(?i)^initial", group = "🎉 Initial Commit"}, 69 | { message = "(?i)^init", group = "🎉 Initial Commit"}, 70 | { message = "(?i)^add", group = "➕ Add"}, 71 | { message = "(?i)^create", group = "➕ Add"}, 72 | { message = "(?i)^remove", group = "➖ Remove"}, 73 | { message = "(?i)^delete", group = "➖ Remove"}, 74 | { message = "(?i)^rename", group = "📝 Rename"}, 75 | { message = "(?i)^move", group = "📂 Move"}, 76 | { message = "(?i)^copy", group = "📋 Copy"}, 77 | { message = "(?i)^fixup", group = "🔧 Fixup"}, 78 | { message = "(?i)^wip", group = "🚧 WIP"}, 79 | { message = "(?i)^rework", group = "🔨 Rework"}, 80 | { message = "(?i)^cleanup", group = "🧹 Cleanup"}, 81 | { message = "(?i)^format", group = "🎨 Format"}, 82 | { message = "(?i)^style", group = "🎨 Format"}, 83 | { message = "(?i)^lint", group = "🎨 Format"}, 84 | { message = "(?i)^update", group = "🔄 Update"}, 85 | { message = "(?i)^pin", group = "📌 Pin"}, 86 | { message = "(?i)^unpin", group = "📍 Unpin"}, 87 | { message = "(?i)^build|ci", group = "👷 CI/CD"}, 88 | { message = ".*", group = "📝 Other"}, 89 | { message = "(?i)^merge", group = "🔀 Merges"}, 90 | ] 91 | tag_pattern = "v[0-9]*" 92 | topo_order = false 93 | sort_commits = "newest" 94 | -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -euo pipefail 4 | 5 | OUTPUT_PATH="cliff.toml" 6 | DEFAULT_TEMPLATE_CONFIG="$GITHUB_ACTION_PATH/cliff-template.toml" 7 | TEMPLATE_CONFIG=${INPUT_TEMPLATE_CONFIG:-$DEFAULT_TEMPLATE_CONFIG} 8 | 9 | if [[ ! -f "$OUTPUT_PATH" ]]; then 10 | if [[ "$TEMPLATE_CONFIG" == "http"* ]] || [[ "$TEMPLATE_CONFIG" == "https"* ]]; then 11 | curl -sSL "$TEMPLATE_CONFIG" | sed 's@REPOSITORY_URL@'"$INPUT_REPOSITORY_URL"'@g' > "$OUTPUT_PATH" 12 | else 13 | sed 's@REPOSITORY_URL@'"$INPUT_REPOSITORY_URL"'@g' "$TEMPLATE_CONFIG" > "$OUTPUT_PATH" 14 | fi 15 | 16 | echo "output_path=$OUTPUT_PATH" >> "$GITHUB_OUTPUT" 17 | fi 18 | --------------------------------------------------------------------------------