feat(DEV-13634): replace mui functional customization #3801
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
# This is a GitHub Action that ensures that your pull request titles match the Conventional Commits spec. | |
# Refer to the `amannn/action-semantic-pull-request` documentation for more information: https://github.com/amannn/action-semantic-pull-request | |
name: Contribution Guidelines Check | |
on: | |
# The event `pull_request_target` is safe because the workflow does not use `action/checkout`, | |
# and does not run untrusted code. | |
# See: https://securitylab.github.com/research/github-actions-preventing-pwn-requests/ | |
pull_request_target: | |
branches: | |
- "**" | |
types: | |
- opened | |
- reopened | |
- edited | |
- synchronize | |
- labeled | |
- unlabeled | |
concurrency: | |
group: "${{ github.workflow }}-${{ github.event.pull_request.number }}" | |
# Cancel in-progress runs when a new workflow with the same group name is triggered | |
cancel-in-progress: true | |
jobs: | |
validate-pr-title: | |
name: Validate PR Title | |
runs-on: ubuntu-latest | |
steps: | |
- uses: amannn/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
# These are regex patterns auto-wrapped in `^ $`. | |
scopes: | | |
devops | |
proposal | |
DEV-\d+ | |
requireScope: true | |
ignoreLabels: | | |
bot |