diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 00000000..6b98b489 --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,11 @@ +server: server/**/* +corelib: corelib/**/* +cli: cli/**/* +docs: ./*.md +build: + - ./*/*.toml + - ./*.toml + - ./*.lock +workflow: + - ./.github/*.yml + - ./.github/**/*.yml \ No newline at end of file diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml new file mode 100644 index 00000000..71ea930a --- /dev/null +++ b/.github/workflows/label.yml @@ -0,0 +1,17 @@ +# 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 + +name: Labeler +on: [pull_request] + +jobs: + triage: + runs-on: ubuntu-latest + steps: + - uses: actions/labeler@v2 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}" diff --git a/cli/Cargo.lock b/cli/Cargo.lock deleted file mode 100644 index a071ab96..00000000 --- a/cli/Cargo.lock +++ /dev/null @@ -1,5 +0,0 @@ -# This file is automatically @generated by Cargo. -# It is not intended for manual editing. -[[package]] -name = "terrabase" -version = "0.1.0"