From cced0569bb1e7ecb25ceffa523b4d05549d97424 Mon Sep 17 00:00:00 2001 From: Edward Louth Date: Fri, 17 Feb 2023 17:05:21 +0000 Subject: [PATCH] Example Push Action --- .github/workflows/push-action.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/push-action.yaml diff --git a/.github/workflows/push-action.yaml b/.github/workflows/push-action.yaml new file mode 100644 index 0000000..b6905e8 --- /dev/null +++ b/.github/workflows/push-action.yaml @@ -0,0 +1,18 @@ +name: Example Push Action + +on: push + +jobs: + create_run: + runs-on: ubuntu-latest + name: Update 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: update + connection_id: ${{ secrets.GRAI_DATABASE_CONNECTION_ID }}