Skip to content

Daily summary

Daily summary #425

Workflow file for this run

name: Daily summary
# Run every day at 3 AM UTC
on:
schedule:
- cron: "0 3 * * *"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run script
id: checker
run: ./scripts/Generate-TimedDiff.ps1 -Type daily
- name: Commit changes
run: |
git add .
git config --global user.name 'Robert Dyjas'
git config --global user.email '[email protected]'
git commit -am "$(Get-Date -Format 'yyyy-MM-dd') daily summary"
git push