瀏覽代碼

Internal (ckeditor5): Removed the release:stable-branches task. Closes #7303.

Removed "release:stable-branches" task
Marek Lewandowski 5 年之前
父節點
當前提交
5948bcff40
共有 2 個文件被更改,包括 0 次插入21 次删除
  1. 0 1
      package.json
  2. 0 20
      scripts/update-stable-branches.sh

+ 0 - 1
package.json

@@ -146,7 +146,6 @@
     "postchangelog": "node ./scripts/release/update-utils-version.js",
     "release:bump-version": "node ./scripts/release/bump-versions.js",
     "release:publish": "node ./scripts/release/publish.js",
-    "release:stable-branches": "bash ./scripts/update-stable-branches.sh",
     "switch-to-dev-dev": "sh ./scripts/switch-to-dev-dev.sh",
     "clean-up-svg-icons": "sh ./scripts/clean-up-svg-icons.sh"
   },

+ 0 - 20
scripts/update-stable-branches.sh

@@ -1,20 +0,0 @@
-#!/bin/bash
-
-# @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
-# For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
-
-set -e
-
-read -p "Are you sure? " -n 1 -r
-echo ""
-
-if [[ $REPLY =~ ^[Yy]$ ]]
-then
-	# Update the `stable` branch in the `ckeditor5` repository.
-	git checkout stable && git merge master && git checkout master
-
-	# Push the `#stable` branch.
-	git push origin stable master
-
-	echo "Success! 🎂"
-fi