From 114c16ff71191955c4d877591bca617f49f153c1 Mon Sep 17 00:00:00 2001 From: Edward Louth Date: Fri, 17 Feb 2023 17:06:03 +0000 Subject: [PATCH] Example Pull Request Action --- .github/workflows/pull-request-action.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/pull-request-action.yaml diff --git a/.github/workflows/pull-request-action.yaml b/.github/workflows/pull-request-action.yaml new file mode 100644 index 0000000..87ca2a7 --- /dev/null +++ b/.github/workflows/pull-request-action.yaml @@ -0,0 +1,18 @@ +name: Example Pull Request Action + +on: pull_request + +jobs: + create_run: + runs-on: ubuntu-latest + name: Test Grai + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Create Run + uses: grai-io/grai-actions-server@master + with: + api-key: ${{ secrets.GRAI_API_KEY }} + action: tests + connection_id: ${{ secrets.GRAI_DATABASE_DEV_CONNECTION_ID }}