-
Notifications
You must be signed in to change notification settings - Fork 148
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve plugin approval email to focus on deploying first version and following best practices. #365
Comments
Thanks for the proposal, I'm going to rephrase some parts having in mind the typical doubts the review team see from plugin authors. Congratulations! Your plugin, {plugin}, has been approved and is now ready to be live on the WordPress Plugin Directory. Here's what you need to do next:Your SVN repository for this pluginYour account ({username}) will be granted commit access to your Subversion (SVN) repository within the next hour.
Your SVN credentialsIf this is the first time you use SVN or don't have your credentials at hand, you can set up your SVN credentials in the “Account & Security” section of your WordPress.org profile. Remember:
Upload and Deploy your codeYou must use SVN to upload and update your code -- we are unable to do that for you. If you're new to SVN, or need a refresher, check out How to Use Subversion with the WordPress Plugin Directory. Once access is active, in general terms, this is what you would need to do to upload or update your plugin:
For example:
After doing this, wait for a few minutes and done, you code is live! If your code is not visible after this, please check again that you are setting up exactly the same version in the Directory optionsConfigure its appearance in the directoryMake sure your plugin makes a great first impression in the directory.
Note: It may take up to 72 hours for your plugin to fully appear in search results. Admin toolsAfter it is published, you can go to the "Advanced" section of your plugin page to:
You’re All Set!Make sure your plugin complies with the latest guidelines and is secure while it's hosted in the directory.
If you have issues or questions, please reply to this email and let us know. Enjoy! |
In creating #362, I realized that there is a lot of missed opportunity in the plugin approval email to encourage users to use best practices from day one. Many of these best practices are important because failing to follow them makes it harder for these users to adopt important security features like Release Confirmations.
This is a proposal to update the approval email more holistically and provide an easy to read almost step by step guide for users to follow.
Congratulations! Your plugin, {plugin}, has been approved and is now live on the WordPress Plugin Directory.
Here's What You Need to Do Next:
Access Your SVN Repository
Your account ({username}) will be granted commit access to your Subversion (SVN) repository within the next hour.
Upload Your Code
Once access is active, upload your code to
/trunk
using SVN.If you're new to SVN, or need a refresher, check out How to Use Subversion with the WordPress Plugin Directory.
Deploy your code
Use the
/tags
folder to deploy your code. Follow these steps:trunk
directory, which is where the development version of your plugin lives.Stable Tag
field in yourreadme.txt
to match the new version (e.g.,Stable Tag: 1.0
)./tags/
directory using the commandsvn copy trunk tags/{version}
to create versioned releases (e.g.,svn copy trunk tags/1.0
).Prepare Your Plugin Assets
Make sure your plugin makes a great first impression in the directory.
Note: It may take up to 72 hours for your plugin to fully appear in search results.
You’re All Set!
Ensure your plugin stays compliant with the latest guidelines and if reach out if you need additional support!
The text was updated successfully, but these errors were encountered: