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 @@ -26,11 +27,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/AIR-1/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: air-1
yaml-files: |
Integrations/ESPHome/AIR-1_Factory.yaml
firmware-names: "1_Factory:firmware"
Integrations/ESPHome/AIR-1_BLE.yaml
firmware-names: "1_Factory:firmware,1_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/AIR-1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ esphome:
name: "ApolloAutomation.AIR-1"
version: "${version}"

min_version: 2025.2.0
min_version: 2025.11.0
on_boot:
priority: 500
then:
Expand Down Expand Up @@ -38,8 +38,23 @@ ota:
- platform: esphome
id: ota_esphome
password: ${ota_password}
- 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/AIR-1/firmware/manifest.json

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

Expand Down
17 changes: 16 additions & 1 deletion Integrations/ESPHome/AIR-1_BLE.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ esphome:
name: "ApolloAutomation.AIR-1"
version: "${version}"

min_version: 2025.2.0
min_version: 2025.11.0
on_boot:
priority: 500
then:
Expand Down Expand Up @@ -35,6 +35,19 @@ ota:
- platform: esphome
password: ${ota_password}
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/AIR-1/firmware-ble/manifest.json

bluetooth_proxy:
active: true
Expand All @@ -43,6 +56,8 @@ esp32_ble_tracker:
active: false

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

Expand Down
17 changes: 16 additions & 1 deletion Integrations/ESPHome/AIR-1_Factory.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ esphome:
name: "ApolloAutomation.AIR-1"
version: "${version}"

min_version: 2025.2.0
min_version: 2025.11.0
on_boot:
- priority: 500
then:
Expand Down Expand Up @@ -44,11 +44,26 @@ 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/AIR-1/firmware/manifest.json

esp32_improv:
authorizer: none

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

Expand Down