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 93a38ae commit 018ddf4Copy full SHA for 018ddf4
.circleci/config.yml
@@ -29,6 +29,14 @@ jobs:
29
at: ~/
30
- run: bin/php-cs-fixer fix --diff --dry-run --config=.php_cs.php -vvv
31
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
+
40
workflows:
41
pull_request:
42
jobs:
@@ -47,6 +55,10 @@ workflows:
47
55
- test_php_code_style:
48
56
requires:
49
57
- build
58
+ - workflow_success:
59
+ requires:
60
+ - test_php
61
+ - test_php_code_style
50
62
51
63
nightly:
52
64
when:
0 commit comments