Update README.md #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: push # runs when ever there is a push to any branch of the repo | |
name: A workflow for my Hello World Action | |
jobs: | |
build: | |
name: Hello world action | |
runs-on: ubuntu-latest # useful environment to we can run a simple bash | |
steps: | |
- name: hello-world | |
run: | | |
echo "hello $GITHUB_ACTOR" |