From f39eb56abeb9ba0d29a61831308e4aae2e46c70d Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Sat, 2 Dec 2023 09:12:24 +0000 Subject: [PATCH] ci(dependabot): ignore release-please-action major updates --- .github/dependabot.yml | 4 ++++ .github/workflows/cd.yml | 1 + 2 files changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 61f54d9..8a39817 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,6 +5,10 @@ updates: include: scope prefix: ci directory: / + ignore: + # Staying on v3 for now as v4 introduced some questionable changes + - dependency-name: google-github-actions/release-please-action + update-types: ["version-update:semver-major"] open-pull-requests-limit: 20 schedule: interval: monthly diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 031a865..d53c3b3 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -22,6 +22,7 @@ jobs: steps: - name: Release Please id: release + # Staying on v3 for now as v4 introduced some questionable changes uses: google-github-actions/release-please-action@v3 with: changelog-types: '[ { "type": "feat", "section": "Features", "hidden": false }, { "type": "fix", "section": "Bug fixes", "hidden": false }, { "type": "build", "section": "Dependencies", "hidden": false }, { "type": "chore", "section": "Miscellaneous", "hidden": false }, { "type": "ci", "section": "Continuous integration", "hidden": false }, { "type": "perf", "section": "Improvements", "hidden": false }, { "type": "refactor", "section": "Improvements", "hidden": false }, { "type": "style", "section": "Miscellaneous", "hidden": false }, { "type": "docs", "section": "Documentation", "hidden": false }]'