From a8ed121bced748b1d6775a68b13097410e14cbdf Mon Sep 17 00:00:00 2001 From: Jemshad Kalathingal Date: Wed, 26 Feb 2025 19:05:53 +0100 Subject: [PATCH] fix typo, strip unwanted spaces --- .github/workflows/basic-workflow.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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 }}" -