[data grid] Pasting Value in the TextInput change the Background Error #665
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
name: New issue triage | |
on: | |
issues: | |
types: | |
- opened | |
permissions: {} | |
jobs: | |
issue_cleanup: | |
name: Clean issue body | |
uses: mui/mui-public/.github/workflows/issues_body-cleanup.yml@master | |
permissions: | |
contents: read | |
issues: write | |
order_id_validation: | |
name: Validate order ID | |
needs: issue_cleanup | |
if: needs.issue_cleanup.outputs.orderId != '' | |
uses: mui/mui-public/.github/workflows/issues_order-id-validation.yml@master | |
secrets: inherit | |
with: | |
orderId: ${{ needs.issue_cleanup.outputs.orderId }} | |
permissions: | |
contents: read | |
issues: write |