You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ( currentComment.user.type === 'Bot' && currentComment.body.includes( 'Test using WordPress Playground' ) ) {
46
+
commentInfo.comment_id = comment.id;
47
+
break;
48
+
}
49
+
};
50
+
51
+
// No comment was found. Create one.
52
+
commentInfo.body = `## Test using WordPress Playground
53
+
The changes in this pull request can previewed and tested using a [WordPress Playground](https://developer.wordpress.org/playground/) instance.
54
+
55
+
[WordPress Playground](https://developer.wordpress.org/playground/) is an experimental project that creates a full WordPress instance entirely within the browser.
56
+
57
+
### Some things to be aware of
58
+
- The Plugin and Theme Directories cannot be accessed within Playground.
59
+
- All changes will be lost when closing a tab with a Playground instance.
60
+
- All changes will be lost when refreshing the page.
61
+
- A fresh instance is created each time the link below is clicked.
62
+
- Every time this pull request is updated, a new ZIP file containing all changes is created. If changes are not reflected in the Playground instance,
63
+
it's possible that the most recent build failed, or has not completed. Check the [list of workflow runs to be sure](https://github.com/WordPress/wordpress-develop/actions/workflows/wordpress-playground.yml).
64
+
65
+
For more details about these limitations and more, check out the [Limitations page](https://wordpress.github.io/wordpress-playground/limitations/) in the WordPress Playground documentation.
66
+
67
+
[Test this pull request with WordPress Playground](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/adamziel/blueprints/${ branch_name }/${ blueprintFile }).
0 commit comments