Update and bump to 0.6.6 #38
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 Auto Generator' | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'readme.txt' | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
name: Generate Readme | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Install composer | |
uses: php-actions/composer@v6 | |
env: | |
COMPOSER_PROCESS_TIMEOUT: 2000 | |
with: | |
php_version: 7.4 | |
- name: Execute the markdown Readme generation script | |
run: dev/generate-markdown-readme | |
- name: Commit readme file | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Apply readme.md Changes | |
branch: main | |
file_pattern: readme.md | |
- name: Commit readme.php file | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Apply data/readme.php Changes | |
branch: main | |
file_pattern: src/data/readme.php |