DEV Community

Discussion on: Side Project Sunday! What's the latest?

Collapse
 
maymeow profile image
May Meow • Edited

I made Github action to send notification to Mattermost made with PHP. There are few of them made with Go, Javascript or Python but I wanted one made with PHP.

github.com/MayMeow/action-mattermo...
github.com/marketplace/actions/act...

- uses: MayMeow/action-mattermost-notify@main # this using main branch instead of published version
  with:
    url: ${{ secrets.MATTERMOST_WEBHOOK }} # required
    message: "Hello world from ${{ github.repository }}" # required
Enter fullscreen mode Exit fullscreen mode