From 5e6aeb55735d1c09ac29fc6fce10fe2b9c190897 Mon Sep 17 00:00:00 2001 From: Marcus Baw Date: Wed, 18 Oct 2023 13:09:18 +0100 Subject: [PATCH] adds auto-add-to-issues workflow --- .../workflows/auto-add-issues-to-project.yml | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/auto-add-issues-to-project.yml diff --git a/.github/workflows/auto-add-issues-to-project.yml b/.github/workflows/auto-add-issues-to-project.yml new file mode 100644 index 0000000..cda6780 --- /dev/null +++ b/.github/workflows/auto-add-issues-to-project.yml @@ -0,0 +1,20 @@ +name: Adds new Issues automatically to the dGC Project + +on: + issues: + types: + - opened + pull_request: + types: + - opened + +jobs: + add-to-project: + name: Add issue or PR to project automatically + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v0.4.0 + with: + project-url: https://github.com/orgs/rcpch/projects/5 #dGC Project + github-token: ${{ secrets.AUTO_ADD_TO_PROJECT_TOKEN }} +