Update README With Github Recent Activity #28748
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: Update README With Github Recent Activity | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Update this repo's README with recent activity | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Update Recent Activity | |
uses: jamesgeorge007/github-activity-readme@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
COMMIT_MSG: 'Updated Recent Activity' | |
MAX_LINES: 10 | |
GH_USERNAME: 'msrajawat298' | |
COMMIT_EMAIL: '[email protected]' | |
COMMIT_NAME: Update Github Activity in Readme Page By cron job |