24 lines
526 B
YAML
24 lines
526 B
YAML
name: Update awesome list
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
watch:
|
|
types: [started]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Awesome generator
|
|
uses: simonecorsi/mawesome@v2
|
|
with:
|
|
api-token: ${{ secrets.PERSONAL_TOKEN }}
|
|
github-email: ${{ secrets.USER_EMAIL }}
|
|
template-path: "template/README.ejs"
|
|
github-name: ${{ github.repository_owner }} |