Weekly summary #74
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
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 |