mirror of
https://github.com/LouisShark/chatgpt_system_prompt.git
synced 2025-07-19 04:44:50 -04:00
19 lines
388 B
YAML
19 lines
388 B
YAML
name: Generate TOC on PR Merge
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
run-script:
|
|
runs-on: ubuntu-latest
|
|
if: github.event.pull_request.merged == true
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Run TOC generation script
|
|
run: |
|
|
chmod +x generate_toc_for_readme.sh
|
|
./generate_toc_for_readme.sh
|