21 lines
456 B
YAML
21 lines
456 B
YAML
|
name: Update README
|
||
|
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: "*/5 * * * *" # Runs every 5 minutes.
|
||
|
|
||
|
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
|
||
|
|