.profile/.github/workflows/github.yml

17 lines
369 B
YAML

name: Update latest GitHub activity to 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: Readme-Workflows/recent-activity@v1.3.0
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}