feat(i18n): extract text from admin-form modals #14661
This file contains 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
# Workflow to ensure PR title matches the Conventional Commits spec | |
# https://www.conventionalcommits.org/en/v1.0.0/ | |
name: 'Lint PR' | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- edited | |
- synchronize | |
jobs: | |
semantic: | |
name: Validate PR title | |
runs-on: ubuntu-latest | |
steps: | |
- uses: amannn/action-semantic-pull-request@v4 | |
with: | |
types: | | |
feat | |
fix | |
hotfix | |
docs | |
style | |
refactor | |
ref | |
perf | |
test | |
build | |
ci | |
chore | |
revert | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |