I have an existing pipeline created in 'class editor' that includes: this needs to be scheduled to run monthly.
- JSON file for variable substitutions,
- install and run .pynb packages
There are 2 ways to achieve scheduling: YML or Classic (classic does not have a monthly option)
I have been using the following YAML to schedule run monthly. Here, this YML does not trigger to run the pipeline create in 'classic editor' to run - How can I include it? OR is there an efficient way to run my .pynb and .json file monthly?
trigger: none
schedules:
- cron: "0 0 1 * *"
displayName: (UTC) daily build
branches:
include:
- main
- releases/*
exclude:
- releases/old/*
always: true
pool:
vmImage: ubuntu-latest
steps:
- script: echo Hello, world!
displayName: 'Run a one-line script'
- script: |
echo Add other tasks to build, test, and deploy your project.
echo See https://aka.ms/yaml
displayName: 'Run a multi-line script'