diff --git a/.github/workflows/basic-workflow.yml b/.github/workflows/basic-workflow.yml index e8ad08f..8bbe614 100644 --- a/.github/workflows/basic-workflow.yml +++ b/.github/workflows/basic-workflow.yml @@ -34,8 +34,8 @@ on: jobs: # This workflow contains a single job called "greet" greet: - # The type of runner that the job will run on, in this case a Linus hosted runner - runs-on: + # The type of runner that the job will run on, in this case a Linux hosted runner + runs-on: - ubuntu-latest # Steps represent a sequence of tasks that will be executed as part of the job @@ -44,7 +44,6 @@ jobs: # Runs a single command using the runners shell - name: Send greeting run: | - echo "Hello ${{ github.event.inputs.name }}" + echo "Hello ${{ github.event.inputs.name }}" echo "Your favorite city is ${{ github.event.inputs.city }}" echo "Is your favorite color blue: ${{ github.event.inputs.fav-color-blue }}" -