Support VirtiofsMounts #452
This file contains 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: [push] | |
jobs: | |
send-message: | |
runs-on: ubuntu-latest | |
name: Notify room about push | |
env: | |
separator: ' | |
* ' | |
steps: | |
- name: Send message to Carthage Room | |
id: matrix-chat-message | |
uses: fadenb/[email protected] | |
with: | |
homeserver: 'matrix.hadronindustries.com' | |
token: ${{ secrets.MATRIX_TOKEN }} | |
channel: '!pRocQwztEahrdeuXTK:matrix.org' | |
message: | | |
${{github.actor}} pushed to ${{github.repository}} [${{github.ref_name}}](https://github.com/${{github.repository}}/tree/${{github.ref_name}}): [${{github.sha}}](${{github.event.compare}}) | |
* ${{join(github.event.commits.*.message, env.separator)}} | |