Feature 20251012 #29
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: 📄 Documentation | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "docs/README.template.MD" | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - "docs/README.template.MD" | |
| workflow_dispatch: | |
| inputs: | |
| force-update: | |
| description: "Force README update even without changes" | |
| type: boolean | |
| default: false | |
| workflow_call: | |
| inputs: | |
| tag-name: | |
| description: "Tag name that triggered the documentation update" | |
| type: string | |
| required: false | |
| default: "" | |
| force-update: | |
| description: "Force README update even without changes" | |
| type: boolean | |
| required: false | |
| default: false | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| generate-docs: | |
| name: Generate Documentation | |
| uses: bauer-group/automation-templates/.github/workflows/documentation.yml@main | |
| with: | |
| tag-name: ${{ inputs.tag-name || github.ref_name }} | |
| force-update: ${{ inputs.force-update || false }} | |
| secrets: inherit |