Skip to content

Commit 94c76f9

Browse files
Add actions workflow
1 parent 43e9b58 commit 94c76f9

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/update-data.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Update bot data
2+
3+
# Configures this workflow to run every time a change is pushed to the branch called `release`.
4+
on:
5+
push:
6+
branches: ['main']
7+
8+
jobs:
9+
update-data:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Call webhook
14+
run: curl -X POST ${{secrets.DEPLOY_WEBHOOK}}

0 commit comments

Comments
 (0)