Skip to content

Commit ec9300a

Browse files
committed
October 18th, 2025 Update
1 parent d125771 commit ec9300a

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/update_pr_branch.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ jobs:
2424
uses: actions/checkout@v3
2525
with:
2626
persist-credentials: false
27-
2827
fetch-depth: 0
29-
3028
ref: ${{ env.SOURCE_BRANCH }}
3129

3230
- name: Find "Compile FrogPilot" Commit in ${{ env.SOURCE_BRANCH }}
@@ -63,6 +61,11 @@ jobs:
6361
6462
- name: Commit and Push to ${{ env.TARGET_BRANCH }}
6563
run: |
64+
if git diff --staged --quiet; then
65+
echo "Working tree is clean. No changes to commit."
66+
exit 0
67+
fi
68+
6669
TZ_VALUE="America/Phoenix"
6770
day=$(TZ="$TZ_VALUE" date +"%-d")
6871
month=$(TZ="$TZ_VALUE" date +"%B")

frogpilot/common/frogpilot_variables.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ def update_frogpilot_toggles():
286286
("NavSettingLeftSide", "0", 0, "0"),
287287
("NavSettingTime24h", "0", 0, "0"),
288288
("NewLongAPI", "1", 3, "1"),
289-
("NNFF", "0", 2, "0"),
289+
("NNFF", "1", 2, "0"),
290290
("NNFFLite", "0", 2, "0"),
291291
("NoLogging", "0", 2, "0"),
292292
("NoUploads", "0", 2, "0"),

0 commit comments

Comments
 (0)