fbb619b01a
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.0.0 to 4.1.1. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v4.1.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
31 lines
774 B
YAML
31 lines
774 B
YAML
name: Readme Generator
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
generate-readme-file:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4.1.1
|
|
|
|
- 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@v5
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
commit-message: |
|
|
docs: regenerate readme app list
|
|
committer: GitHub <noreply@github.com>
|
|
author: GitHub <noreply@github.com>
|
|
branch: bot/readme-update
|
|
title: |
|
|
readme-generator: update readme
|
|
labels: bot
|