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
304 B
YAML
12 lines
304 B
YAML
# Configuration file for the Pull Request Labeler bot
|
|
|
|
# Add `new icon` label when there is an SVG added to the icons/ directory
|
|
"new icon":
|
|
- on: added
|
|
- icons/*.svg
|
|
|
|
# Add `icon outdated` label when there is an SVG modified to the icons/ directory
|
|
"icon outdated":
|
|
- on: modified
|
|
- icons/*.svg
|