Update woocommerce.com email addresses to woo.com (#41245)

This commit is contained in:
Corey McKrill 2023-11-06 12:12:15 -08:00 committed by GitHub
commit 5420e84663
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 18 additions and 14 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](mailto: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,8 +45,8 @@ Cases when we capitalize:
Cases when we use lower case:
- “ecommerce” (not “eCommerce”)
- email address — info@woocommerce.com
- website URL — developer.woocommerce.com
- email address — `info@woo.com`
- website URL — `developer.woocommerce.com`
### Contractions

View File

@ -0,0 +1,4 @@
Significance: patch
Type: update
update woocommerce.com email addresses to woo.com

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: