We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df53ff9 commit 6689107Copy full SHA for 6689107
1 file changed
.github/workflows/pr-preview.yml
@@ -207,7 +207,14 @@ jobs:
207
uses: ruby/setup-ruby@v1
208
with:
209
ruby-version: "3.4"
210
- bundler-cache: true
+ bundler-cache: >-
211
+ ${{
212
+ contains(github.event.pull_request.labels.*.name, 'preview/watch') ||
213
+ contains(github.event.issue.labels.*.name, 'preview/watch') || (
214
+ github.event_name == 'issue_comment' &&
215
+ github.event.comment.body == '/preview watch'
216
+ )
217
+ }}
218
cache-version: pr${{ env.GITHUB_PR_NUMBER }}
219
- name: Jekyll Build
220
run: |
0 commit comments