From 0b0347429933bdda85a1c862ffa3a3944cc17317 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bilge=20Y=C3=BCcel?= Date: Wed, 31 Jan 2024 13:28:26 +0300 Subject: [PATCH] Create CI_project.yml (#157) * Create CI_project_yml * Rename CI_project_yml to CI_project.yml * Create CODEOWNERS --- .github/CODEOWNERS | 7 +++++++ .github/workflows/CI_project.yml | 16 ++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 .github/CODEOWNERS create mode 100644 .github/workflows/CI_project.yml diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000..21e74087 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,7 @@ +# See https://help.github.com/articles/about-codeowners/ for syntax + +# DevRel Team will be the default owner for everything +# in the repo. Unless a later match takes precedence, +# @deepset-ai/devrel will be requested for review +# when someone opens a pull request. +* @deepset-ai/devrel diff --git a/.github/workflows/CI_project.yml b/.github/workflows/CI_project.yml new file mode 100644 index 00000000..792937be --- /dev/null +++ b/.github/workflows/CI_project.yml @@ -0,0 +1,16 @@ +name: Open Source / Add issues to Github project + +on: + issues: + types: + - opened + +jobs: + add-to-project: + name: Add new issues to the project for triage + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v0.5.0 + with: + project-url: https://github.com/orgs/deepset-ai/projects/5 + github-token: ${{ secrets.GH_PROJECT_PAT }}