diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 0000000000..ecfff661db --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,3 @@ +# Add 'untriaged' label to any issue that gets opened +untriaged: +- '/.*/' diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml new file mode 100644 index 0000000000..4198a6044f --- /dev/null +++ b/.github/workflows/labeler.yml @@ -0,0 +1,18 @@ +name: "Issue Labeler" +on: + issues: + types: [opened] + +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 }}