Skip to content

Commit

Permalink
Discord Webhooks
Browse files Browse the repository at this point in the history
Separate prereleases and releases for Discord Webhooks
  • Loading branch information
donavanbecker committed Dec 28, 2023
1 parent 88b2f6c commit 25801fe
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/discord-webhooks.yml
@@ -0,0 +1,39 @@
# This is a basic workflow to help you get started with Actions

name: Discord Webhooks

# Controls when the workflow will run
on:
release:
types: [released, prereleased]

jobs:
github-releases-to-discord:
runs-on: ubuntu-latest
name: GitHub Releases to Discord
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Latest Release
if: ${{ github.event.release.prerelease == false }}
uses: SethCohen/github-releases-to-discord@v1.13.1
with:
webhook_url: ${{ secrets.DISCORD_WEBHOOK_URL_LATEST }}
color: "4726621"
username: "Homebridge"
avatar_url: "https://raw.githubusercontent.com/homebridge/branding/latest/logos/homebridge-color-round-stylized.png"
footer_title: "Homebridge"
footer_icon_url: "https://raw.githubusercontent.com/homebridge/branding/latest/logos/homebridge-color-round-stylized.png"
footer_timestamp: true

- name: Pre-Release
if: ${{ github.event.release.prerelease == true }}
uses: SethCohen/github-releases-to-discord@v1.13.1
with:
webhook_url: ${{ secrets.DISCORD_WEBHOOK_URL_BETA }}
color: "4726621"
username: "Homebridge"
avatar_url: "https://raw.githubusercontent.com/homebridge/branding/latest/logos/homebridge-color-round-stylized.png"
footer_title: "Homebridge"
footer_icon_url: "https://raw.githubusercontent.com/homebridge/branding/latest/logos/homebridge-color-round-stylized.png"
footer_timestamp: true
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -10,6 +10,7 @@ All notable changes to homebridge will be documented in this file.
- Add GitHub labeler action
- Improve `README` installation docs
- Updated dependencies
- updated Discord Webhooks so notifications are seperated for `release` and `pre-release`

## v1.7.0 (2023-11-04)

Expand Down

0 comments on commit 25801fe

Please sign in to comment.