Merge pull request #586 from docker/labeler

Auto-label PRs
This commit is contained in:
Nicolas De loof 2020-09-07 10:30:53 +02:00 committed by GitHub
commit 9545625131
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 34 additions and 0 deletions

24
.github/labeler.yml vendored Normal file
View File

@ -0,0 +1,24 @@
aci:
- aci/**/*
ecs:
- ecs/**/*
cli:
- cli/**/*
api:
- containers/**/*
- compose/**/*
- secrets/**/*
- server/**/*
- protos/**/*
ci:
- .github/**/*
documentation:
- docs/**/*
metrics:
- metrics/**/*

10
.github/workflows/labeler.yml vendored Normal file
View File

@ -0,0 +1,10 @@
name: "Pull Request Labeler"
on: [pull_request]
jobs:
triage:
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v2
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"