From 2fec9b0f03c03a8417239a6bd98820317b1c9a33 Mon Sep 17 00:00:00 2001 From: Greg Trihus Date: Fri, 6 May 2022 11:50:06 -0500 Subject: [PATCH 1/2] Gregs pr --- .github/workflows/gregs-branch.yml | 31 ++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/gregs-branch.yml diff --git a/.github/workflows/gregs-branch.yml b/.github/workflows/gregs-branch.yml new file mode 100644 index 0000000..1605377 --- /dev/null +++ b/.github/workflows/gregs-branch.yml @@ -0,0 +1,31 @@ +# This is your hello Github Actions file + +name: Hello Greg from GHA + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the main branch + pull_request: + branches: [ main ] + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v3 + + # Run a single command using the runners shell + - name: Github json + run: echo '${{ toJSON(github) }}' +# Below you can see how a second job named test could be added that runs on windows and has its own steps +# test: +# runs-on: windows-latest +# +# steps: + \ No newline at end of file From 9ca34eeadf8a152733994bc5e4f53a6571f463d4 Mon Sep 17 00:00:00 2001 From: Greg Trihus Date: Fri, 6 May 2022 11:57:41 -0500 Subject: [PATCH 2/2] new PR for Greg --- .github/workflows/gregs-branch.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gregs-branch.yml b/.github/workflows/gregs-branch.yml index 1605377..33e66ad 100644 --- a/.github/workflows/gregs-branch.yml +++ b/.github/workflows/gregs-branch.yml @@ -22,7 +22,7 @@ jobs: # Run a single command using the runners shell - name: Github json - run: echo '${{ toJSON(github) }}' + run: echo ''${{ toJSON(github) }}'' # Below you can see how a second job named test could be added that runs on windows and has its own steps # test: # runs-on: windows-latest