From 0fedb7cab18e7cd052a9ae94fc5be406e55608cc Mon Sep 17 00:00:00 2001 From: Matthew Elwell Date: Fri, 5 Jun 2026 14:42:52 +0100 Subject: [PATCH] ci: remove release-please workflow Release please is now handled externally by Flagsmith/github-webhook-handler. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/platform-release-please.yml | 30 ------------------- 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/platform-release-please.yml diff --git a/.github/workflows/platform-release-please.yml b/.github/workflows/platform-release-please.yml deleted file mode 100644 index 7964e95eaf34..000000000000 --- a/.github/workflows/platform-release-please.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Platform Release Please - -on: - push: - branches: - - main - -permissions: - contents: write # for googleapis/release-please-action to create release commit - pull-requests: write # for googleapis/release-please-action to create release PR - -jobs: - release-please: - runs-on: depot-ubuntu-latest - - steps: - - uses: actions/create-github-app-token@v1 - id: app-token - with: - app-id: ${{ vars.FLAGSMITH_ENGINEERING_GH_APP_ID }} - private-key: ${{ secrets.FLAGSMITH_ENGINEERING_GH_APP_PRIVATE_KEY }} - - - uses: googleapis/release-please-action@v4 - id: release - with: - token: ${{ steps.app-token.outputs.token }} - - outputs: - release_created: ${{ steps.release.outputs.release_created }} - release_tag_name: ${{ steps.release.outputs.tag_name }}