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 6cc08bb commit 77911beCopy full SHA for 77911be
.github/workflows/continuous-testing.yml
@@ -3,6 +3,8 @@ on:
3
push:
4
branches: ['**']
5
tags: ["v[0-9]+.[0-9]+.[0-9]+*"]
6
+ pull_request:
7
+ branches: ['**']
8
9
10
jobs:
@@ -92,6 +94,7 @@ jobs:
92
94
# Continuous deploy
93
95
# -----------------
96
97
+ # Does not trigger for Pull Request to to the github.ref matching refs/pull/**
98
deploy-latest-doc:
99
if: ${{ github.ref == 'refs/heads/master' }}
100
needs: all-tests
@@ -123,6 +126,7 @@ jobs:
123
126
# Release deploy
124
127
# --------------
125
128
129
130
test-version:
131
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
132
0 commit comments