[PR #3305] [MERGED] feat(rules): templating actions #30713

Closed
opened 2026-04-18 07:00:18 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/3305
Author: @UnderKoen
Created: 8/22/2024
Status: Merged
Merged: 10/8/2024
Merged by: @matt-fidd

Base: masterHead: master


📝 Commits (10+)

  • 28ef783 feat(rules): templating actions
  • 3185e66 chore: update snapshots
  • ffeeb58 fix: date functions templating
  • 58b8142 Merge remote-tracking branch 'refs/remotes/origin/master'
  • ab55538 chore: lint
  • 94953c1 fix: put action templating behind feature flag
  • f23345f fix: template syntax checking
  • 12224bf Merge branch 'master' into master
  • ab25418 Merge branch 'master' into master
  • 9dc1ab6 Merge branch 'master' into master

📊 Changes

13 files changed (+299 additions, -7 deletions)

View changed files

📝 packages/desktop-client/src/components/modals/EditRuleModal.jsx (+46 -3)
📝 packages/desktop-client/src/components/rules/ActionExpression.tsx (+8 -1)
📝 packages/desktop-client/src/components/settings/Experimental.tsx (+6 -0)
📝 packages/desktop-client/src/hooks/useFeatureFlag.ts (+1 -0)
📝 packages/loot-core/package.json (+1 -0)
📝 packages/loot-core/src/server/accounts/__snapshots__/transaction-rules.test.ts.snap (+6 -0)
📝 packages/loot-core/src/server/accounts/rules.test.ts (+93 -0)
📝 packages/loot-core/src/server/accounts/rules.ts (+91 -1)
📝 packages/loot-core/src/shared/rules.ts (+2 -0)
📝 packages/loot-core/src/types/models/rule.d.ts (+1 -0)
📝 packages/loot-core/src/types/prefs.d.ts (+2 -1)
upcoming-release-notes/3305.md (+6 -0)
📝 yarn.lock (+36 -1)

📄 Description

Relates to #500 and #3378

https://github.com/user-attachments/assets/809ee622-af8a-4151-9293-8ce4e9dbdb91


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/actualbudget/actual/pull/3305 **Author:** [@UnderKoen](https://github.com/UnderKoen) **Created:** 8/22/2024 **Status:** ✅ Merged **Merged:** 10/8/2024 **Merged by:** [@matt-fidd](https://github.com/matt-fidd) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`28ef783`](https://github.com/actualbudget/actual/commit/28ef783813a3b185e09cb15f2710e1172b2e59b7) feat(rules): templating actions - [`3185e66`](https://github.com/actualbudget/actual/commit/3185e6610e2c952a8ffd265c9524a42956dd6241) chore: update snapshots - [`ffeeb58`](https://github.com/actualbudget/actual/commit/ffeeb58a163366ba5258ff400b68890c42ad2335) fix: date functions templating - [`58b8142`](https://github.com/actualbudget/actual/commit/58b81420a786f4f0083e41ff76e6c4311d1e34b1) Merge remote-tracking branch 'refs/remotes/origin/master' - [`ab55538`](https://github.com/actualbudget/actual/commit/ab55538dbea3bdcc453ac109f9a1db44a752201c) chore: lint - [`94953c1`](https://github.com/actualbudget/actual/commit/94953c1d4b8964fe917dcf2d15ed85246f50365b) fix: put action templating behind feature flag - [`f23345f`](https://github.com/actualbudget/actual/commit/f23345f302db668d5849a94912582629651c8ac3) fix: template syntax checking - [`12224bf`](https://github.com/actualbudget/actual/commit/12224bfad04a8daa74f2be638f813bd7c57c4458) Merge branch 'master' into master - [`ab25418`](https://github.com/actualbudget/actual/commit/ab25418f34c1e4e19cf9bd675090c8981505d8ec) Merge branch 'master' into master - [`9dc1ab6`](https://github.com/actualbudget/actual/commit/9dc1ab61808cc7737a91f3b516ee0c642b2ca409) Merge branch 'master' into master ### 📊 Changes **13 files changed** (+299 additions, -7 deletions) <details> <summary>View changed files</summary> 📝 `packages/desktop-client/src/components/modals/EditRuleModal.jsx` (+46 -3) 📝 `packages/desktop-client/src/components/rules/ActionExpression.tsx` (+8 -1) 📝 `packages/desktop-client/src/components/settings/Experimental.tsx` (+6 -0) 📝 `packages/desktop-client/src/hooks/useFeatureFlag.ts` (+1 -0) 📝 `packages/loot-core/package.json` (+1 -0) 📝 `packages/loot-core/src/server/accounts/__snapshots__/transaction-rules.test.ts.snap` (+6 -0) 📝 `packages/loot-core/src/server/accounts/rules.test.ts` (+93 -0) 📝 `packages/loot-core/src/server/accounts/rules.ts` (+91 -1) 📝 `packages/loot-core/src/shared/rules.ts` (+2 -0) 📝 `packages/loot-core/src/types/models/rule.d.ts` (+1 -0) 📝 `packages/loot-core/src/types/prefs.d.ts` (+2 -1) ➕ `upcoming-release-notes/3305.md` (+6 -0) 📝 `yarn.lock` (+36 -1) </details> ### 📄 Description Relates to #500 and #3378 https://github.com/user-attachments/assets/809ee622-af8a-4151-9293-8ce4e9dbdb91 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-18 07:00:18 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/actual#30713