refactor(ims): refactor ims_evs_data_image resource code style
#33153
Workflow file for this run
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: Pull Request Labeler | |
| on: | |
| # Triggers the workflow on pull request context | |
| pull_request_target: | |
| types: [ opened, edited, reopened, synchronize ] | |
| paths-ignore: | |
| - 'vendor/**' | |
| # Triggers the workflow on issue or pull request comment | |
| #pull_request_review_comment: | |
| issue_comment: | |
| jobs: | |
| labeler: | |
| name: Labeler | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: fuxingloh/multi-labeler@v1.5.1 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| config-path: .github/labeler.yml | |
| - uses: codelytv/pr-size-labeler@v1 | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| xs_label: 'size/XS' | |
| xs_max_size: '30' | |
| s_label: 'size/S' | |
| s_max_size: '100' | |
| m_label: 'size/M' | |
| m_max_size: '300' | |
| l_label: 'size/L' | |
| l_max_size: '1000' | |
| xl_label: 'size/XL' | |
| fail_if_xl: 'false' |