We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f83d366 commit 691152fCopy full SHA for 691152f
Server-Side Components/Business Rules/AutoCloseResolveCases/README.md
@@ -0,0 +1,14 @@
1
+# Auto-Close Resolved Incidents After 7 Days
2
+
3
+Table: Incident
4
+When: Before
5
+Condition: State is Resolved and resolved_at older than 7 days.
6
+This script automatically closes any Incident that has been in a "Resolved" state for 7 days.
7
8
+// Use Case :
9
+Keeps your Incident queue clean and ensures SLA metrics stay accurate.
10
11
+// How :
12
+Queries incident table.
13
+Finds records with state = Resolved and resolved_at older than 7 days.
14
+Changes state to Closed.
0 commit comments