Local Selfstreams with Docker Compose #296
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - ready_for_review | |
| jobs: | |
| send-message: | |
| runs-on: ubuntu-latest | |
| name: Send message via Matrix | |
| if: ${{ !github.event.pull_request.draft && !(startsWith(github.event.sender.login, 'dependabot') || startsWith(github.event.sender.login, 'renovate')) }} | |
| steps: | |
| - name: Send message to test channel | |
| id: matrix-chat-message | |
| uses: fadenb/matrix-chat-message@89baab2b9ea06ffdd5f5b1ca80e9f888c3d7c9d3 # v0.0.6 | |
| with: | |
| homeserver: 'matrix.org' | |
| token: ${{ secrets.MATRIX_TOKEN }} | |
| channel: '!AmOaMEEQgUOTWHlhnA:in.tum.de' | |
| message: | | |
| 🫳🎁 Pull request ready for review by ${{ github.event.sender.login }}: | |
| ## ${{ github.event.pull_request.title }} | |
| Please leave your review here: https://github.com/TUM-Dev/gocast/pull/${{ github.event.number }} |