fix: undo changes to patch (#26983)
* fix: undo changes to patch * ci: ignore empty body / head
This commit is contained in:
parent
3c525e1136
commit
8bbec42fa0
6
.github/helper/documentation.py
vendored
6
.github/helper/documentation.py
vendored
@ -32,9 +32,9 @@ if __name__ == "__main__":
|
|||||||
|
|
||||||
if response.ok:
|
if response.ok:
|
||||||
payload = response.json()
|
payload = response.json()
|
||||||
title = payload.get("title", "").lower().strip()
|
title = (payload.get("title") or "").lower().strip()
|
||||||
head_sha = payload.get("head", {}).get("sha")
|
head_sha = (payload.get("head") or {}).get("sha")
|
||||||
body = payload.get("body", "").lower()
|
body = (payload.get("body") or "").lower()
|
||||||
|
|
||||||
if (title.startswith("feat")
|
if (title.startswith("feat")
|
||||||
and head_sha
|
and head_sha
|
||||||
|
@ -4,10 +4,6 @@ import frappe
|
|||||||
|
|
||||||
def execute():
|
def execute():
|
||||||
|
|
||||||
frappe.reload_doc("erpnext_integrations", "doctype", "shopify_settings")
|
|
||||||
if not frappe.db.get_single_value("Shopify Settings", "enable_shopify"):
|
|
||||||
return
|
|
||||||
|
|
||||||
click.secho(
|
click.secho(
|
||||||
"Shopify Integration is moved to a separate app and will be removed from ERPNext in version-14.\n"
|
"Shopify Integration is moved to a separate app and will be removed from ERPNext in version-14.\n"
|
||||||
"Please install the app to continue using the integration: https://github.com/frappe/ecommerce_integrations",
|
"Please install the app to continue using the integration: https://github.com/frappe/ecommerce_integrations",
|
||||||
|
Loading…
Reference in New Issue
Block a user