From d032d937f3cc4e8a94bc5b54c9e5f3ddec20262d Mon Sep 17 00:00:00 2001 From: Curtis J Bezault Date: Fri, 15 May 2020 15:15:28 -0700 Subject: [PATCH] Create new-pr-triage.yml --- .github/workflows/new-pr-triage.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/new-pr-triage.yml diff --git a/.github/workflows/new-pr-triage.yml b/.github/workflows/new-pr-triage.yml new file mode 100644 index 00000000000..700b476c58e --- /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 }}