Readme Generator #14
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: Readme Generator | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * 1' | |
jobs: | |
generate-readme-file: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Install Bun | |
uses: oven-sh/setup-bun@v1 | |
- name: Generate new README.md file | |
run: bun .github/scripts/readme-generator.ts | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: | | |
docs: regenerate readme app list | |
committer: GitHub <[email protected]> | |
author: GitHub <[email protected]> | |
branch: bot/readme-update | |
title: | | |
readme-generator: update readme | |
labels: bot |