Auto-update documentation (release) #43
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-update documentation (release) | |
| on: | |
| schedule: | |
| - cron: "0 2 * * 1-5" # Every Monday through Friday at 2 AM UTC | |
| workflow_dispatch: | |
| inputs: | |
| target_branch: | |
| description: "Target branch for documentation update" | |
| required: false | |
| default: "release-x.57.x" | |
| type: string | |
| jobs: | |
| update-release-docs: | |
| name: Call documentation update for release branch | |
| uses: ./.github/workflows/docs-generate-base.yml | |
| with: | |
| target_branch: ${{ inputs.target_branch || 'release-x.57.x' }} | |
| secrets: | |
| automation_token: ${{ secrets.METABASE_AUTOMATION_USER_TOKEN }} |