Stats Update #1402
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 }} |