-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
283 changed files
with
34,356 additions
and
17,028 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Directories to ignore | ||
/.git | ||
/.github | ||
/.wordpress-org | ||
/node_modules | ||
/tests | ||
/vendor | ||
|
||
# Files to ignore | ||
/.* | ||
/CHANGELOG.md | ||
/CODE_OF_CONDUCT.md | ||
/composer.json | ||
/composer.lock | ||
/CONTRIBUTING.md | ||
/CREDITS.md | ||
/LICENSE.md | ||
/package-lock.json | ||
/package.json | ||
/phpcs-compat.xml | ||
/phpcs.xml | ||
/README.md | ||
/SECURITY.md | ||
/stylelint.config.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
indent_style = tab | ||
|
||
[{*.json,*.yml,.babelrc,.bowerrc,.browserslistrc,.postcssrc}] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.txt,wp-config-sample.php] | ||
end_of_line = crlf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
tests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module.exports = { | ||
extends: ['@10up/eslint-config/wordpress'], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/.github export-ignore | ||
/.wordpress-org export-ignore | ||
/node_modules export-ignore | ||
/tests export-ignore | ||
/vendor export-ignore | ||
|
||
/.* export-ignore | ||
/CHANGELOG.md export-ignore | ||
/CODE_OF_CONDUCT.md export-ignore | ||
/composer.json export-ignore | ||
/composer.lock export-ignore | ||
/CONTRIBUTING.md export-ignore | ||
/CREDITS.md export-ignore | ||
/LICENSE.md export-ignore | ||
/package-lock.json export-ignore | ||
/package.json export-ignore | ||
/phpcs-compat.xml export-ignore | ||
/phpcs.xml export-ignore | ||
/README.md export-ignore | ||
/SECURITY.md export-ignore | ||
/stylelint.config.js export-ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
name: "\U0001F41B Bug report" | ||
description: "Report a bug with this project." | ||
labels: "type:bug" | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! Please fill in as much of the template below as you can. | ||
- type: textarea | ||
attributes: | ||
label: Describe the bug | ||
description: Please write a clear and concise description of the bug, including what you expect to happen and what is currently happening. | ||
placeholder: | | ||
Feature '...' is not working properly. I expect '...' to happen, but '...' happens instead | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Steps to Reproduce | ||
description: Please write the steps needed to reproduce the bug. | ||
placeholder: | | ||
1. Go to '...' | ||
2. Click on '...' | ||
3. Scroll down to '...' | ||
4. See error | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Screenshots, screen recording, code snippet | ||
description: | | ||
If possible, please upload a screenshot or screen recording which demonstrates the bug. You can use LIEcap to create a GIF screen recording: https://www.cockos.com/licecap/ | ||
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. | ||
For small snippets paste it directly here, or you can use GitHub Gist to share multiple code files: https://gist.github.com | ||
Please ensure the shared code can be used by a developer to reproduce the issue—ideally it can be copied into a local development environment or executed in a browser console to help debug the issue | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
attributes: | ||
label: Environment information | ||
placeholder: | | ||
- Device: <!-- [e.g. MacBook] --> | ||
- OS: <!-- [e.g. MacOS 10.14.3] --> | ||
- Browser and version: <!-- [e.g. Firefox 65.0.1, Chrome 73.0.3683.75, Safari 12.0.3] --> | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
attributes: | ||
label: WordPress information | ||
placeholder: | | ||
<!-- If your WordPress version is below 5.2, then please provide your WordPress, Plugins, Themes versions here. --> | ||
<!-- If your WordPress version is 5.2 or higher, then please fill out the Site Health Info details below. --> | ||
<details><summary>Site Health info:</summary> | ||
<!-- Go to Tools > Site Health > Info tab, click "Copy site info to clipboard", and paste those details here. --> | ||
</details> | ||
validations: | ||
required: false | ||
|
||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Code of Conduct | ||
description: By submitting this issue, you agree to follow our `Code of Conduct` (see the `CODE_OF_CONDUCT.md` file in the repo). | ||
options: | ||
- label: I agree to follow this project's Code of Conduct | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: "\U0001F680 Enhancement" | ||
description: "Suggest an idea for this project." | ||
labels: "type:enhancement" | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for suggesting an idea to make things better. Please fill in as much of the template below as you can. | ||
- type: textarea | ||
attributes: | ||
label: Is your enhancement related to a problem? Please describe. | ||
description: Please describe the problem you are trying to solve. | ||
placeholder: | | ||
I use this project as a `...` and I would like `...` so that `...describe benefit...`. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Designs | ||
description: | | ||
If applicable, add mockups/screenshots/etc. to help explain your idea. | ||
Tip: You can attach images or videos by clicking this area to highlight it and then dragging files in. | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
attributes: | ||
label: Describe alternatives you've considered | ||
description: | | ||
Please describe alternative solutions or features you have considered. | ||
placeholder: | | ||
I have also considered `...describe alternative...`, however I feel that my solution described above is better because of `...reason...`. | ||
validations: | ||
required: false | ||
|
||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Code of Conduct | ||
description: By submitting this issue, you agree to follow our `Code of Conduct` (see the `CODE_OF_CONDUCT.md` file in the repo). | ||
options: | ||
- label: I agree to follow this project's Code of Conduct | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: "❓ Need help?" | ||
description: "Ask us a question, we are here to help!" | ||
labels: "type:question" | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
If you have a question that is neither a bug report nor an enhancement, then please post it here! Please fill in as much of the template below as you can. | ||
- type: textarea | ||
attributes: | ||
label: Describe your question | ||
description: A clear and concise description of what your question is. | ||
validations: | ||
required: true | ||
|
||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Code of Conduct | ||
description: By submitting this issue, you agree to follow our `Code of Conduct` (see the `CODE_OF_CONDUCT.md` file in the repo). | ||
options: | ||
- label: I agree to follow this project's Code of Conduct | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: General support request | ||
url: https://wordpress.org/support/plugin/mailchimp/ | ||
about: For general support requests, create a new topic in the WordPress.org support forum. | ||
- name: Mailchimp Help Center | ||
url: https://mailchimp.com/help/ | ||
about: Browse by topic or search by feature for 24/7 help with any stage of your business journey. | ||
- name: Contact Mailchimp | ||
url: https://mailchimp.com/contact/ | ||
about: To contact Mailchimp about a different topic, please use one of the methods listed here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<!-- | ||
Filling out this template is required. Any PR that does not include enough information to be reviewed may be closed at a maintainers' discretion. All new code requires documentation and tests to ensure against regressions. | ||
--> | ||
|
||
### Description of the Change | ||
<!-- | ||
We must be able to understand the design of your change from this description. The maintainer reviewing this PR may not have worked with this code recently, so please provide as much detail as possible. | ||
Where possible, please also include: | ||
- verification steps to ensure your change has the desired effects and has not introduced any regressions | ||
- any benefits that will be realized | ||
- any alternative implementations or possible drawbacks that you considered | ||
- screenshots or screencasts | ||
--> | ||
|
||
<!-- Enter any applicable Issue number(s) here that will be closed/resolved by this PR. --> | ||
Closes # | ||
|
||
### How to test the Change | ||
<!-- Please provide steps on how to test or validate that the change in this PR works as described. --> | ||
|
||
### Changelog Entry | ||
<!-- | ||
Please include a summary for this PR, noting whether this is something being Added / Changed / Deprecated / Removed / Fixed / or Security related. You can replace the sample entries after this comment block with the single changelog entry line for this PR. --> | ||
> Added - New feature | ||
> Changed - Existing functionality | ||
> Deprecated - Soon-to-be removed feature | ||
> Removed - Feature | ||
> Fixed - Bug fix | ||
> Security - Vulnerability | ||
### Credits | ||
<!-- Please list any and all contributors on this PR so that they can be added to this projects CREDITS.md file. --> | ||
Props @username, @username2, ... | ||
|
||
### Checklist: | ||
<!--- Go over all the following points, and put an `x` in all the boxes that apply. --> | ||
<!--- If you are unsure about any of these, please ask for clarification. We are here to help! --> | ||
- [ ] I agree to follow this project's [**Code of Conduct**](https://github.com/mailchimp/wordpress/blob/develop/CODE_OF_CONDUCT.md). | ||
- [ ] I have updated the documentation accordingly. | ||
- [ ] I have added tests to cover my change. | ||
- [ ] All new and existing tests pass. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Basic set up for three package managers | ||
# - Disables version-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: 'github-actions' | ||
directory: '/' | ||
schedule: | ||
interval: 'weekly' | ||
# Disable version updates for GitHub Actions dependencies | ||
open-pull-requests-limit: 0 | ||
labels: | ||
- "changelog: none" | ||
- "type: dependency" | ||
- "github_actions" | ||
|
||
# Maintain dependencies for npm | ||
- package-ecosystem: 'npm' | ||
directory: '/' | ||
schedule: | ||
interval: 'weekly' | ||
# Disable version updates for npm dependencies | ||
open-pull-requests-limit: 0 | ||
labels: | ||
- "changelog: none" | ||
- "type: dependency" | ||
- "javascript" | ||
|
||
# Maintain dependencies for Composer | ||
- package-ecosystem: 'composer' | ||
directory: '/' | ||
schedule: | ||
interval: 'weekly' | ||
# Disable version updates for Composer dependencies | ||
open-pull-requests-limit: 0 | ||
labels: | ||
- "changelog: none" | ||
- "type: dependencies" | ||
- "php" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: Build release zip | ||
|
||
on: | ||
workflow_dispatch: | ||
workflow_call: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
name: Build release zip | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Cache node_modules | ||
id: cache-node-modules | ||
uses: actions/cache@v4 | ||
env: | ||
cache-name: cache-node-modules | ||
with: | ||
path: node_modules | ||
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | ||
|
||
- name: Setup node version and npm cache | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: '.nvmrc' | ||
cache: 'npm' | ||
|
||
- name: Install Node dependencies | ||
if: steps.cache-node-modules.outputs.cache-hit != 'true' | ||
run: npm ci --no-optional | ||
|
||
- name: Build plugin | ||
run: | | ||
npm run build | ||
- name: Generate ZIP file | ||
uses: 10up/action-wordpress-plugin-build-zip@stable | ||
env: | ||
SLUG: mailchimp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# **What it does**: Closes issues where the original author doesn't respond to a request for information. | ||
# **Why we have it**: To remove the need for maintainers to remember to check back on issues periodically to see if contributors have responded. | ||
|
||
name: Close stale issues | ||
|
||
on: | ||
schedule: | ||
# Schedule for every day at 1:30am UTC | ||
- cron: '30 1 * * *' | ||
|
||
permissions: | ||
issues: write | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/stale@v9 | ||
with: | ||
days-before-stale: 7 | ||
days-before-close: 7 | ||
stale-issue-message: > | ||
It has been 7 days since more information was requested from you in this issue and we have not heard back. This issue is now marked as stale and will be closed in 7 days, but if you have more information to add then please comment and the issue will stay open. | ||
close-issue-message: > | ||
This issue has been automatically closed because there has been no response | ||
to our request for more information. With only the | ||
information that is currently in the issue, we don't have enough information | ||
to take action. Please reach out if you have or find the answers we need so | ||
that we can investigate further. See [this blog post on bug reports and the | ||
importance of repro steps](https://www.lee-dohm.com/2015/01/04/writing-good-bug-reports/) | ||
for more information about the kind of information that may be helpful. | ||
stale-issue-label: 'stale' | ||
close-issue-reason: 'not_planned' | ||
any-of-labels: 'reporter feedback' | ||
remove-stale-when-updated: true |
Oops, something went wrong.