diff --git a/.github/workflows/manual-actions.yml b/.github/workflows/manual-actions.yml new file mode 100644 index 0000000..60a1646 --- /dev/null +++ b/.github/workflows/manual-actions.yml @@ -0,0 +1,10 @@ +name: First Workflow +on: workflow_dispatch +jobs: + first-job: + runs-on: ubuntu-latest + steps: + - name: Print Greeting + run: echo "Hello World!" + - name: Print Goodbye + run: echo "Done - bye!" \ No newline at end of file diff --git a/README.md b/README.md index aae8ea0..a49abd0 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # learn-github-actions -Github Actions +Github Actions - + +![Github Actions Key Components](./images/github-actions-key-components.png) diff --git a/images/github-actions-key-components.png b/images/github-actions-key-components.png new file mode 100644 index 0000000..1a03c60 Binary files /dev/null and b/images/github-actions-key-components.png differ