A drone.io plugin to send notifications to Matrix chat rooms from CI pipeline steps. https://hub.docker.com/r/spotlightkid/drone-matrixchat-notify
Go to file
Christopher Arndt da31628d86 feat: log level from environment is recognised case-insensitively
Signed-off-by: Christopher Arndt <chris@chrisarndt.de>
2023-07-23 18:02:03 +02:00
.dockerignore Initial commit 2023-07-22 16:22:35 +02:00
.gitignore Initial commit 2023-07-22 16:22:35 +02:00
Dockerfile Initial commit 2023-07-22 16:22:35 +02:00
LICENSE docs: add license file 2023-07-22 16:35:26 +02:00
README.md docs: minor readme word order fix 2023-07-22 22:13:59 +02:00
matrixchat-notify-config.json Initial commit 2023-07-22 16:22:35 +02:00
matrixchat-notify.py feat: log level from environment is recognised case-insensitively 2023-07-23 18:02:03 +02:00

README.md

drone-matrixchat-notify

A drone.io plugin to send notifications to Matrix chat rooms from CI pipeline steps.

Example pipeline configuration:

kind: pipeline
type: docker
name: default

steps:
- name: build
  image: alpine
  commands:
  - ./build

- name: notify
  image: spotlightkid/drone-matrixchat-notify
  settings:
    homeserver: 'https://matrix.org'
    roomid: '!xxxxxx@matrix.org'
    userid: '@drone-bot@matrix.org'
    password:
      from_secret: drone-bot-pw
    template: '${DRONE_REPO} ${DRONE_COMMIT_SHA} ${DRONE_BUILD_STATUS}'

Configuration settings

  • accesstoken

    Access token to use for authentication instead of password. Either an access token or a password is required.

  • deviceid

    Device ID to send with access token.

  • devicename

    Device name to send with access token.

  • homeserver (default: https://matrix.org)

    The Matrix homeserver URL.

  • markdown

    If set to yes, y, true or on, the message resulting from template substtution is considered to be in Markdown format and will be rendered to HTML and sent as a formatted message with org.matrix.custom.html format.

  • password

    Password to use for authenticating the user set with userid. Either a password or an access token is required.

  • roomid (required)

    ID of matrix chat room to send messages to (ID, not alias).

  • template (default: ${DRONE_BUILD_STATUS})

    The message template. Valid placeholders of the form ${PLACEHOLDER} will be substituted with the values of the matching environment variables.

    See this reference for environment variables available in drone.io CI pipelines.

  • userid (required)

    ID of user on homeserver to send message as (ID, not username).