31 lines
818 B
YAML
31 lines
818 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: ${{ secrets.SuperSecret }}
|
|
# with:
|
|
# COMMIT_MSG: 'Added recent activity on GitHub'
|
|
# MAX_LINES: 10
|
|
|
|
jobs:
|
|
update-readme-with-anilist:
|
|
name: Update this repo's README with latest AniList activites
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: AniList readme workflow
|
|
uses: pxseu/anilist-readme@v1.4.2
|
|
with:
|
|
user_id: YOUR_USER_ID |