From ec6cafcab2be71d979a70782038884a31aae1793 Mon Sep 17 00:00:00 2001 From: Joseph Chatelain Date: Sat, 16 Dec 2023 10:32:44 -0800 Subject: [PATCH] add review workflow --- .github/workflows/github_review.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/github_review.yml diff --git a/.github/workflows/github_review.yml b/.github/workflows/github_review.yml new file mode 100644 index 000000000..ba4048159 --- /dev/null +++ b/.github/workflows/github_review.yml @@ -0,0 +1,15 @@ +name: Move pull request into "Needs Review" column + +on: + pull_request: + types: [review_requested] + +jobs: + automate-project-columns: + runs-on: ubuntu-latest + steps: + - uses: alex-page/github-project-automation-plus@v0.8.3 + with: + project: TOM Toolkit + column: Needs Review + repo-token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file