Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name-template: 'Release v$NEXT_PATCH_VERSION'
tag-template: "$RESOLVED_VERSION"
change-template: "- #$NUMBER $TITLE @$AUTHOR"
sort-direction: ascending
category-template: '**$TITLE**'

categories:
- title: "🚨 Breaking changes"
Expand All @@ -25,11 +26,9 @@ include-labels:

no-changes-template: '- No changes'

# The shared build workflow appends a Full Changelog compare link to the
# release body (release-drafter cannot render 4-part version tags).
template: |
## What's Changed
**What's Changed**

$CHANGES

**Full Changelog**: https://github.com/ApolloAutomation/MSR-2/compare/$PREVIOUS_TAG...$RESOLVED_VERSION.1

Be sure to 🌟 this repository for updates!
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ jobs:
device-name: msr-2
yaml-files: |
Integrations/ESPHome/MSR-2_Factory.yaml
firmware-names: "2_Factory:firmware"
Integrations/ESPHome/MSR-2_BLE.yaml
firmware-names: "2_Factory:firmware,2_BLE:firmware-ble"
core-yaml-path: Integrations/ESPHome/Core.yaml
esphome-version: stable
# Bypass check if manually triggered with bypass option
Expand Down
17 changes: 16 additions & 1 deletion Integrations/ESPHome/MSR-2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ esphome:
name: "ApolloAutomation.MSR-2"
version: "${version}"

min_version: 2025.2.0
min_version: 2025.11.0

dashboard_import:
package_import_url: github://ApolloAutomation/MSR-2/Integrations/ESPHome/MSR-2.yaml
Expand All @@ -36,8 +36,12 @@ logger:
ota:
- platform: esphome
id: ota_default
- platform: http_request
id: ota_managed

wifi:
on_connect:
- component.update: update_http_request

power_save_mode: none

Expand All @@ -46,5 +50,16 @@ wifi:
ssid: "Apollo MSR2 Hotspot"


http_request:
verify_ssl: true

safe_mode:

update:
- platform: http_request
id: update_http_request
name: Firmware Update
source: https://apolloautomation.github.io/MSR-2/firmware/manifest.json

packages:
core: !include Core.yaml
17 changes: 16 additions & 1 deletion Integrations/ESPHome/MSR-2_BLE.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ esphome:
name: "ApolloAutomation.MSR-2_BLE"
version: "${version}"

min_version: 2025.2.0
min_version: 2025.11.0

logger:

Expand All @@ -34,18 +34,33 @@ dashboard_import:
import_full_config: false

wifi:
on_connect:
- component.update: update_http_request
ap:
ssid: "Apollo MSR2 Hotspot"

ota:
- platform: esphome
id: ota_esphome
- platform: http_request
id: ota_managed

bluetooth_proxy:
active: true
esp32_ble_tracker:
scan_parameters:
active: false

http_request:
verify_ssl: true

safe_mode:

update:
- platform: http_request
id: update_http_request
name: Firmware Update
source: https://apolloautomation.github.io/MSR-2/firmware-ble/manifest.json

packages:
core: !include Core.yaml
17 changes: 16 additions & 1 deletion Integrations/ESPHome/MSR-2_Factory.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ esphome:
name: "ApolloAutomation.MSR-2_Factory"
version: "${version}"

min_version: 2025.2.0
min_version: 2025.11.0


dashboard_import:
Expand All @@ -39,6 +39,8 @@ esp32_improv:
authorizer: none

wifi:
on_connect:
- component.update: update_http_request
ap:
ssid: "Apollo MSR2 Hotspot"

Expand All @@ -47,6 +49,19 @@ logger:
ota:
- platform: esphome
id: ota_esphome
- platform: http_request
id: ota_managed

http_request:
verify_ssl: true

safe_mode:

update:
- platform: http_request
id: update_http_request
name: Firmware Update
source: https://apolloautomation.github.io/MSR-2/firmware/manifest.json

packages:
core: !include Core.yaml
Loading