diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000..b3b4d5b4 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @tsurdilo @manuelstein @falko @duglin \ No newline at end of file diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 00000000..2dcb1024 --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,7 @@ +spec: spec.md +example: examples*.md +usecases: usecases.md +roadmap: roadmap.md +community: community/* +governance: governance/* +schema: schema/* \ No newline at end of file diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml new file mode 100644 index 00000000..4700f3a0 --- /dev/null +++ b/.github/workflows/labeler.yml @@ -0,0 +1,19 @@ +# This workflow will triage pull requests and apply a label based on the +# paths that are modified in the pull request. +# +# To use this workflow, you will need to set up a .github/labeler.yml +# file with configuration. For more information, see: +# https://github.com/actions/labeler/blob/master/README.md + +name: Labeler +on: [pull_request] + +jobs: + label: + + runs-on: ubuntu-latest + + steps: + - uses: actions/labeler@v2 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}"