From 4f61577421224fa72d89ca8b6520b4d57aa9e275 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emrik=20=C3=96stling?= Date: Tue, 7 Oct 2025 21:58:11 +0200 Subject: [PATCH] ci: remove release please (#416) --- .github/release.yml | 20 +++++++++++++++++++ .github/workflows/conventional-label.yml | 20 +++++++++++++++++++ .github/workflows/release-please.yml | 25 ------------------------ 3 files changed, 40 insertions(+), 25 deletions(-) create mode 100644 .github/release.yml create mode 100644 .github/workflows/conventional-label.yml delete mode 100644 .github/workflows/release-please.yml diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000..8703c44 --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,20 @@ +changelog: + exclude: + authors: + - renovate[bot] + categories: + - title: Features + labels: + - feature + - title: Bug Fixes + labels: + - fix + - title: Miscellaneous Chores + labels: + - chore + - ci + - docs + - test + - title: Other Changes + labels: + - "*" diff --git a/.github/workflows/conventional-label.yml b/.github/workflows/conventional-label.yml new file mode 100644 index 0000000..1d7ee3a --- /dev/null +++ b/.github/workflows/conventional-label.yml @@ -0,0 +1,20 @@ +on: + pull_request_target: + types: [opened, edited] +name: conventional-release-labels +jobs: + label: + runs-on: ubuntu-latest + steps: + - uses: bcoe/conventional-release-labels@v1 + with: + type_labels: | + { + "feat": "Feature", + "fix": "Fix", + "breaking": "Breaking", + "chore": "Chore", + "docs": "Docs", + "test": "Test", + "ci": "CI", + } diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml deleted file mode 100644 index 1196083..0000000 --- a/.github/workflows/release-please.yml +++ /dev/null @@ -1,25 +0,0 @@ -on: - push: - branches: - - main - -permissions: - contents: write - pull-requests: write - -name: release-please - -jobs: - release-please: - runs-on: ubuntu-latest - steps: - - uses: googleapis/release-please-action@v4 - with: - # this assumes that you have created a personal access token - # (PAT) and configured it as a GitHub action secret named - # `MY_RELEASE_PLEASE_TOKEN` (this secret name is not important). - token: ${{ secrets.MY_RELEASE_PLEASE_TOKEN }} - # token: ${{ secrets.GITHUB_TOKEN }} - # this is a built-in strategy in release-please, see "Action Inputs" - # for more options - release-type: node