[worker] add pessimistic lock task acquisition #1508
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
# Workflow to triage pull requests, validate title and assign labels | |
name: UI conventions | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- reopened | |
- edited | |
- synchronize | |
jobs: | |
pr-title: | |
name: Validate PR title | |
permissions: | |
pull-requests: read | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- id: filter | |
name: Filter | |
uses: dorny/paths-filter@v2 | |
with: | |
filters: | | |
ui: | |
- thirdeye-ui/** | |
- name: Validate title | |
if: steps.filter.outputs.ui == 'true' | |
uses: amannn/[email protected] | |
with: | |
types: | | |
major | |
feat | |
fix | |
wip | |
test | |
refactor | |
chore | |
scopes: | | |
ui | |
requireScope: true | |
subjectPattern: ^(([A-Z]+\-[0-9]+( {1}))+|\[auto\] )(?![A-Z, ]).+[^.…]$ | |
subjectPatternError: | | |
Please make sure the subject "{subject}" in pull request title follows pull request naming standards (see UI contributing guidelines). | |
validateSingleCommit: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
pr-labels: | |
name: Assign PR labels | |
permissions: | |
contents: read | |
pull-requests: write | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Assign labels | |
uses: actions/labeler@v4 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
configuration-path: .github/pr-labels.yaml | |
sync-labels: true |