[acl][PR:26968] Fix remove_dataacl_table teardown to check golden_config_db.json with override_config set to true #13884
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: "Auto Assign Reviewers" | |
| on: | |
| pull_request_target: | |
| branches: | |
| - 'master' | |
| - 'main' | |
| - '202[0-9][0-9][0-9]' | |
| permissions: | |
| pull-requests: write | |
| jobs: | |
| assign_reviewer: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.x' | |
| - name: Install dependencies | |
| run: python -m pip install --upgrade pip pyaml PyGithub | |
| - name: Assign reviewers | |
| run: python .github/.code-reviewers/auto-assign.py | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| PR_NUMBER: ${{ github.event.pull_request.number }} | |
| REVIEWER_INDEX: .github/.code-reviewers/pr_reviewer-by-files.yml | |
| NEEDED_REVIEWER_COUNT: 3 | |
| INCLUDE_CONTRIBUTORS_TIES: True | |
| - name: Cleanup the checked out repo | |
| run: git clean -fdx | |