We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac39704 commit 07967bdCopy full SHA for 07967bd
1 file changed
.github/workflows/build.yml
@@ -1,8 +1,12 @@
1
name: Build
2
3
on:
4
+ pull_request:
5
+ branches:
6
+ - master
7
push:
- workflow_dispatch:
8
9
10
11
env:
12
PACT_BROKER_BASE_URL: https://testdemo.pactflow.io
@@ -13,6 +17,19 @@ env:
13
17
PACT_URL: https://testdemo.pactflow.io/pacts/provider/pactflow-example-provider/consumer/pactflow-example-consumer-webhookless/version/${{ github.sha }}
14
18
15
19
jobs:
20
+ complete:
21
+ name: Test completion check
22
+ if: always()
23
+
24
+ permissions:
25
+ contents: none
26
27
+ runs-on: ubuntu-slim
28
+ needs:
29
+ - Test
30
+ - Verify
31
+ - Can-I-Deploy
32
16
33
Test:
34
runs-on: ubuntu-latest
35
steps:
0 commit comments