pigeon/.woodpecker.yml
Gregory Ballantine 5fd2db4204
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Updated woodpecker config to send out email notifications
2022-03-06 23:16:54 -05:00

28 lines
582 B
YAML

pipeline:
setup:
image: composer:2.2
commands:
- composer install
- mkdir test
- touch test/results.txt
phpcs:
group: test
image: composer:2.2
commands:
- composer run-script phpcs >> test/results.txt
phpmd:
group: test
image: composer:2.2
commands:
- composer run-script phpmd >> test/results.txt
notify:
image: drillster/drone-email
host: smtp.int.metaunix.net
skip_verify: true
from: drone@ci-v1.int.metaunix.net
attachment: test/results.txt
when:
status: [ changed, failure ]