From 644a725e69f4b03902f6b4a638c97f79e583466e Mon Sep 17 00:00:00 2001 From: Antti Kaihola <13725+akaihola@users.noreply.github.com> Date: Mon, 12 Aug 2024 21:35:02 +0300 Subject: [PATCH] feat: enable weekly repo activity summary for real --- .github/workflows/recent-activity-summary.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/recent-activity-summary.yml b/.github/workflows/recent-activity-summary.yml index d139f70d2..e9e954cbf 100644 --- a/.github/workflows/recent-activity-summary.yml +++ b/.github/workflows/recent-activity-summary.yml @@ -1,21 +1,23 @@ --- 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: - prs: + generate: runs-on: ubuntu-latest steps: - name: Generate and Post Repository Summary - uses: akaihola/repo-summary-post@v0.0.5.3-debug + uses: akaihola/repo-summary-post@v0.0.6 with: github-token: '${{ secrets.GITHUB_TOKEN }}' repo-name: '${{ github.repository }}' project-name: 'Darker' # Optional inputs for debugging purposes: verbose: '2' - dry-run: 'true' + dry-run: 'false' output-content: '-' env: OPENROUTER_KEY: '${{ secrets.OPENROUTER_KEY }}'