mirror of
https://github.com/Mibew/simple-icons.git
synced 2025-04-13 16:19:33 +03:00
* 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
12 lines
199 B
YAML
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 }}"
|