Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/hello-world.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: say Hello World! #nmae of workflow

on:
workflow_dispatch:

jobs:
hello-world: #name of job
runs-on: ubuntu-latest
steps: #what will the job actaully do
- name: Print Hello World #list with "-"
run: echo Hello Worl # what the job code is
# add 2 spaces before the run