From b68f89846b9819038b2410a865391418e1a8d2c2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Dec 2023 11:26:23 +0000 Subject: [PATCH 1/2] chore(deps): bump google-github-actions/release-please-action Bumps [google-github-actions/release-please-action](https://github.com/google-github-actions/release-please-action) from 3 to 4. - [Release notes](https://github.com/google-github-actions/release-please-action/releases) - [Changelog](https://github.com/google-github-actions/release-please-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/google-github-actions/release-please-action/compare/v3...v4) --- updated-dependencies: - dependency-name: google-github-actions/release-please-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/npm-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index f7a4819641cc..0715f67e42c2 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Release - uses: google-github-actions/release-please-action@v3 + uses: google-github-actions/release-please-action@v4 id: release with: release-type: node From 8475280396edbbea4720eb9fbf1cb57261a7bb97 Mon Sep 17 00:00:00 2001 From: Claas Augner Date: Mon, 29 Jan 2024 16:07:25 +0100 Subject: [PATCH 2/2] chore(release-please): migrate config to release-please v4 manifest file --- .github/workflows/npm-publish.yml | 8 -------- .release-please-manifest.json | 8 ++++++++ 2 files changed, 8 insertions(+), 8 deletions(-) create mode 100644 .release-please-manifest.json diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 0715f67e42c2..b1bb473fab8c 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -20,14 +20,6 @@ jobs: id: release with: release-type: node - package-name: release-please-action - changelog-types: | - [ - {"type": "feat", "section": "Features", "hidden": false}, - {"type": "fix", "section": "Bug Fixes", "hidden": false}, - {"type": "enhance", "section": "Enhancements", "hidden": false}, - {"type": "chore", "section": "Miscellaneous", "hidden": false} - ] - name: Checkout uses: actions/checkout@v4 diff --git a/.release-please-manifest.json b/.release-please-manifest.json new file mode 100644 index 000000000000..67633f37c77a --- /dev/null +++ b/.release-please-manifest.json @@ -0,0 +1,8 @@ +{ + "changelog-sections": [ + { "type": "feat", "section": "Features", "hidden": false }, + { "type": "fix", "section": "Bug Fixes", "hidden": false }, + { "type": "enhance", "section": "Enhancements", "hidden": false }, + { "type": "chore", "section": "Miscellaneous", "hidden": false } + ] +}