Merge pull request #460 from N4S4/dependabot/npm_and_yarn/documentati… #181
This file contains hidden or 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: Auto Generate Docs | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| generate: | |
| # temporary disabled | |
| if: false | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.13' | |
| - run: pip install -r requirements.txt | |
| - name: Get all changed api files | |
| id: changed-api-files | |
| uses: tj-actions/changed-files@v46 | |
| with: | |
| # Avoid using single or double quotes for multiline patterns | |
| files: | | |
| synology_api/**.py | |
| - name: List all changed files markdown files | |
| if: steps.changed-api-files.outputs.any_changed == 'true' | |
| env: | |
| ALL_CHANGED_FILES: ${{ steps.changed-api-files.outputs.all_changed_files }} | |
| run: | | |
| for file in ${ALL_CHANGED_FILES}; do | |
| echo "$file was changed" | |
| python3 -m scripts.docs_parser -f "$(basename "$file")" | |
| done | |
| - name: Commit & Push changes | |
| uses: actions-js/push@master | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| message: 'chore: autogenerate docs' | |
| branch: "${{ github.head_ref }}" |