From db97d73118315feca91e88fdab83da56dcdb6692 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Odini?= Date: Tue, 10 Dec 2024 19:29:47 +0100 Subject: [PATCH] ci: Ajoute un nouveau type 'improve' dans la config release-please (#4758) --- .../workflows/release-please-pr-title-check.yml | 17 +++++++++++++++++ .github/workflows/release-please.yml | 5 +++++ 2 files changed, 22 insertions(+) diff --git a/.github/workflows/release-please-pr-title-check.yml b/.github/workflows/release-please-pr-title-check.yml index 6d6c9ae14e..b92cdd2cac 100644 --- a/.github/workflows/release-please-pr-title-check.yml +++ b/.github/workflows/release-please-pr-title-check.yml @@ -1,3 +1,6 @@ +# https://github.com/amannn/action-semantic-pull-request +# with a custom type: improve + name: "release-please: PR title check" on: @@ -19,3 +22,17 @@ jobs: - uses: amannn/action-semantic-pull-request@v5 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + types: | + feat + improve + fix + refactor + revert + style + docs + test + chore + perf + build + ci diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 318694d37b..979f258c4e 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -1,3 +1,5 @@ +# https://github.com/googleapis/release-please-action + name: release-please on: @@ -16,12 +18,15 @@ jobs: changelog-types: | [ {"type":"feat","section":"Nouveautés","hidden":false}, + {"type":"improve","section":"Améliorations","hidden":false}, {"type":"fix","section":"Corrections (bugs, typos...)","hidden":false}, {"type":"refactor","section":"Technique","hidden":false}, + {"type":"revert","section":"Technique","hidden":false}, {"type":"style","section":"Technique","hidden":false}, {"type":"docs","section":"Technique","hidden":false}, {"type":"test","section":"Technique","hidden":false}, {"type":"chore","section":"Technique","hidden":false}, {"type":"perf","section":"Technique","hidden":false}, + {"type":"build","section":"Technique","hidden":false}, {"type":"ci","section":"Technique","hidden":false} ]