feat: enhance issue templates for profile management and localization #80
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: 🚀 CI/CD Pipeline | |
| on: | |
| push: | |
| branches: [ master ] | |
| paths: | |
| - '**' | |
| pull_request: | |
| branches: [ master ] | |
| paths: | |
| - '**' | |
| workflow_dispatch: | |
| inputs: | |
| cache_version: | |
| description: 'Cache version (change this to bust Docker cache)' | |
| required: false | |
| default: '1' | |
| type: string | |
| force_rebuild: | |
| description: 'Force rebuild all images (ignore source hash cache)' | |
| required: false | |
| default: false | |
| type: boolean | |
| permissions: | |
| contents: read | |
| packages: write | |
| actions: write | |
| jobs: | |
| docker-build: | |
| uses: ./.github/workflows/docker-build-orchestrator.yml | |
| with: | |
| cache_version: ${{ inputs.cache_version || '1' }} | |
| force_rebuild: ${{ inputs.force_rebuild || false }} |