diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 000000000..6bfff8290 --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,4 @@ +team/graph: + - '/.*/' +graph/scip-python: + - '/.*/' diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml new file mode 100644 index 000000000..c2f027b1b --- /dev/null +++ b/.github/workflows/labeler.yml @@ -0,0 +1,18 @@ +name: "Issue Labeler" +on: + issues: + types: [opened, edited] + +permissions: + issues: write + contents: read + +jobs: + triage: + runs-on: ubuntu-latest + steps: + - uses: github/issue-labeler@v3.4 + with: + configuration-path: .github/labeler.yml + enable-versioned-regex: 0 + repo-token: ${{ github.token }}