Please tell me if I’ve got this set up wrong or if this seems like a bug.
I created an action that saves a Draft to a markdown file. I name the file with the created date:
[[created|%Y%m%dT%H%m]].md
This worked once. Now, when I create other new notes (at different times), the Action is erroring out telling me the file already exists. The “created” part of the file name isn’t changing.
1 Like
I’m guessing all your testing took place within the hour. It looks like you have used the month twice and not used minutes when I think you meant to.
Try changing your format string to this:
%Y%m%dT%H%M
Then your minutes should start changing and you should start getting more uniqueness - as long as you don’t trigger twice within the same minute of course.
4 Likes
Thank you! I knew it was something silly and obvious.
Crazy coincidence that I happened to first run it at 20:03 when the month was 03
2 Likes