Skip to content

Run Reports

Run Reports #13821

Workflow file for this run

name: Run Reports
on:
workflow_dispatch:
schedule:
- cron: "5 * * * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
token: ${{secrets.ACTION_BOT}}
- name: Run report script
shell: pwsh
run: .\Scripts\MonthlyReports.ps1
- name: git add
run: git add .
- name: git commit
run: |
git config user.name "Action Bot"
git config user.email "<>"
git commit -m "Mastodon Report Run $(date +'%Y-%m-%dT%H:%M:%S')"
- name: git push
run: git push