Skip to content

Commit

Permalink
build: add recent activity summary action
Browse files Browse the repository at this point in the history
  • Loading branch information
akaihola committed Aug 2, 2024
1 parent 8a7eb26 commit e236330
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/recent-activity-summary.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: Recent Activity Summary
on: # yamllint disable-line rule:truthy
schedule:
- cron: '0 0 * * MON' # Run every Monday at 00:00 UTC
workflow_dispatch: # Allow manual triggering

jobs:
prs:
runs-on: ubuntu-latest
steps:
- name: Run PR Summary Action
uses: akaihola/repo-summary-post@reusable-action
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
repo_name: ${{ github.repository }}
# category: 'General' # Don't post discussion yet

0 comments on commit e236330

Please sign in to comment.