From 6f7e2924bdc15b208b1b6dd5b60103441a80d185 Mon Sep 17 00:00:00 2001 From: Hunia Fatima Date: Mon, 9 Dec 2024 15:24:35 +0500 Subject: [PATCH] chore: added workflow for updating sql dump --- .github/workflows/update-sql-dump.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/update-sql-dump.yml diff --git a/.github/workflows/update-sql-dump.yml b/.github/workflows/update-sql-dump.yml new file mode 100644 index 0000000000..9671b8ac5a --- /dev/null +++ b/.github/workflows/update-sql-dump.yml @@ -0,0 +1,18 @@ +name: Update SQL Dump + +on: + pull_request: + branches: + - '**' + schedule: + - cron: "0 2 * * 3" +jobs: + update-sql-dump: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Run create db script + run: ./update-dbs-init-sql-scripts.sh