From ff45eabf04f781aec776beea680c69c7aa12b8cc Mon Sep 17 00:00:00 2001 From: Dominik Biedebach Date: Fri, 24 Jun 2022 13:29:36 +0200 Subject: [PATCH] chore: add action to auto add prs to project board --- .github/workflows/prs.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/prs.yml diff --git a/.github/workflows/prs.yml b/.github/workflows/prs.yml new file mode 100644 index 00000000..48feb395 --- /dev/null +++ b/.github/workflows/prs.yml @@ -0,0 +1,16 @@ +name: Add pull requests to Tiptap project + +on: + pull_request: + types: + - opened + +jobs: + add-to-project: + name: Add pull request to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@main + with: + project-url: ${{ secrets.ADD_TO_PROJECT_PR_URL }} + github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}