File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -24,12 +24,20 @@ jobs:
24
24
PR : ${{ github.event.number }}
25
25
REPO : ${{ github.event.repository.full_name }}
26
26
27
- build :
27
+ gate :
28
+ runs-on : ubuntu-latest
28
29
if : ${{ !startsWith(github.event_name, 'pull_request') || (github.event_name == 'pull_request_target' && github.event.label.name == 'trigger-browserstack') }}
30
+ steps :
31
+ - run : echo The Show Must Go On
32
+
33
+ build :
34
+ needs :
35
+ - gate
29
36
uses : ./.github/workflows/build.yml
30
37
31
38
cert :
32
- if : ${{ !startsWith(github.event_name, 'pull_request') || (github.event_name == 'pull_request_target' && github.event.label.name == 'trigger-browserstack') }}
39
+ needs :
40
+ - gate
33
41
uses : panva/.github/.github/workflows/cert-for-browserstack.yml@main
34
42
with :
35
43
subdomain : jose
41
49
needs :
42
50
- build
43
51
- cert
44
- if : ${{ !startsWith(github.event_name, 'pull_request') || (github.event_name == 'pull_request_target' && github.event.label.name == 'trigger-browserstack') }}
45
52
runs-on : ubuntu-latest
46
53
strategy :
47
54
fail-fast : false
You can’t perform that action at this time.
0 commit comments