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.
|
|
|
name: Commit Notification
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ develop ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
commit-notification:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- name: Send Discord Commit Notification
|
|
|
|
uses: meisnate12/discord-notifications@master
|
|
|
|
with:
|
|
|
|
webhook_id: ${{ secrets.DEVELOP_WEBHOOK_ID }}
|
|
|
|
webhook_token: ${{ secrets.DEVELOP_WEBHOOK_TOKEN }}
|
|
|
|
title: Plex Meta Manager Develop Push
|
|
|
|
commits: "true"
|
|
|
|
username: Metabot
|
|
|
|
avatar_url: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager/develop/.github/pmm.png
|