From 95dcbd246d289a4e8dae6d0f13ba54557af12f8e Mon Sep 17 00:00:00 2001 From: Don Dillard Date: Fri, 6 May 2022 11:53:21 -0500 Subject: [PATCH] this is me --- .github/workflows/dondillard.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/dondillard.yml diff --git a/.github/workflows/dondillard.yml b/.github/workflows/dondillard.yml new file mode 100644 index 0000000..6295f09 --- /dev/null +++ b/.github/workflows/dondillard.yml @@ -0,0 +1,31 @@ +# This is your hello Github Actions file + +name: Don dillard + +# 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