forked from sokarovski/bonjour
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## v3.8.0 (2024-06-26) ### Other Changes - Update dependencies (`array-flatten`)
- Loading branch information
1 parent
030903c
commit c7ca772
Showing
16 changed files
with
848 additions
and
596 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Node-CI Alpha | ||
|
||
on: | ||
push: | ||
branches: [alpha-*.*.*, alpha] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
publish: | ||
if: ${{ github.repository == 'homebridge/bonjour' }} | ||
uses: homebridge/.github/.github/workflows/npm-publish.yml@latest | ||
with: | ||
tag: 'alpha' | ||
dynamically_adjust_version: true | ||
npm_version_command: 'pre' | ||
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/bonjour/releases/tag/v${{ needs.publish.outputs.NPM_VERSION }}" | ||
secrets: | ||
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_URL_BETA }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Node-CI Beta | ||
|
||
on: | ||
push: | ||
branches: [beta-*.*.*, beta] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build_and_test: | ||
uses: homebridge/.github/.github/workflows/nodejs-build-and-test.yml@latest | ||
with: | ||
enable_coverage: true | ||
secrets: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
lint: | ||
needs: build_and_test | ||
uses: homebridge/.github/.github/workflows/eslint.yml@latest | ||
|
||
publish: | ||
needs: lint | ||
|
||
if: ${{ github.repository == 'homebridge/bonjour' }} | ||
|
||
uses: homebridge/.github/.github/workflows/npm-publish.yml@latest | ||
with: | ||
tag: 'beta' | ||
dynamically_adjust_version: true | ||
npm_version_command: 'pre' | ||
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/bonjour/releases/tag/v${{ needs.publish.outputs.NPM_VERSION }}" | ||
secrets: | ||
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_URL_BETA }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
name: Node Build | ||
|
||
on: | ||
push: | ||
branches: [latest] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: Labeler | ||
|
||
on: | ||
pull_request_target: # required for auto labeler | ||
types: [opened, reopened, synchronize] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
stale: | ||
uses: homebridge/.github/.github/workflows/labeler.yml@latest | ||
secrets: | ||
token: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Node Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*.*.*' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build_and_test: | ||
uses: homebridge/.github/.github/workflows/nodejs-build-and-test.yml@latest | ||
with: | ||
enable_coverage: true | ||
secrets: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
publish: | ||
needs: build_and_test | ||
|
||
if: ${{ github.repository == 'homebridge/bonjour' }} | ||
|
||
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 Release" | ||
description: | | ||
Version `v${{ needs.publish.outputs.NPM_VERSION }}` | ||
url: "https://github.com/homebridge/bonjour/releases/tag/v${{ needs.publish.outputs.NPM_VERSION }}" | ||
secrets: | ||
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_URL_LATEST }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: Stale workflow | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '45 11 * * *' | ||
|
||
jobs: | ||
stale: | ||
uses: homebridge/.github/.github/workflows/stale.yml@latest | ||
secrets: | ||
token: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: Wiki Changed Discord Notifications | ||
|
||
on: | ||
gollum | ||
|
||
jobs: | ||
notify: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: 'oznu/gh-wiki-edit-discord-notification@main' | ||
with: | ||
discord-webhook-url: ${{ secrets.DISCORD_WEBHOOK_WIKI_EDIT }} | ||
ignore-collaborators: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.