Skip to content

Commit 018ddf4

Browse files
committed
CI: Add workflow_success step
1 parent 93a38ae commit 018ddf4

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.circleci/config.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@ jobs:
2929
at: ~/
3030
- run: bin/php-cs-fixer fix --diff --dry-run --config=.php_cs.php -vvv
3131

32+
workflow_success:
33+
docker:
34+
- image: akeneo/php:7.2
35+
steps:
36+
- run:
37+
name: Success
38+
command: echo "The build has run with success! Let's merge :)"
39+
3240
workflows:
3341
pull_request:
3442
jobs:
@@ -47,6 +55,10 @@ workflows:
4755
- test_php_code_style:
4856
requires:
4957
- build
58+
- workflow_success:
59+
requires:
60+
- test_php
61+
- test_php_code_style
5062

5163
nightly:
5264
when:

0 commit comments

Comments
 (0)