Skip to content

Update README

Update README #1062

name: Update README
# Controls when the workflow will run
on:
schedule:
- cron: "0 0 * * *"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
name: Update README with recent Github activity
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v2.3.4
- uses: Readme-Workflows/recent-activity@v2.3.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}