From 7e6ce3141aaab6a4b649cad07f94a143eeb48952 Mon Sep 17 00:00:00 2001 From: Marcus Fihlon Date: Sat, 29 Jun 2024 14:11:18 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20add=20all=20issues=20to=20a=20pe?= =?UTF-8?q?rsonal=20project=20board?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/add-to-project.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/add-to-project.yml diff --git a/.github/workflows/add-to-project.yml b/.github/workflows/add-to-project.yml new file mode 100644 index 0000000..ccfaae7 --- /dev/null +++ b/.github/workflows/add-to-project.yml @@ -0,0 +1,20 @@ +name: Adds all issues to project board + +on: + issues: + types: + - opened + pull_request: + types: + - opened + +jobs: + add-to-project: + if: github.repository_owner == 'McPringle' + name: Add issue to project board + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v1.0.2 + with: + project-url: https://github.com/users/McPringle/projects/1 + github-token: ${{ secrets.ADD_TO_PROJECT_TOKEN }}