From 2d471ba442c143b163c02dae9b766786732c436e Mon Sep 17 00:00:00 2001 From: Mathieu Veber Date: Thu, 5 Dec 2024 11:49:35 +0100 Subject: [PATCH 1/2] feat(release-please): List all changes made to a repo in the release notes As a consequence, all changes regardless of their importance will be releasable --- .github/workflows/release-please.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 4c0f6cc..0c86c95 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -59,7 +59,7 @@ jobs: release-type: node token: ${{ secrets.HEDIA_BOT_GITHUB_PAT }} default-branch: ${{ github.ref_name }} - changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"refactor","section":"Refactor","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"deps","section":"Dependencies","hidden":false}]' + changelog-types: '[{"type":"feat","section":"New Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"revert","section":"Reverted Changes","hidden":false},{"type":"perf","section":"Performance Improvements","hidden":false},{"type":"refactor","section":"Code Refactoring","hidden":false},{"type":"build","section":"Build Process","hidden":false},{"type":"ci","section":"CI/CD","hidden":false},{"type":"test","section":"Testing","hidden":false},{"type":"chore","section":"Chores","hidden":false},{"type":"deps","section":"Dependencies Update","hidden":false},{"type":"docs","section":"Documentation Updates","hidden":false},{"type":"style","section":"Pleasing Robots","hidden":false}]' outputs: release_created: ${{ steps.release-please.outputs.release_created }} From 8018cbb65681294d44310a5c33ace38040860796 Mon Sep 17 00:00:00 2001 From: Mathieu Veber Date: Thu, 5 Dec 2024 13:21:46 +0100 Subject: [PATCH 2/2] fix(release-please): rename style section --- .github/workflows/release-please.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 0c86c95..2f13d81 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -59,7 +59,7 @@ jobs: release-type: node token: ${{ secrets.HEDIA_BOT_GITHUB_PAT }} default-branch: ${{ github.ref_name }} - changelog-types: '[{"type":"feat","section":"New Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"revert","section":"Reverted Changes","hidden":false},{"type":"perf","section":"Performance Improvements","hidden":false},{"type":"refactor","section":"Code Refactoring","hidden":false},{"type":"build","section":"Build Process","hidden":false},{"type":"ci","section":"CI/CD","hidden":false},{"type":"test","section":"Testing","hidden":false},{"type":"chore","section":"Chores","hidden":false},{"type":"deps","section":"Dependencies Update","hidden":false},{"type":"docs","section":"Documentation Updates","hidden":false},{"type":"style","section":"Pleasing Robots","hidden":false}]' + changelog-types: '[{"type":"feat","section":"New Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"revert","section":"Reverted Changes","hidden":false},{"type":"perf","section":"Performance Improvements","hidden":false},{"type":"refactor","section":"Code Refactoring","hidden":false},{"type":"build","section":"Build Process","hidden":false},{"type":"ci","section":"CI/CD","hidden":false},{"type":"test","section":"Testing","hidden":false},{"type":"chore","section":"Chores","hidden":false},{"type":"deps","section":"Dependencies Update","hidden":false},{"type":"docs","section":"Documentation Updates","hidden":false},{"type":"style","section":"Code Formatting","hidden":false}]' outputs: release_created: ${{ steps.release-please.outputs.release_created }}