Relative Content

Tag Archive for crongithub-actionsschedule

github scheduled cron job not triggering every 5 minutes

name: Scheduled Job on: schedule: – cron: “*/5 * * * *” # Runs every 5 minutes push: branches: – main pull_request: types: [opened, synchronize, reopened] branches: – main workflow_dispatch: {} jobs: scheduled-job: runs-on: ubuntu-latest steps: – name: Print Current Time run: echo “The current time is $(date) The above github actions workflow YAML is […]