Skip to content

Commit

Permalink
Update Discord Webhook
Browse files Browse the repository at this point in the history
  • Loading branch information
donavanbecker authored and bwp91 committed Apr 27, 2024
1 parent 43c8232 commit 828711f
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 17 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/alpha-release.yml
Expand Up @@ -16,3 +16,15 @@ jobs:
pre_id: 'alpha'
secrets:
npm_auth_token: ${{ secrets.npm_token }}

github-releases-to-discord:
name: Discord Webhooks
needs: [publish]
uses: homebridge/.github/.github/workflows/discord-webhooks.yml@latest
with:
title: "Homebridge Alpha Release"
description: |
Version `v${{ needs.publish.outputs.NPM_VERSION }}`
url: "https://github.com/homebridge/homebridge/releases/tag/v${{ needs.publish.outputs.NPM_VERSION }}"
secrets:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_URL_BETA }}
12 changes: 12 additions & 0 deletions .github/workflows/beta-release.yml
Expand Up @@ -29,3 +29,15 @@ jobs:
pre_id: 'beta'
secrets:
npm_auth_token: ${{ secrets.npm_token }}

github-releases-to-discord:
name: Discord Webhooks
needs: [build_and_test,publish]
uses: homebridge/.github/.github/workflows/discord-webhooks.yml@latest
with:
title: "Homebridge Beta Release"
description: |
Version `v${{ needs.publish.outputs.NPM_VERSION }}`
url: "https://github.com/homebridge/homebridge/releases/tag/v${{ needs.publish.outputs.NPM_VERSION }}"
secrets:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_URL_BETA }}
17 changes: 0 additions & 17 deletions .github/workflows/discord-webhooks.yml

This file was deleted.

12 changes: 12 additions & 0 deletions .github/workflows/release.yml
Expand Up @@ -22,3 +22,15 @@ jobs:
uses: homebridge/.github/.github/workflows/npm-publish.yml@latest
secrets:
npm_auth_token: ${{ secrets.npm_token }}

github-releases-to-discord:
name: Discord Webhooks
needs: [build_and_test,publish]
uses: homebridge/.github/.github/workflows/discord-webhooks.yml@latest
with:
title: "Homebridge UI Release"
description: |
Version `v${{ needs.publish.outputs.NPM_VERSION }}`
url: "https://github.com/homebridge/homebridge-config-ui-x/releases/tag/v${{ needs.publish.outputs.NPM_VERSION }}"
secrets:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_URL_LATEST }}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -8,6 +8,10 @@ All notable changes to `homebridge` will be documented in this file. This projec

- shared use of `commander` between homebridge and the UI repo

### Other Changes

- Update Discord Webhook

## v1.8.0 (2024-04-20)

### Added
Expand Down

0 comments on commit 828711f

Please sign in to comment.