From 7628aa39073b78efb64f6af30a3acc05fc1380c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=F0=9F=92=BB=20Eher?= Date: Sun, 18 Jun 2023 14:27:53 +0200 Subject: [PATCH] ci: add new PRs and Issues to Github Project MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 💻 Eher --- .github/workflows/project.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/project.yml diff --git a/.github/workflows/project.yml b/.github/workflows/project.yml new file mode 100644 index 0000000..a8d0345 --- /dev/null +++ b/.github/workflows/project.yml @@ -0,0 +1,23 @@ +name: Project + +on: + issues: + types: + - opened + + pull_request: + types: + - opened + +jobs: + build: + name: Add to project + runs-on: ubuntu-latest + + steps: + - name: Add To GitHub projects + uses: actions/add-to-project@v0.5.0 + with: + project-url: https://github.com/orgs/codelicia/projects/4 + github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} +