Add Progressive failover mode to the failover connector #36433
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' | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- ready_for_review | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
add-owner: | |
permissions: | |
pull-requests: write # required for assigning reviewers to PRs | |
runs-on: ubuntu-24.04 | |
if: ${{ github.actor != 'dependabot[bot]' && github.event.pull_request.draft == false }} | |
steps: | |
- name: run | |
uses: kentaro-m/auto-assign-action@f4648c0a9fdb753479e9e75fc251f507ce17bb7e # v2.0.0 | |
with: | |
configuration-path: ".github/auto_assign.yml" | |
repo-token: '${{ secrets.GITHUB_TOKEN }}' |