mirror of
https://github.com/inventree/inventree-website.git
synced 2025-05-09 10:48:51 +00:00
21 lines
385 B
YAML
21 lines
385 B
YAML
name: Get stats
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set selected color
|
|
run: python .github/get_stats.py
|
|
- uses: stefanzweifel/git-auto-commit-action@v4
|
|
with:
|
|
commit_message: "[Bot] Updated the stats"
|
|
branch: main
|