Recent Activity Summary #2
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: Recent Activity Summary | |
on: # yamllint disable-line rule:truthy | |
schedule: | |
- cron: '16 0 * * Mon' # Run every Monday at 00:16 UTC | |
workflow_dispatch: # Allow manual triggering | |
jobs: | |
generate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Generate and Post Repository Summary | |
uses: akaihola/repo-summary-post@v0.0.8 | |
with: | |
github-token: '${{ secrets.GITHUB_TOKEN }}' | |
repo-name: '${{ github.repository }}' | |
project-name: 'Darker' | |
# Optional inputs for debugging purposes: | |
verbose: '2' | |
dry-run: 'false' | |
output-content: '-' | |
env: | |
OPENROUTER_KEY: '${{ secrets.OPENROUTER_KEY }}' |