Skip to content

v1.1.0 Button Support

Compare
Choose a tag to compare
@xeekworx xeekworx released this 09 Jan 22:56
· 8 commits to main since this release

Buttons can now be added to the teams card like this example:

    # ...

    - name: Send Microsoft Teams Connector Card
      uses: xeekworx/notify-msteams@v1
      with:
        webhook-url: ${{ secrets.TEAMS_WEBHOOK_URL }}
        message-title: 'New Release'
        message-body: 'A new version of our software is now available!'
        buttons: |
          Button One, http://example.com
          Button Two, http://example.com
    # ...