Hello, I am trying to create a cron action , but unfortunately, it never gets triggered.
name: my-cron
on:
schedule:
- cron: ‘*/1 * * * *’
jobs:
crowdingMerge:
runs-on: ubuntu-latest
steps:
-
uses: actions/checkout@v1
-
name: run a one-line script
run: echo Hello, world! -
name: Run git commands
run: git status
this the configuration .yml, there are no indentation errors;
Am I missing something?