diff --git a/.github/workflows/new-pr-triage.yml b/.github/workflows/new-pr-triage.yml new file mode 100644 index 00000000000..af83709ce01 --- /dev/null +++ b/.github/workflows/new-pr-triage.yml @@ -0,0 +1,18 @@ +# Copyright (c) Microsoft Corporation. +# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception + +name: Move new PRs to the New column in the Code Reviews Project + +on: + pull_request: + types: [opened, reopened] + +jobs: + automate-project-columns: + runs-on: ubuntu-latest + steps: + - uses: alex-page/github-project-automation-plus@v0.2.3 + with: + project: "Code Reviews" + column: New + repo-token: ${{ secrets.GH_TOKEN }}