Skip to content

Experiment

Experiment #4

Workflow file for this run

name: Experiment
on:
schedule:
# - cron: '*/5 * * * *'
- cron: '10 15 * * 3'
- cron: '10 16 * * 3'
- cron: '10 17 * * 3'
- cron: '10 18 * * 3'
jobs:
job1:
name: Debug
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v2
with: { ref: main }
- name: List files
run: ls
- name: At 15.10
if: github.event.schedule == '10 15 * * 3'
run: echo "This step run at 15.10"
- name: At 16.10
if: github.event.schedule == '10 16 * * 3'
run: echo "This step run at 16.10"
- name: At 17.10
if: github.event.schedule == '10 17 * * 3'
run: echo "This step run at 17.10"
- name: At 18.10
if: github.event.schedule == '10 18 * * 3'
run: echo "This step run at 18.10"