https://github.com/manekinekko/hue-action
Github Action: Trigger your Philips Hue lights from your Github workflow 💡
https://github.com/manekinekko/hue-action
github-actions hue hue-lights philips-hue
Last synced: 6 months ago
JSON representation
Github Action: Trigger your Philips Hue lights from your Github workflow 💡
- Host: GitHub
- URL: https://github.com/manekinekko/hue-action
- Owner: manekinekko
- License: mit
- Created: 2020-03-06T15:55:01.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-07-12T04:41:57.000Z (over 2 years ago)
- Last Synced: 2025-04-13T02:35:46.020Z (6 months ago)
- Topics: github-actions, hue, hue-lights, philips-hue
- Language: JavaScript
- Homepage: https://www.hueaction.dev
- Size: 158 KB
- Stars: 19
- Watchers: 2
- Forks: 4
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# Hue Action
Trigger your Philips Hue lights from your Github workflows.
## Inputs
### `hueWebhook`
**Required** The webhook URL generated by https://hueaction.dev.
### `hueLightId`
**Required** The light ID to be triggered.
## Outputs
### `lightStatus`
The light updated status: True if the light has been triggered.
## Example usage
1. Go to https://hueaction.dev and authorize the app to access your Hue account.
2. Follow the instructions from https://hueaction.dev to get the `hueWebhook` URL.
**Note: The `hueWebhook` URL is private and should not be shared publicly.**3. Add this Action to your workflow:
```yml
uses: manekinekko/hue-action@v1.0
if: success()
with:
hueWebhook: ${{ secrets.HUEACTION_WEBHOOK }}
hueLightId: "5"
hueStatus: "success"
```