Bitbucket Pull Request auto delete branch
Automatically checks the checkbox to delete the current branch after the pull request is merged on Bitbucket Cloud.
ما هو Bitbucket Pull Request auto delete branch؟
Bitbucket Pull Request auto delete branch هو إضافة Chrome تم تطويرها بواسطة hmartos، والميزة الرئيسية لها هي "Automatically checks the checkbox to delete the current branch after the pull request is merged on Bitbucket Cloud.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Bitbucket Pull Request auto delete branch
قم بتنزيل ملفات الامتداد Bitbucket Pull Request auto delete branch بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension automatically checks the checkbox to delete the source branch in a Bitbucket Pull Request after merging it into the destination branch. Developers may forget to check this checkbox when creating a Pull Request, leaving the stale merged branches in the remote. This functionality is available as a native configuration in Bitbucket Server, but it is not available in Bitbucket Cloud, so this extension solves that problem.
معلومات أساسية عن التمديد
الاسم | Bitbucket Pull Request auto delete branch |
ID | iffllgmebelmfdfiiagjgbpjhplobfem |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/bitbucket-pull-request-au/iffllgmebelmfdfiiagjgbpjhplobfem |
الوصف | Automatically checks the checkbox to delete the current branch after the pull request is merged on Bitbucket Cloud. |
حجم الملف | 12.89 KB |
عدد التثبيتات | 440 |
النسخة الحالية | 1.0.0 |
آخر تحديث | 2023-01-31 |
تاريخ النشر | 2023-01-31 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | hmartos |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/hmartos/bitbucket-pull-request-auto-delete-branch |
عنوان صفحة المساعدة | https://github.com/hmartos/bitbucket-pull-request-auto-delete-branch/issues |
اللغات المدعومة | en,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_extensionTitle__", "version": "1.0.0", "description": "__MSG_extensionDescription__", "default_locale": "en", "content_scripts": [ { "matches": [ "https:\/\/bitbucket.org\/*\/pull-requests\/new*" ], "js": [ "scripts\/content.js", "utils\/debug.js" ] } ], "icons": { "16": "images\/logo16.png", "32": "images\/logo32.png", "48": "images\/logo48.png", "128": "images\/logo128.png" } } |