update woocommerce.com email addresses to woo.com

This commit is contained in:
Leif Singer 2023-11-06 14:06:54 +01:00
parent cbc3bac88c
commit 7394e8344f
8 changed files with 13 additions and 13 deletions

View File

@ -26,9 +26,9 @@ on:
env:
GIT_COMMITTER_NAME: 'WooCommerce Bot'
GIT_COMMITTER_EMAIL: 'no-reply@woocommerce.com'
GIT_COMMITTER_EMAIL: 'no-reply@woo.com'
GIT_AUTHOR_NAME: 'WooCommerce Bot'
GIT_AUTHOR_EMAIL: 'no-reply@woocommerce.com'
GIT_AUTHOR_EMAIL: 'no-reply@woo.com'
permissions: {}

View File

@ -5,9 +5,9 @@ on:
env:
GIT_COMMITTER_NAME: 'WooCommerce Bot'
GIT_COMMITTER_EMAIL: 'no-reply@woocommerce.com'
GIT_COMMITTER_EMAIL: 'no-reply@woo.com'
GIT_AUTHOR_NAME: 'WooCommerce Bot'
GIT_AUTHOR_EMAIL: 'no-reply@woocommerce.com'
GIT_AUTHOR_EMAIL: 'no-reply@woo.com'
permissions: {}

View File

@ -16,9 +16,9 @@ on:
env:
TIME_OVERRIDE: ${{ inputs.timeOverride || 'now' }}
GIT_COMMITTER_NAME: 'WooCommerce Bot'
GIT_COMMITTER_EMAIL: 'no-reply@woocommerce.com'
GIT_COMMITTER_EMAIL: 'no-reply@woo.com'
GIT_AUTHOR_NAME: 'WooCommerce Bot'
GIT_AUTHOR_EMAIL: 'no-reply@woocommerce.com'
GIT_AUTHOR_EMAIL: 'no-reply@woo.com'
permissions: {}

View File

@ -34,7 +34,7 @@ This Code of Conduct applies both within project spaces and in public spaces whe
## Enforcement
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at support@woocommerce.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at support@woo.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.

View File

@ -45,7 +45,7 @@ Cases when we capitalize:
Cases when we use lower case:
- “ecommerce” (not “eCommerce”)
- email address — info@woocommerce.com
- email address — info@woo.com
- website URL — developer.woocommerce.com
### Contractions

View File

@ -31,7 +31,7 @@
<wp:author>
<wp:author_id>1</wp:author_id>
<wp:author_login>shopmanager</wp:author_login>
<wp:author_email>info@woocommerce.com</wp:author_email>
<wp:author_email>info@woo.com</wp:author_email>
<wp:author_display_name><![CDATA[Shop Manager]]></wp:author_display_name>
<wp:author_first_name><![CDATA[]]></wp:author_first_name>
<wp:author_last_name><![CDATA[]]></wp:author_last_name>

View File

@ -145,14 +145,14 @@ class WC_Tests_Order_Item_Product extends WC_Unit_Test_Case {
$product->save();
$order = new WC_Order();
$order->set_billing_email( 'test@woocommerce.com' );
$order->set_billing_email( 'test@woo.com' );
$order->save();
$product_item = new WC_Order_Item_Product();
$product_item->set_product( $product );
$product_item->set_order_id( $order->get_id() );
$expected_regex = '/download_file=.*&order=wc_order_.*&email=test%40woocommerce.com&key=100/';
$expected_regex = '/download_file=.*&order=wc_order_.*&email=test%40woo.com&key=100/';
$this->assertMatchesRegularExpression( $expected_regex, $product_item->get_item_download_url( 100 ) );
}

View File

@ -414,9 +414,9 @@ index 71dd29b060..33e289bf86 100644
+env:
+ TIME_OVERRIDE: ${{ inputs.timeOverride }}
+ GIT_COMMITTER_NAME: 'WooCommerce Bot'
+ GIT_COMMITTER_EMAIL: 'no-reply@woocommerce.com'
+ GIT_COMMITTER_EMAIL: 'no-reply@woo.com'
+ GIT_AUTHOR_NAME: 'WooCommerce Bot'
+ GIT_AUTHOR_EMAIL: 'no-reply@woocommerce.com'
+ GIT_AUTHOR_EMAIL: 'no-reply@woo.com'
jobs:
maybe-create-next-milestone-and-release-branch: