2024-10-04 10:54:51 +00:00
|
|
|
name: Retrieve Events Datas
|
|
|
|
run-name: Retrieve Events Datas
|
2024-10-04 11:08:06 +00:00
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: "0 14 * * 5"
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2024-10-04 10:54:51 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
Retrieve-Events-Datas:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out repository code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Use Node.js 20.x
|
|
|
|
uses: actions/setup-node@v4
|
|
|
|
with:
|
|
|
|
node-version: "20.x"
|
|
|
|
- run: npm ci
|
|
|
|
- run: npm run retrieve-datas
|
2024-10-04 11:18:32 +00:00
|
|
|
env:
|
|
|
|
DISCORD_BOT_TOKEN: ${{ secrets.DISCORD_BOT_TOKEN }}
|
|
|
|
DISCORD_GUILD_ID: ${{ secrets.DISCORD_GUILD_ID }}
|
2024-10-04 10:54:51 +00:00
|
|
|
- name: Commit and push changes
|
2024-10-04 11:09:01 +00:00
|
|
|
uses: stefanzweifel/git-auto-commit-action@v5
|
|
|
|
with:
|
|
|
|
branch: datas
|
|
|
|
commit_message: "chore: Update Datas"
|
2024-10-04 11:22:20 +00:00
|
|
|
file_pattern: "./events.json"
|
2024-10-04 11:09:01 +00:00
|
|
|
commit_user_name: "Camélia Studio"
|
|
|
|
commit_user_email: "cameliastudio@localhost"
|
|
|
|
commit_author: "Camélia Studio <cameliastudio@localhost>"
|