We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5908f7a commit 2cb2c6fCopy full SHA for 2cb2c6f
1 file changed
.github/workflows/pr-storybook-deploy.yml
@@ -32,7 +32,7 @@ jobs:
32
github.event.pull_request.head.repo.full_name == github.repository &&
33
(
34
(github.event.action == 'labeled' && github.event.label.name == 'storybook') ||
35
- (github.event.action != 'labeled' && contains(github.event.pull_request.labels.*.name, 'storybook'))
+ (github.event.action != 'labeled' && github.event.action != 'closed' && contains(github.event.pull_request.labels.*.name, 'storybook'))
36
)
37
environment:
38
name: storybook
@@ -113,3 +113,4 @@ jobs:
113
umbrella-dir: preview
114
comment: false
115
token: ${{ github.token }}
116
+ wait-for-pages-deployment: true
0 commit comments