Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
b9f5443
chore: Disable release notes
kriss145 Dec 18, 2025
5eb910c
chore: Add contributing file
kriss145 Dec 18, 2025
fdd7af4
Merge pull request #14 from codee-sh/chore/update-contributing
kriss145 Dec 18, 2025
0b887d2
feat: fix name
kriss145 Dec 22, 2025
9d7690f
- add changeset
kriss145 Dec 22, 2025
1bee5a8
Merge pull request #15 from codee-sh/feat/visual-automations-bug
kriss145 Dec 22, 2025
03d5b90
chore: docs temp
kriss145 Dec 22, 2025
4577222
refactor: rename interval_minutes to interval_seconds across automati…
kriss145 Dec 22, 2025
440c617
refactor: add automation workflow with throttle validation and update…
kriss145 Dec 22, 2025
0b47562
refactor: rename validation workflow and update related imports and i…
kriss145 Dec 22, 2025
03b493a
chore: update the changeset
kriss145 Dec 22, 2025
a763d62
Merge pull request #16 from codee-sh/feat/delay-triggers
kriss145 Dec 22, 2025
5e95c55
feat: add order templates and event metadata to SlackActionService
kriss145 Dec 23, 2025
2230808
refactor: update ORDER_ATTRIBUTES to ORDER_QUERY_FIELDS for improved …
kriss145 Dec 23, 2025
0f4640f
chore: add changeset for ORDER_ATTRIBUTES to ORDER_QUERY_FIELDS update
kriss145 Dec 23, 2025
96477c8
refactor: introduce QUERY_FIELDS for inventory, product, and related …
kriss145 Dec 23, 2025
70409fd
Merge pull request #17 from codee-sh/feat/new-subscribers
kriss145 Dec 23, 2025
b843430
feat: enhance attribute metadata across various modules with descript…
kriss145 Dec 23, 2025
9ae6050
refactor: Add RuleItem for better readability and maintainability
kriss145 Dec 23, 2025
da65b26
Merge pull request #18 from codee-sh/feat/attribute-metadata-descript…
kriss145 Dec 24, 2025
78eea71
chore: update the medusa-plugin-notification-emails to 0.1.0 version
kriss145 Dec 27, 2025
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
5 changes: 5 additions & 0 deletions .changeset/clean-heads-hear.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@codee-sh/medusa-plugin-automations": patch
---

update ORDER_ATTRIBUTES to ORDER_QUERY_FIELDS for improved totals calculation and UI consistency
5 changes: 5 additions & 0 deletions .changeset/fresh-lamps-stand.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@codee-sh/medusa-plugin-automations": patch
---

Update contributing
5 changes: 5 additions & 0 deletions .changeset/fuzzy-coins-invent.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@codee-sh/medusa-plugin-automations": patch
---

Update name in the column name
5 changes: 5 additions & 0 deletions .changeset/nine-monkeys-serve.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@codee-sh/medusa-plugin-automations": patch
---

feat: Add throttle support for event triggers
12 changes: 10 additions & 2 deletions .github/workflows/release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,17 @@

name: Generate Release Notes (Backup)

# DISABLED - Using GitHub's built-in "Generate release notes" instead
# This workflow is kept for reference but will NOT run automatically.
# To enable: uncomment the "on:" section below and remove workflow_dispatch

# on:
# release:
# types: [created]

# Only allows manual trigger, prevents automatic execution
on:
release:
types: [created]
workflow_dispatch:

jobs:
generate-release-notes:
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,6 @@ yarn-error.log*
.env
.env.local

# Temporary docs (internal)
docs-temp/

Loading