[Data Importer] Highlight the expanded mapping and align its destination column #124
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 Policy | |
| # Thin caller — the policy logic lives in | |
| # pimcore/workflows-collection-public/.github/workflows/reusable-pr-policy.yml | |
| # and changes there apply automatically. Make the "PR Policy / Milestone assigned" | |
| # check required (repo ruleset / branch protection) so it actually blocks merging. | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| - ready_for_review | |
| - milestoned | |
| - demilestoned | |
| - labeled | |
| - unlabeled | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: pr-policy-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| pr-policy: | |
| name: PR Policy | |
| uses: pimcore/workflows-collection-public/.github/workflows/reusable-pr-policy.yml@main |