From 3231ac2707ec99986ce4e43d9841797e4aad7509 Mon Sep 17 00:00:00 2001 From: Jonathan Miller <1+jmiller@noreply.git.mokoconsulting.tech> Date: Tue, 2 Jun 2026 21:51:52 +0000 Subject: [PATCH 1/2] chore: sync .mokogitea/workflows/pr-check.yml from moko-platform [skip ci] --- .mokogitea/workflows/pr-check.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.mokogitea/workflows/pr-check.yml b/.mokogitea/workflows/pr-check.yml index e2c82ef291..0ac0ef1188 100644 --- a/.mokogitea/workflows/pr-check.yml +++ b/.mokogitea/workflows/pr-check.yml @@ -105,6 +105,19 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Check for merge conflict markers + run: | + CONFLICTS=$(grep -rn '<<<<<<< \|>>>>>>> \|^=======$' --include='*.php' --include='*.xml' --include='*.css' --include='*.js' --include='*.json' --include='*.md' --include='*.yml' --include='*.yaml' --include='*.ini' --include='*.txt' . 2>/dev/null | grep -v '.git/' || true) + if [ -n "$CONFLICTS" ]; then + echo "::error::Merge conflict markers found in source files" + echo "## Conflict Markers Found" >> $GITHUB_STEP_SUMMARY + echo '```' >> $GITHUB_STEP_SUMMARY + echo "$CONFLICTS" >> $GITHUB_STEP_SUMMARY + echo '```' >> $GITHUB_STEP_SUMMARY + exit 1 + fi + echo "No conflict markers found" + - name: Detect platform id: platform run: | -- 2.52.0 From d0e3b3dfd8e55502891ebaf85339cdfeb0a08c02 Mon Sep 17 00:00:00 2001 From: Jonathan Miller Date: Tue, 2 Jun 2026 17:10:14 -0500 Subject: [PATCH 2/2] fix(ui): add octicon icons to user settings navbar Profile (person), Account (shield-lock), Notifications (bell), Appearance (paintbrush), Security (lock), Blocked Users (blocked), Applications (apps), SSH/GPG Keys (key), Actions (play), Packages (package), Webhooks (webhook), Organizations (organization), Repositories (repo). Co-Authored-By: Claude Opus 4.6 (1M context) --- templates/user/settings/navbar.tmpl | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/templates/user/settings/navbar.tmpl b/templates/user/settings/navbar.tmpl index e2bc72ca5f..a9fc9c7fff 100644 --- a/templates/user/settings/navbar.tmpl +++ b/templates/user/settings/navbar.tmpl @@ -1,41 +1,41 @@
-- 2.52.0