Allow manual trigger of deployment on GitHub (#115) #1
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
name: Notify matrix room when an issue is created | |
on: {} | |
# issues: | |
# types: [opened, reopened] | |
jobs: | |
ping_matrix: | |
runs-on: ubuntu-latest | |
steps: | |
- name: send message for an issue | |
uses: s3krit/[email protected] | |
with: | |
room_id: ${{ secrets.MATRIX_ROOM_ID }} | |
access_token: ${{ secrets.MATRIX_ACCESS_TOKEN }} | |
message: '${{ github.event.issue.user.login }} has just opened an issue: [${{ github.event.issue.title }}](${{ github.event.issue.html_url }})' | |
server: 'matrix.org' |