Files
.profile/.github/workflows/update-activity-workflow.yml
2021-11-05 11:54:14 +05:30

20 lines
461 B
YAML

name: Update README
on:
schedule:
- cron: '*/30 * * * *'
workflow_dispatch:
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: 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
with:
COMMIT_MSG: 'Added recent activity on GitHub'
MAX_LINES: 10