19 lines
514 B
YAML
19 lines
514 B
YAML
name: Discord
|
|
|
|
on:
|
|
- workflow_dispatch
|
|
- push
|
|
|
|
jobs:
|
|
discord_commits:
|
|
runs-on: ubuntu-latest
|
|
name: discord commits
|
|
if: contains(github.event.head_commit.message, '(servers)')
|
|
|
|
steps:
|
|
- name: Discommit
|
|
uses: https://github.com/matt1432/discommit@v0.0.2
|
|
with:
|
|
discord_webhook: ${{ secrets.DISCORD_WEBHOOK }}
|
|
api_url: 'https://git.nelim.org/api/v1/repos/$OWNER/$REPO/git/commits/$REF'
|
|
title: 'New commit containing changes to server configs:'
|