Skip to content

Weekly summary

Weekly summary #74

Workflow file for this run

name: Weekly summary
# Run every Sunday one hour later than the RSS watcher
on:
schedule:
- cron: "0 4 * * 0"
# 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 weekly
- 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') weekly summary"
git push