Add ODF E2E job to RC nightly schedule #968
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: Labeler | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize, reopened] | |
| # Only one labeler run per PR | |
| concurrency: | |
| group: labeler-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| label: | |
| name: 🏷️ Label PR | |
| runs-on: [self-hosted, pr-validation] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| # Never fail or block PRs | |
| continue-on-error: true | |
| steps: | |
| # Area labels based on file paths | |
| - name: Area labels | |
| uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5.0.2 | |
| continue-on-error: true | |
| with: | |
| repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
| configuration-path: .github/labeler.yml | |
| sync-labels: true | |
| # Size labels based on lines changed | |
| - name: Size labels | |
| uses: codelytv/pr-size-labeler@4ec67706cd878fbc1c8db0a5dcd28b6bb412e85a # v1.10.3 | |
| continue-on-error: true | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| xs_label: 'size/XS' | |
| xs_max_size: '9' | |
| s_label: 'size/S' | |
| s_max_size: '99' | |
| m_label: 'size/M' | |
| m_max_size: '499' | |
| l_label: 'size/L' | |
| l_max_size: '999' | |
| xl_label: 'size/XL' | |
| fail_if_xl: 'false' |