Manual docs update | master -> master #7
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: Update docs - manual | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| source_branch: | |
| description: 'Source branch to pull docs from' | |
| required: true | |
| type: string | |
| default: 'master' | |
| target_branch: | |
| description: 'Target branch to update' | |
| required: true | |
| type: string | |
| default: 'master' | |
| annotation: | |
| description: 'Annotation for the update' | |
| required: true | |
| type: choice | |
| options: | |
| - manual | |
| - hotfix | |
| - release | |
| default: 'manual' | |
| run-name: Manual docs update | ${{ inputs.source_branch }} -> ${{ inputs.target_branch }} | |
| jobs: | |
| update-docs: | |
| uses: ./.github/workflows/update-docs-base.yml | |
| with: | |
| source_branch: ${{ inputs.source_branch }} | |
| target_branch: ${{ inputs.target_branch }} | |
| annotation: ${{ inputs.annotation }} | |
| run_name: "Manual docs build" | |
| secrets: | |
| METABASE_AUTOMATION_USER_TOKEN: ${{ secrets.METABASE_AUTOMATION_USER_TOKEN }} |