mirror of
https://github.com/appinfosapienza/so-un-bot.git
synced 2025-03-14 12:06:14 +01:00
14 lines
295 B
YAML
14 lines
295 B
YAML
|
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}}
|