Recent activity #20248
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 | |
on: | |
schedule: | |
- cron: "*/5 * * * *" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Update this repo's README with recent activity | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: jamesgeorge007/github-activity-readme@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
COMMIT_MSG: "Updated README with recent activity" | |
MAX_LINES: 10 |