[Backport 7.61.x] [incident-33304] Mark dogstatsd
e2e tests as flaky
#8472
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: "PR complexity label" | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
branches: | |
- main | |
- "[0-9]+.[0-9]+.x" | |
pull_request_review_comment: | |
types: [created, deleted] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
permissions: {} | |
jobs: | |
codereview-complexity: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 | |
with: | |
persist-credentials: false | |
- name: Setup python | |
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 | |
with: | |
python-version: 3.12 | |
cache: 'pip' | |
cache-dependency-path: '**/requirements*.txt' | |
- name: Install dependencies | |
run: pip install -r requirements.txt -r tasks/requirements.txt | |
- name: Check code review complexity | |
env: | |
PR_NUMBER: ${{ github.event.pull_request.number }} | |
run: inv -e github.assign-codereview-label --pr-id="$PR_NUMBER" |