From c79871dd3bf19b14cf48f7235e5895b818adab35 Mon Sep 17 00:00:00 2001 From: Anthony Accioly <1591739+aaccioly@users.noreply.github.com> Date: Sun, 15 Feb 2026 17:34:07 +0000 Subject: [PATCH 1/3] revert(workflows): remove PR conventional commit validation workflow --- .../pr-conventional-commit-validation.yml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .github/workflows/pr-conventional-commit-validation.yml diff --git a/.github/workflows/pr-conventional-commit-validation.yml b/.github/workflows/pr-conventional-commit-validation.yml deleted file mode 100644 index f9fad99..0000000 --- a/.github/workflows/pr-conventional-commit-validation.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: PR Conventional Commit Validation - -on: - pull_request: - types: [opened, synchronize, reopened, edited] - -permissions: write-all - -jobs: - validate-pr-title: - runs-on: ubuntu-latest - steps: - - name: PR Conventional Commit Validation - uses: ytanikin/pr-conventional-commits@1.5.1 - with: - task_types: '["feat","fix","docs","test","build","ci","refactor","perf","chore","revert"]' - custom_labels: '{"feat": "feature", "fix": "fix", "docs": "documentation", "test": "test", "build": "build", "ci": "CI/CD", "refactor": "refactor", "perf": "performance", "chore": "chore", "revert": "revert", "wip": "WIP"}' - add_scope_label: 'true' \ No newline at end of file From 8289b8ee6db36f56ce49297566913cad73a42d81 Mon Sep 17 00:00:00 2001 From: Anthony Accioly <1591739+aaccioly@users.noreply.github.com> Date: Sun, 15 Feb 2026 16:29:17 +0000 Subject: [PATCH 2/3] fix(import): use embedded struct field access for event kind --- import.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/import.go b/import.go index 8bdda5c..7e164cc 100644 --- a/import.go +++ b/import.go @@ -223,7 +223,9 @@ func subscribeInboxAndChat(ctx context.Context) { break } - switch ev.Kind { + log.Println("This change should be fine") + + switch ev.Event.Kind { // This one shouldn't case nostr.KindTextNote: log.Println("📰 new note in your inbox") case nostr.KindReaction: From 254cc1498520281e425d7be687ec355581913ac9 Mon Sep 17 00:00:00 2001 From: Anthony Accioly <1591739+aaccioly@users.noreply.github.com> Date: Sun, 15 Feb 2026 17:36:17 +0000 Subject: [PATCH 3/3] fix(import): fix linting error --- import.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/import.go b/import.go index 7e164cc..36d3d43 100644 --- a/import.go +++ b/import.go @@ -225,7 +225,7 @@ func subscribeInboxAndChat(ctx context.Context) { log.Println("This change should be fine") - switch ev.Event.Kind { // This one shouldn't + switch ev.Kind { case nostr.KindTextNote: log.Println("📰 new note in your inbox") case nostr.KindReaction: