diff options
| author | stonedDiscord <stoned@derpymail.org> | 2020-04-17 18:08:08 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-17 18:08:08 +0200 |
| commit | ec0da245a5820e901dfdf714400edbe56642214c (patch) | |
| tree | da31fa093111af98a57b81c35cb3b83de174f0b9 /.github/workflows | |
| parent | 901012eb2872ad5d4af23b82cc6dc0d1da587b20 (diff) | |
Create label.yml
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/label.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml new file mode 100644 index 00000000..e90b599b --- /dev/null +++ b/.github/workflows/label.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 }}" |
