Skip to content

My First Manual Workflow #4

My First Manual Workflow

My First Manual Workflow #4

Workflow file for this run

name: My First Manual Workflow
on: [workflow_dispatch]
jobs:
example:
name: Example Job
runs-on: ubuntu-latest
steps:
- name: Clone Repository
uses: actions/checkout@v2
- name: Say hello
run: echo HI!