Skip to content

Stats Update

Stats Update #1421

Workflow file for this run

# This action triggers the build hook
name: Stats Update
# Controls when the workflow will run
on:
schedule:
# Runs every 6 hour every weekday
- cron: "0 */6 * * *"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# The workflow to run
jobs:
cron:
runs-on: ubuntu-latest
steps:
# Runs a request to the build hook
- name: Build hook request
run: curl -X POST -d {} ${{ secrets.BUILD_HOOK }}