From c30b8360faa45a21c539f5443b887e65891bc801 Mon Sep 17 00:00:00 2001 From: Curtis J Bezault Date: Wed, 13 May 2020 09:15:03 -0700 Subject: [PATCH] Create test.yml --- .github/workflows/test.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000000..b5f26aa9f14 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,25 @@ +# This is a basic workflow to help you get started with Actions + +name: test + +# Controls when the action will run. Triggers the workflow on push or pull request +# events but only for the master branch +on: + pull_request: + types: [opened, reopened] + +# 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: alex-page/github-project-automation-plus@v0.2.3 + with: + project: "Code Reviews" + column: New + repo-token: ${{ secrets.GH_TOKEN }}