Weekly Long File Report #19
This file contains hidden or 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 Long File Report | |
on: | |
schedule: | |
- cron: '0 4 * * 1' # Run at 04:00 UTC every Monday | |
workflow_dispatch: | |
jobs: | |
run-script: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Run script | |
id: long_files | |
run: | | |
printf $'summary<<EOF\n%s\nEOF' "$(./scripts/long_file_report.sh)" | tee "$GITHUB_OUTPUT" | |
- name: Post output to Zulip | |
uses: zulip/github-actions-zulip/send-message@e4c8f27c732ba9bd98ac6be0583096dea82feea5 # v1.0.2 | |
with: | |
api-key: ${{ secrets.ZULIP_API_KEY }} | |
email: 'github-mathlib4-bot@leanprover.zulipchat.com' | |
organization-url: 'https://leanprover.zulipchat.com' | |
to: 'mathlib4' | |
type: 'stream' | |
topic: long files | |
content: ${{ steps.long_files.outputs.summary }} |