Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
d0d7f87
Add GitHub Updater plugin headers for automatic updates
zackkatz Feb 2, 2026
b3f2944
Add vendor-prefixed .gitkeep to fix composer classmap scan error
zackkatz Feb 2, 2026
eb1326b
Fix fatal error: register() callbacks reference non-existent camelCas…
zackkatz Feb 2, 2026
d4c1a65
Fix security vulnerabilities, bugs, and dead code across plugin
zackkatz Feb 2, 2026
c797a5e
feat: add automation conditions and Drip merge tag migration
zackkatz Feb 19, 2026
64edb26
fix: critical bugs in automation conditions and merge tag migration
zackkatz Feb 19, 2026
b9b03d9
fix: fail-safe for unknown operators, complete campaign_emails migration
zackkatz Feb 19, 2026
5df99ce
feat: track EDD license activations as FluentCRM events
zackkatz Feb 19, 2026
d0954b7
feat: add EDD license status condition for funnel automation
zackkatz Feb 19, 2026
086fa1a
feat: replace composer autoloader with simple PSR-4, add GH Actions r…
zackkatz Feb 19, 2026
0f299bf
feat(email): add Custom CSS editor for FluentCRM email templates
zackkatz Mar 4, 2026
7618b13
fix(email-css): auto-append !important and fix CodeMirror loading
zackkatz Mar 4, 2026
f5d74de
feat(conditions): add granular EDD license status options
zackkatz Mar 5, 2026
ae91ef2
fix: address CodeRabbit review findings across plugin
zackkatz Mar 5, 2026
836f753
fix: resolve array * int error blocking all FluentCRM automations
zackkatz Mar 19, 2026
191d153
Add adversarial guards and correct Git Updater headers
mrcasual Mar 20, 2026
7ba8a21
Merge pull request #3 from GravityKit/fix/website-135-array-int-wait-…
mrcasual Mar 20, 2026
3d6c4cd
docs: add design spec for provider-agnostic contact enrichment action
zackkatz Mar 26, 2026
daf1da7
docs: add implementation plan for enrichment action
zackkatz Mar 26, 2026
3d50991
feat(enrichment): add EnrichmentError, PersonResult, and CompanyResul…
zackkatz Mar 26, 2026
3c37435
feat(enrichment): add abstract EnrichmentProvider with httpGet helper
zackkatz Mar 26, 2026
5052a4f
feat(enrichment): add FreeEmailDetector, EnrichmentSettings, and Enri…
zackkatz Mar 26, 2026
1e3484b
feat(enrichment): add PDLProvider with person and company enrichment
zackkatz Mar 26, 2026
8340b06
fix(enrichment): replace nonexistent wp_encrypt/wp_decrypt with OpenSSL
zackkatz Mar 26, 2026
a85fc6a
feat(enrichment): add EnrichContactAction automation block
zackkatz Mar 26, 2026
8b069ff
fix(enrichment): resolve diagnostics in EnrichContactAction
zackkatz Mar 26, 2026
c96f444
feat(enrichment): register EnrichContactAction in plugin bootstrap
zackkatz Mar 26, 2026
bfdc9ad
fix(lint): add required doc comments to enrichment DTOs and provider
zackkatz Mar 26, 2026
74b9a24
fix(enrichment): resolve all PHPCS lint errors across enrichment classes
zackkatz Mar 26, 2026
59c8ff5
fix(enrichment): address CodeRabbit review findings
zackkatz Mar 26, 2026
15fc09a
Remove timezone features for now
zackkatz Mar 27, 2026
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
34 changes: 34 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Build Release

on:
push:
tags:
- '*'

permissions:
contents: write

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Get plugin version
id: version
run: echo "version=${GITHUB_REF#refs/tags/}" >> "$GITHUB_OUTPUT"

- name: Build zip
run: |
plugin_name="fluent-crm-custom-features"
mkdir "$plugin_name"
cp -r classes "$plugin_name/"
cp *.php "$plugin_name/"
zip -r "${plugin_name}.zip" "$plugin_name"

- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
files: fluent-crm-custom-features.zip
generate_release_notes: true
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Dependencies
/vendor/
/vendor-prefixed/
/vendor-prefixed/*
!/vendor-prefixed/.gitkeep
/node_modules/

# Composer
Expand Down
Loading