Skip to content

Commit 5e4f579

Browse files
committed
Merge branch 'wp-org'
2 parents 4d56d4e + 3c1fb7b commit 5e4f579

18 files changed

Lines changed: 1649 additions & 69 deletions

.distignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.distignore
2+
.github
3+
.git
4+
.gitignore
5+
CHANGELOG.md
6+
composer.json
7+
LICENSE.md
8+
README.md

.github/CONTRIBUTING.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
Thanks for contributing !
2+
3+
# Getting Started
4+
5+
* Make sure you have a [GitHub account](https://github.com/signup/free).
6+
* Check if your issue has already been discussed (or even fixed) earlier. You can [search for existing issues](../../../issues?q=is%3Aissue).
7+
* Assuming it does not already exist, [create a new issue](../../../issues/new).
8+
* Clearly describe the issue. In case you want to report a bug, include steps to reproduce it.
9+
* Make sure you fill in the requested details to provide as much information as possible.
10+
* Fork the repository on GitHub.
11+
12+
# Making Changes
13+
14+
* Create a topic branch from where you want to base your work.
15+
* This is usually the `master` branch.
16+
* Only target release branches if you are certain your fix must be on that branch.
17+
* To quickly create a topic branch based on the `master` branch:
18+
* `git checkout -b issue/{issue-number} master`
19+
* a good example is `issue/7`
20+
* Make commits of logical units and that messages are helpful.
21+
22+
# Submitting Changes
23+
24+
* Push your changes to the according topic branch in your fork of the repository.
25+
* [Create a pull request](../../../compare) to our repository.
26+
* Wait for feedback. The team looks at pull requests on a regular basis.
27+
28+
# License
29+
30+
By contributing code, you grant its use under the [GPLv3 or Later license](../LICENSE.md).

.github/ISSUE_TEMPLATE.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!--
2+
Thanks for contributing !
3+
4+
Please note:
5+
- These comments won't show up when you submit your issue.
6+
- Please choose a descriptive title, ex. : "On media delete, it's still indexed".
7+
- Try to provide as many details as possible on the below list.
8+
- If requesting a new feature, please explain why you'd like to see it added.
9+
-->
10+
11+
#### Version information
12+
13+
* Plugin version :
14+
* PHP :
15+
* WordPress :
16+
17+
#### Steps to reproduce
18+
19+
1.
20+
2.
21+
3.
22+
23+
#### What was expected
24+
25+
26+
#### What happened instead

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!--
2+
Thanks for contributing !
3+
4+
Please note :
5+
- These comments won't show up when you submit the pull request.
6+
- Please make sure your changes respect the [WordPress Coding Standards](https://make.wordpress.org/core/handbook/best-practices/coding-standards).
7+
- In case you introduced a new action or filter hook, please also include [inline documentation](https://make.wordpress.org/core/handbook/best-practices/inline-documentation-standards/php).
8+
- Please provide tests, if you can.
9+
-->
10+
11+
This pull request fixes issue #{id}.
12+
13+
It will apply the following changes :
14+
15+
*
16+
*
17+
*

.wordpress.org/banner-1544x500.png

325 KB
Loading

.wordpress.org/banner-772x250.png

289 KB
Loading

.wordpress.org/banner-github.png

80.4 KB
Loading

.wordpress.org/icon-128x128.png

47.2 KB
Loading

.wordpress.org/icon-256x256.png

47.2 KB
Loading

0 commit comments

Comments
 (0)