Skip to content
This repository has been archived by the owner on Nov 25, 2021. It is now read-only.

Latest commit

 

History

History
35 lines (30 loc) · 665 Bytes

README.md

File metadata and controls

35 lines (30 loc) · 665 Bytes

webex-teams-resource

A resource for sending messages to WebEx Teams from Concourse.

Usage

resource_types:
  - name: webex-teams
    type: registry-image
    source:
      repository: chrised/webex-teams-resource
      tag: latest
    check_every: 4h

resources:
  - name: wxt_room
    type: webex-teams
    source:
      room_id: ((my_room_id))
      access_token: ((my access_token))

jobs:
  - name: Send message
    plan:
      - put: wxt_room
        params:
          markdown: |
            Resource message<br />
            [with hyperlink](https://github.com)
            ```
            code block also
            wow
            ```