Skip to content

add workflow dispatch and cron #4

add workflow dispatch and cron

add workflow dispatch and cron #4

Workflow file for this run

name: CI
on:
push:
branches:
- develop
- pk-actions
workflow_dispatch:
schedule:
- cron: "0 12 * * *"
jobs:
hello-world:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Hello World
run: echo "Hello, World!"