woodpecker_mailer/README.md

23 lines
485 B
Markdown
Raw Permalink Normal View History

2023-05-13 15:20:28 +01:00
# woodpecker_mailer
2023-05-13 18:16:33 +01:00
A mailer plugin for the Woodpecker CI.
Example configuration:
```yaml
pipeline:
Mail:
image: lxsameer/woodpecker_mailer:4
settings:
from: ci@serene-lang.org
user:
from_secret: mail_user
password:
from_secret: mail_pass
to: ${CI_COMMIT_AUTHOR_EMAIL}
subject: "[${CI_REPO}] JOB #${CI_BUILD_NUMBER} - ${CI_PREV_STEP_STATUS}"
text: |
BUILD: ${CI_BUILD_LINK}
COMMIT: ${CI_COMMIT_LINK}
```