We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c88fce1 commit dbbdc28Copy full SHA for dbbdc28
.github/workflows/ci.yml
@@ -94,12 +94,15 @@ jobs:
94
# - and either
95
# - this is not a PR (so it's some other event that happened in our fork, like a push or merge group)
96
# - or it's a PR from our fork (not some other fork)
97
+ # - and
98
+ # - it's not a Renovate branch (just to reduce noise)
99
if: ${{
100
(needs.build.outputs.any-workspace == 'true') &&
101
(
102
(!github.event.pull_request) ||
103
(github.event.pull_request.head.repo.full_name == github.repository)
- )
104
+ ) &&
105
+ (!startsWith(github.ref_name, 'renovate/'))
106
}}
107
name: Publish preview playgrounds to GitHub Pages
108
steps:
0 commit comments