From 94c76f961fd72bdeef0b8329e496a9cfe8420e26 Mon Sep 17 00:00:00 2001 From: Marco Realacci Date: Wed, 15 May 2024 15:29:36 +0200 Subject: [PATCH] Add actions workflow --- .github/workflows/update-data.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/update-data.yml diff --git a/.github/workflows/update-data.yml b/.github/workflows/update-data.yml new file mode 100644 index 0000000..ffb7469 --- /dev/null +++ b/.github/workflows/update-data.yml @@ -0,0 +1,14 @@ +name: Update bot data + +# Configures this workflow to run every time a change is pushed to the branch called `release`. +on: + push: + branches: ['main'] + +jobs: + update-data: + runs-on: ubuntu-latest + + steps: + - name: Call webhook + run: curl -X POST ${{secrets.DEPLOY_WEBHOOK}} \ No newline at end of file