From 135d8842769f90cc08bde0aa6257586fba958cfa Mon Sep 17 00:00:00 2001 From: Eric Froemling Date: Fri, 4 Oct 2019 11:08:08 -0700 Subject: [PATCH] Test --- .github/workflows/testworkflow.yaml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/workflows/testworkflow.yaml diff --git a/.github/workflows/testworkflow.yaml b/.github/workflows/testworkflow.yaml deleted file mode 100644 index 805c3fe3..00000000 --- a/.github/workflows/testworkflow.yaml +++ /dev/null @@ -1,20 +0,0 @@ -name: Greet Everyone -# This workflow is triggered on pushes to the repository. -on: [push] - -jobs: - build: - # Job name is Greeting - name: Greeting - # This job runs on Linux - runs-on: ubuntu-latest - steps: - # This step uses GitHub's hello-world-javascript-action: https://github.com/actions/hello-world-javascript-action - - name: Hello world - uses: actions/hello-world-javascript-action@v1 - with: - who-to-greet: 'Mona the Octocat' - id: hello - # This step prints an output (time) from the previous step's action. - - name: Echo the greeting's time - run: echo 'The time was ${{ steps.hello.outputs.time }}.'