I am working on a workflow that will automatically kick off when new files and folders are added to an employee's file in our repository. We are starting from scratch here and some folders will be added that I don't want to kick off the workflow, for instance, the "Record Submission Forms" folder. This will be created within each user's folder when a record is added if it doesn't already exist.
However, I want to workflow to start on everything new under HR\Employee Files and exclude HR\Employee Files\[insert an employee's first and last name]\Record Submission Forms.
Could this be done with wildcards?
My current starting rules are;
Starting Event: Entry Created
Run workflow on the entry that was created
If all of these conditions are true
Entry : Path starts with \HR\Employee Files\
Entry : Path does not contain Record Submission Forms
User equals ADMIN
However, only the employee's named file and the Record Submission Forms folder are being picked up in the workflow and everything else is being left unchanged.
Could a rule of;
Entry : Path is not HR\Employee Files\WildCard\Record Submission Forms
work?