Update awesome list #472
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 awesome list | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
schedule: | |
# 每个月 1 号 9:30 运行一次 | |
- cron: '30 9 1 * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: My Awesome list | |
uses: simonecorsi/mawesome@v2 | |
with: | |
template-path: "template/README.ejs" | |
api-token: ${{ secrets.ACCESS_TOKEN }} | |
github-email: ${{ secrets.USER_EMAIL }} | |
github-name: ${{ github.repository_owner }} | |