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
543 B
21 lines
543 B
3 years ago
|
name: Commit Notification
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ develop ]
|
||
|
|
||
|
jobs:
|
||
|
|
||
|
release:
|
||
|
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
|
||
|
- name: Send Discord Release Notification
|
||
|
uses: meisnate12/discord-notifications@master
|
||
|
with:
|
||
|
webhook_id: ${{ secrets.BUILD_WEBHOOK_ID }}
|
||
|
webhook_token: ${{ secrets.BUILD_WEBHOOK_TOKEN }}
|
||
|
title: Plex Meta Manager Develop Commit
|
||
|
username: PMM Develop
|
||
|
avatar_url: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager/master/.github/pmm.png
|