From 723c929f4dd58a27406915ead2c43e92d8470391 Mon Sep 17 00:00:00 2001 From: Hugo Date: Sat, 14 Sep 2019 12:15:20 +0300 Subject: [PATCH] Action to add issue or PR to project --- .github/workflows/issue-or-pr-opened.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/issue-or-pr-opened.yml diff --git a/.github/workflows/issue-or-pr-opened.yml b/.github/workflows/issue-or-pr-opened.yml new file mode 100644 index 000000000..d0b8dad78 --- /dev/null +++ b/.github/workflows/issue-or-pr-opened.yml @@ -0,0 +1,15 @@ +name: Issue or PR opened +on: [issues, pull_request] + +jobs: + assign: + name: Add issue/PR to project + runs-on: ubuntu-latest + steps: + - name: Add issue/PR to project + if: github.event.action == 'opened' + uses: alex-page/github-project-automation-plus@v0.0.3 + with: + project: Pillow + column: New Issues + repo-token: ${{ secrets.GITHUB_TOKEN }}