From bb0fdefab3e0a51935391d87d3009efe14005cc5 Mon Sep 17 00:00:00 2001 From: Julian Skinner Date: Thu, 3 Oct 2024 09:48:58 -0500 Subject: [PATCH] ci: remove release-please --- .github/workflows/release-please.yml | 43 ---------------------------- 1 file changed, 43 deletions(-) delete mode 100644 .github/workflows/release-please.yml diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml deleted file mode 100644 index bfae931d2f..0000000000 --- a/.github/workflows/release-please.yml +++ /dev/null @@ -1,43 +0,0 @@ -# Disabling until work through missing steps -# 1. Updating Docs -# a. lib/sage_rails/lib/sage_rails/version.rb -# b. package.json -# 2. Updating "dependency" packages -# a. sage-react: "@kajabi/sage-assets" -# b. docs: "@kajabi/sage-packs" -# c. packs: "@kajabi/sage-assets", "@kajabi/sage-react", "@kajabi/sage-system" -name: release-please - -on: - workflow_dispatch: - -permissions: - contents: write - pull-requests: write - -jobs: - release-please: - runs-on: ubuntu-latest - outputs: - paths_released: ${{ steps.manifest-release.outputs.paths_released }} - steps: - - uses: google-github-actions/release-please-action@v3 - id: manifest-release - with: - command: manifest - monorepo-tags: true - default-branch: develop - changelog-types: '[{"type":"feat","section":"🚀 Features","hidden":false},{"type":"fix","section":"🐛 Bug Fixes","hidden":false},{"type":"docs", "section": "📝 Documentation Updates","hidden":false}]' - - - name: Show output from Release-Please - if: ${{ steps.manifest-release.outputs.release_created }} - run: | - echo "releases_created: ${{ steps.manifest-release.outputs.releases_created }}" - echo "upload_url: ${{ steps.manifest-release.outputs.upload_url }}" - echo "html_url: ${{ steps.manifest-release.outputs.html_url }}" - echo "tag_name: ${{ steps.manifest-release.outputs.tag_name }}" - echo "major: ${{ steps.manifest-release.outputs.major }}" - echo "minor: ${{ steps.manifest-release.outputs.minor }}" - echo "patch: ${{ steps.manifest-release.outputs.patch }}" - echo "sha: ${{ steps.manifest-release.outputs.sha }}" - echo "pr: ${{ steps.manifest-release.outputs.pr }}"