From d54c83ead5816ba295403d197e1f55f6bb67a2a3 Mon Sep 17 00:00:00 2001 From: Deirdre Connolly Date: Fri, 5 Jun 2020 19:21:20 -0400 Subject: [PATCH] Add assign to project workflow (#438) --- .github/workflows/assign-to-project.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/assign-to-project.yml diff --git a/.github/workflows/assign-to-project.yml b/.github/workflows/assign-to-project.yml new file mode 100644 index 000000000..cfb413651 --- /dev/null +++ b/.github/workflows/assign-to-project.yml @@ -0,0 +1,19 @@ +# This is a basic workflow to help you get started with Actions + +name: Assign to 🦓 Project + +on: + issues: + types: [opened] + pull_request: + types: [opened] + +jobs: + automate-project-columns: + runs-on: ubuntu-latest + steps: + - uses: alex-page/github-project-automation-plus@v0.2.4 + with: + project: 🦓 + column: To Do + repo-token: ${{ secrets.GITHUB_TOKEN }}