diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..21e7408 --- /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/project.yml b/.github/workflows/project.yml new file mode 100644 index 0000000..45a8ca5 --- /dev/null +++ b/.github/workflows/project.yml @@ -0,0 +1,16 @@ +name: Track issues with Github project + +on: + issues: + types: + - opened + +jobs: + add-to-project: + name: Add new issues to project for triage + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v1.0.2 + with: + project-url: https://github.com/orgs/deepset-ai/projects/5 + github-token: ${{ secrets.GH_PROJECT_PAT }}