This is a very basic mailer plugin for woodpecker
Go to file
Sameer Rahmani 22d1737a8d
first release
2023-05-13 18:16:33 +01:00
.gitignore Initial commit 2023-05-13 15:20:28 +01:00
Dockerfile first release 2023-05-13 18:16:33 +01:00
LICENSE Initial commit 2023-05-13 15:20:28 +01:00
Makefile first release 2023-05-13 18:16:33 +01:00
README.md first release 2023-05-13 18:16:33 +01:00
go.mod Initial commit 2023-05-13 16:09:50 +01:00
main.go first release 2023-05-13 18:16:33 +01:00

README.md

woodpecker_mailer

A mailer plugin for the Woodpecker CI.

Example configuration:

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}