Setup Cron job on 1st of every Month

Hi, I want to run a cron job on 1st of each and every month,

		"* * 1 * *": [
			"path.to.function"
		]

is the above syntax is correct?
I’ve used the below syntax for testing, but it didn’t work.

		"* * 30 * *": [
			"path.to.function"
		]

One thing, if i use default monthly job like this,

	"monthly": [
		"frappe.email.doctype.auto_email_report.auto_email_report.send_monthly"
	],

On which date it will be execute? 1st of every month?

Anybody??

this one should make what you want
this will run at 12:00 am of first each month

1 Like

Thanks @OmarJaber