simple-icons/.github/workflows/pull_requests.yml
Eric Cornelissen f357ac73f3 Use GitHub Actions to automatically label Pull Requests (#2420)
* Add workflow file to run PR labeler and corresponding configuration file

I'm using my personal fork of https://github.com/actions/labeler because 
I could not any labeling action that checked whether a file was added or 
changed (or removed).

* Fix typo in Labeler action configuration file
2020-01-22 00:53:26 +01:00

12 lines
199 B
YAML

name: Pull Requests
on: [pull_request]
jobs:
label:
runs-on: ubuntu-latest
steps:
- uses: ericcornelissen/labeler@master
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"