This file contains hidden or 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
| blueprint: | |
| name: Enbrighten 800 Series Z-Wave On/Off Paddle Switch | |
| domain: automation | |
| input: | |
| zwave_device: | |
| name: Switch | |
| selector: | |
| device: | |
| integration: zwave_js |
This file contains hidden or 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
| blueprint: | |
| name: GE 14291 / ZW4005 Switch (Z-Wave JS) v0.01 | |
| description: Create automations for the GE Switches using the Z-Wave JS integration. | |
| domain: automation | |
| input: | |
| ge_jasco: | |
| name: Switch Device | |
| description: 'List of available GE 14291 / ZW4005 switches | |
| NOTE: This device does not have Z-Wave event for Single Tap up or down' |
This file contains hidden or 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
| blueprint: | |
| name: Inovelli LZW30-SN Hue Dimmer | |
| description: >- | |
| Use an Inovelli LZW30-SN Z-Wave JS switch to control Hue lights through | |
| the philips-hue-smooth-dimmer custom integration. | |
| domain: automation | |
| input: | |
| zwave_device: | |
| name: Inovelli switch | |
| description: The Inovelli LZW30-SN device from Z-Wave JS. |
This file contains hidden or 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
| #!/usr/bin/env bash | |
| # one column for `select` | |
| COLUMNS=1 | |
| main() { | |
| local source_profile | |
| local ext_id | |
| local dest | |
| local profiles=() |
This file contains hidden or 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
| #!/usr/bin/env bash | |
| # Script to facilitate batched review of dependabot PRs | |
| # Change these values | |
| TITLE="actions/download-artifact" | |
| COMMENT="Breaking change is an error instead of warning for hash mismatch. Should not impact existing usage." | |
| gh search prs \ | |
| --state=open \ |
This file contains hidden or 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
| ORG="nextstrain" | |
| repos=$(gh api --paginate \ | |
| -H "Accept: application/vnd.github+json" \ | |
| -H "X-GitHub-Api-Version: 2022-11-28" \ | |
| "/orgs/$ORG/repos?per_page=100" \ | |
| | jq -r '.[].name') | |
| declare -A hook_repos |
This file contains hidden or 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
| import iso639 | |
| import json | |
| import langdetect | |
| import tiktoken | |
| REQUIRED_LANGUAGES = ["zh-cn"] | |
| # Minimum for required languages | |
| # Maximum for optional languages | |
| TOKENS_PER_LANGUAGE = 20 |
NewerOlder