Skip to content

Commit d3fc16a

Browse files
committed
update to retrigger the workflow
1 parent 9da93c4 commit d3fc16a

File tree

2 files changed

+18
-12
lines changed

2 files changed

+18
-12
lines changed

.github/workflows/pr-playground-preview.yml

Lines changed: 17 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,11 @@ on:
99
- edited
1010

1111
jobs:
12-
playground-preview:
13-
name: Update Playground Preview
12+
create-blueprint:
13+
name: Create Blueprint
1414
runs-on: ubuntu-latest
15-
permissions:
16-
contents: read
17-
pull-requests: write
18-
issues: write
15+
outputs:
16+
blueprint: ${{ steps.blueprint.outputs.result }}
1917
steps:
2018
- name: Create Blueprint
2119
id: blueprint
@@ -37,10 +35,17 @@ jobs:
3735
};
3836
return JSON.stringify(blueprint);
3937
result-encoding: string
40-
- name: Playground Preview Button
41-
uses: adamziel/playground-preview/.github/workflows/playground-preview.yml@trunk
42-
with:
43-
preview-mode: "description"
44-
# plugin-path: /
45-
blueprint: ${{ steps.blueprint.outputs.result }}
38+
39+
playground-preview:
40+
name: Update Playground Preview
41+
needs: create-blueprint
42+
permissions:
43+
contents: read
44+
pull-requests: write
45+
issues: write
46+
uses: adamziel/playground-preview/.github/workflows/playground-preview.yml@trunk
47+
with:
48+
preview-mode: "description"
49+
# plugin-path: /
50+
blueprint: ${{ needs.create-blueprint.outputs.blueprint }}
4651

plugin.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@
1515
/**/
1616
/**/
1717
/**/
18+
/**/

0 commit comments

Comments
 (0)