Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
580B

  1. name: irc
  2. on: [push]
  3. jobs:
  4. notification:
  5. runs-on: ubuntu-latest
  6. name: IRC notification
  7. steps:
  8. - name: Format message
  9. id: message
  10. run: |
  11. message="${{ github.actor }} pushed $(echo '${{ github.event.commits[0].message }}' | head -n 1) ${{ github.event.commits[0].url }}"
  12. echo ::set-output name=message::"${message}"
  13. - name: IRC notification
  14. uses: Gottox/irc-message-action@v2
  15. with:
  16. channel: '#kxstudio'
  17. nickname: kxstudio-bot
  18. message: ${{ steps.message.outputs.message }}