├── .github ├── ISSUE_TEMPLATE │ ├── doc-issue-fix.md │ ├── good-first-issue--end-user--ALT-attributes.md │ ├── good-first-issue--end-user--headings.md │ ├── good-first-issue--end-user--screenshots.md │ ├── good-first-issue--end-user--videos.md │ ├── helphub-feedback-reports.md │ ├── new-doc.md │ └── new-release-enduser-issue.md └── workflows │ ├── actions-when-commented.yml │ ├── add-to-project.yml │ ├── label-when-assigned.yml │ ├── label-when-closed.yml │ ├── label-when-labeled.yml │ ├── new-issue-workflow.yml │ └── notify-team-on-label.yml ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENSE.md ├── README.md └── guides └── new-article-block-editor.md /.github/ISSUE_TEMPLATE/doc-issue-fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/Documentation-Issue-Tracker/HEAD/.github/ISSUE_TEMPLATE/doc-issue-fix.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/good-first-issue--end-user--ALT-attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/Documentation-Issue-Tracker/HEAD/.github/ISSUE_TEMPLATE/good-first-issue--end-user--ALT-attributes.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/good-first-issue--end-user--headings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/Documentation-Issue-Tracker/HEAD/.github/ISSUE_TEMPLATE/good-first-issue--end-user--headings.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/good-first-issue--end-user--screenshots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/Documentation-Issue-Tracker/HEAD/.github/ISSUE_TEMPLATE/good-first-issue--end-user--screenshots.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/good-first-issue--end-user--videos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/Documentation-Issue-Tracker/HEAD/.github/ISSUE_TEMPLATE/good-first-issue--end-user--videos.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/helphub-feedback-reports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/Documentation-Issue-Tracker/HEAD/.github/ISSUE_TEMPLATE/helphub-feedback-reports.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/Documentation-Issue-Tracker/HEAD/.github/ISSUE_TEMPLATE/new-doc.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-release-enduser-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/Documentation-Issue-Tracker/HEAD/.github/ISSUE_TEMPLATE/new-release-enduser-issue.md -------------------------------------------------------------------------------- /.github/workflows/actions-when-commented.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/Documentation-Issue-Tracker/HEAD/.github/workflows/actions-when-commented.yml -------------------------------------------------------------------------------- /.github/workflows/add-to-project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/Documentation-Issue-Tracker/HEAD/.github/workflows/add-to-project.yml -------------------------------------------------------------------------------- /.github/workflows/label-when-assigned.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/Documentation-Issue-Tracker/HEAD/.github/workflows/label-when-assigned.yml -------------------------------------------------------------------------------- /.github/workflows/label-when-closed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/Documentation-Issue-Tracker/HEAD/.github/workflows/label-when-closed.yml -------------------------------------------------------------------------------- /.github/workflows/label-when-labeled.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/Documentation-Issue-Tracker/HEAD/.github/workflows/label-when-labeled.yml -------------------------------------------------------------------------------- /.github/workflows/new-issue-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/Documentation-Issue-Tracker/HEAD/.github/workflows/new-issue-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/notify-team-on-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/Documentation-Issue-Tracker/HEAD/.github/workflows/notify-team-on-label.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/Documentation-Issue-Tracker/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/Documentation-Issue-Tracker/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/Documentation-Issue-Tracker/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/Documentation-Issue-Tracker/HEAD/README.md -------------------------------------------------------------------------------- /guides/new-article-block-editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/Documentation-Issue-Tracker/HEAD/guides/new-article-block-editor.md --------------------------------------------------------------------------------