feat(i18n): translate onboarding to German (CAT-2326) #2227
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: PR Title Check | |
| on: | |
| pull_request: | |
| types: [opened, edited, reopened] | |
| permissions: | |
| pull-requests: write | |
| jobs: | |
| validate: | |
| name: Validate PR title | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6.1.1 | |
| id: lint_pr_title | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| types: | | |
| feat | |
| fix | |
| refactor | |
| docs | |
| test | |
| perf | |
| style | |
| build | |
| ci | |
| chore | |
| requireScope: false | |
| - if: always() && steps.lint_pr_title.outputs.error_message != null | |
| uses: marocchino/sticky-pull-request-comment@70d2764d1a7d5d9560b100cbea0077fc8f633987 # v3.0.2 | |
| with: | |
| header: pr-title-check | |
| message: | | |
| ## PR Title Check Failed | |
| Your PR title must follow the format: `<type>[optional scope]: <description>` | |
| **Examples:** | |
| - `feat(ingestion): add Snowflake v2 source` | |
| - `fix: resolve crash on empty dashboard` | |
| See the [Contributing Guide](https://github.com/datahub-project/datahub/blob/master/docs/CONTRIBUTING.md#pr-title-format) for allowed types and format details. | |
| - if: always() && steps.lint_pr_title.outputs.error_message == null | |
| uses: marocchino/sticky-pull-request-comment@70d2764d1a7d5d9560b100cbea0077fc8f633987 # v3.0.2 | |
| with: | |
| header: pr-title-check | |
| delete: true |