From 21145c7c3a6621f076ae81fb10e47aabbb19edbb Mon Sep 17 00:00:00 2001 From: Davy Tenn Date: Fri, 6 May 2022 11:54:30 -0500 Subject: [PATCH] Create davy.yml Commit to the davy branch --- .github/workflows/davy.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/davy.yml diff --git a/.github/workflows/davy.yml b/.github/workflows/davy.yml new file mode 100644 index 0000000..d177df6 --- /dev/null +++ b/.github/workflows/davy.yml @@ -0,0 +1,30 @@ +# This is your hello Github Actions file + +name: Hello 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: [ CHANGETOMAIN ] + +# 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: