mirror of
https://github.com/maziggy/bambuddy.git
synced 2026-08-11 00:30:12 -04:00
Pushover rejects priority-2 (Emergency) messages unless they carry retry and expire. _send_pushover never sent them, so setting priority 2 always failed with Pushover's "retry and expire are required" error. Now at priority 2 we send retry/expire (default 60s/3600s, clamped to Pushover's 30-10800s range), surfaced as two provider fields shown only when priority is 2. Added PushoverConfig schema fields, i18n labels across all locales, and unit tests.
16 lines
296 B
Bash
Executable file
16 lines
296 B
Bash
Executable file
#!/bin/bash
|
|
|
|
cd /opt/claude/projects/bambuddy-website
|
|
git add .
|
|
git commit -m "Updated website"
|
|
git push
|
|
|
|
cd /opt/claude/projects/bambuddy-wiki
|
|
git add .
|
|
git commit -m "Updated Wiki"
|
|
git push
|
|
|
|
#cd /opt/claude/projects/bambuddy-sponsors-portal
|
|
#git add .
|
|
#git commit -m "Updated portal"
|
|
#git push
|