Skip to content

Commit

Permalink
chore: added workflow for updating sql dump
Browse files Browse the repository at this point in the history
  • Loading branch information
huniafatima-arbi committed Dec 9, 2024
1 parent 9521bac commit 6f7e292
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/update-sql-dump.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 6f7e292

Please sign in to comment.