diff --git a/.github/workflows/pr-18.yaml b/.github/workflows/pr-18.yaml new file mode 100644 index 0000000000000..376bf29454f0a --- /dev/null +++ b/.github/workflows/pr-18.yaml @@ -0,0 +1,20 @@ +on: + pull_request: + types: + - opened + branches: + - "18.0" + +jobs: + run: + runs-on: ubuntu-22.04 + permissions: + pull-requests: write + steps: + - name: Create PR review request + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + url: ${{ github.event.pull_request.html_url }} + run: | + gh pr edit "$url" --add-assignee lvessiller-opendsi,rycks --add-reviewer lvessiller-opendsi,rycks + gh pr merge "$url" --merge --auto