Skip to content

Commit

Permalink
Fix the name of the workflow and the formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ingeniumed committed Feb 4, 2025
1 parent be2de98 commit a3084a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
File renamed without changes.
7 changes: 2 additions & 5 deletions .github/workflows/scripts/generate-playground-blueprint.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,7 @@ async function run( { github, context, core, artifactUrl } ) {
issue_number: context.issue.number,
};

const comments = ( await github.rest.issues.listComments( commentInfo ) )
.data;
const comments = ( await github.rest.issues.listComments( commentInfo ) ).data;
let existingCommentId = null;

for ( const currentComment of comments ) {
Expand All @@ -77,9 +76,7 @@ async function run( { github, context, core, artifactUrl } ) {

const defaultSchema = generateWordpressPlaygroundBlueprint( context.issue.number, artifactUrl );

const url = `https://playground.wordpress.net/#${ JSON.stringify(
defaultSchema
) }`;
const url = `https://playground.wordpress.net/#${ JSON.stringify( defaultSchema ) }`;

const body = `
## Test using WordPress Playground
Expand Down

0 comments on commit a3084a3

Please sign in to comment.